:root {
  --bg: #F0E9DC;
  --bg-alt: #E6DCC9;
  --bg-deep: #1F1A14;
  --fg: #1F1A14;
  --fg-soft: #3A332A;
  --muted: #8A7F70;
  --accent: #B0492C;
  --accent-deep: #823420;
  --line: rgba(31, 26, 20, 0.14);
  --line-soft: rgba(31, 26, 20, 0.08);
  --serif: 'Cormorant Garamond', ui-serif, Georgia, serif;
  --sans: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1240px;
}

*, *::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.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
}
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; }

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

.section {
  padding: clamp(96px, 14vw, 180px) 0;
  position: relative;
}
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: var(--bg-deep);
  color: var(--bg);
}
.section--dark .eyebrow { color: rgba(240, 233, 220, 0.55); }
.section--tight { padding: clamp(64px, 9vw, 120px) 0; }

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  margin: 0;
  color: inherit;
}
h1 {
  font-size: clamp(3.5rem, 10vw, 9rem);
  letter-spacing: -0.03em;
  line-height: 0.96;
}
h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.022em;
  line-height: 1.02;
}
h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
  font-weight: 400;
}
h4 {
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--sans);
  letter-spacing: -0.005em;
}
em {
  font-style: italic;
  color: var(--accent);
}
p { margin: 0 0 1.2em; }
.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.72;
  color: var(--fg-soft);
  max-width: 56ch;
}
hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ───────── Header ───────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(240, 233, 220, 0.78);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--line-soft);
  box-shadow: 0 10px 30px -22px rgba(31, 26, 20, 0.25);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1;
}
.brand__mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  transform: translateY(-2px);
}
.brand__sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 4px;
}
.nav { display: none; }
@media (min-width: 960px) {
  .nav {
    display: flex;
    gap: 36px;
    align-items: center;
  }
  .nav a {
    font-size: 14px;
    color: var(--fg-soft);
    position: relative;
    transition: color .25s var(--ease);
  }
  .nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -6px;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
  }
  .nav a:hover { color: var(--fg); }
  .nav a:hover::after,
  .nav a[aria-current="page"]::after { transform: scaleX(1); }
}
.header__cta {
  display: none;
}
@media (min-width: 960px) {
  .header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 999px;
    background: var(--fg);
    color: var(--bg);
    font-size: 13px;
    letter-spacing: 0.01em;
    transition: background .25s var(--ease), transform .25s var(--ease);
  }
  .header__cta:hover {
    background: var(--accent);
    transform: translateY(-1px);
  }
}

/* Mobile menu toggle */
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-right: -10px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--fg);
  transition: transform .3s var(--ease), opacity .25s 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: 960px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--bg);
  z-index: 90;
  padding: 48px 24px 64px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  overflow-y: auto;
}
.mobile-menu[data-open="true"] {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .meta {
  margin-top: 48px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 960px) { .mobile-menu { display: none; } }

/* ───────── Hero ───────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 9s var(--ease) both;
  filter: saturate(0.92) contrast(1.02);
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(240,233,220,0.55) 0%, rgba(240,233,220,0.18) 32%, rgba(240,233,220,0.08) 60%, rgba(31,26,20,0.55) 100%);
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero__content {
  width: 100%;
  padding: 140px 0 64px;
  color: var(--bg);
  position: relative;
}
.hero__eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  margin-bottom: 56px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 233, 220, 0.7);
}
.hero__eyebrow-row span { display: inline-flex; align-items: center; gap: 10px; }
.hero__eyebrow-row span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero__title {
  max-width: 14ch;
  margin: 0 0 0;
  color: var(--bg);
}
.hero__title em { color: var(--accent); }
.hero__footer {
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid rgba(240, 233, 220, 0.18);
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .hero__footer {
    grid-template-columns: 1.2fr 1fr auto;
    align-items: end;
  }
}
.hero__lede {
  max-width: 46ch;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(240, 233, 220, 0.82);
  margin: 0;
}
.hero__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 233, 220, 0.65);
  display: grid;
  gap: 6px;
}
.hero__meta strong {
  font-weight: 500;
  color: var(--bg);
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn--solid {
  background: var(--accent);
  color: var(--bg);
}
.btn--solid:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(240, 233, 220, 0.35);
}
.btn--ghost:hover {
  background: rgba(240, 233, 220, 0.08);
  border-color: rgba(240, 233, 220, 0.6);
}
.btn--dark {
  background: var(--fg);
  color: var(--bg);
}
.btn--dark:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  color: var(--fg);
  transition: color .25s var(--ease), gap .25s var(--ease);
}
.text-link:hover {
  color: var(--accent);
  gap: 14px;
}

/* ───────── Section header ───────── */
.section-head {
  display: grid;
  gap: 28px;
  margin-bottom: clamp(56px, 8vw, 96px);
  align-items: end;
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head__lede {
  max-width: 48ch;
  color: var(--fg-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ───────── Services grid ───────── */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 768px) { .services { grid-template-columns: 1fr 1fr; } }
.service {
  position: relative;
  padding: 48px 32px 56px;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  align-content: start;
  transition: background .4s var(--ease);
}
@media (min-width: 768px) {
  .service { padding: 60px 48px 72px; }
  .service:nth-child(odd) { border-right: 1px solid var(--line); }
}
.service:hover { background: rgba(176, 73, 44, 0.04); }
.service__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.service__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
}
.service h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  font-weight: 300;
  letter-spacing: -0.015em;
  max-width: 16ch;
}
.service p {
  color: var(--fg-soft);
  max-width: 42ch;
  margin: 0;
}
.service__list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--fg-soft);
}
.service__list li {
  padding-left: 18px;
  position: relative;
}
.service__list li::before {
  content: '';
  position: absolute;
  top: 11px; left: 0;
  width: 8px; height: 1px;
  background: var(--accent);
}

/* ───────── Manifesto ───────── */
.manifesto {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 12px;
}
.manifesto__quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 48px;
  color: var(--bg);
}
.manifesto__quote em { font-style: italic; color: var(--accent); }
.manifesto__quote::before {
  content: '“';
  display: block;
  font-size: 6rem;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: 36px;
  font-family: var(--serif);
}
.manifesto__attr {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 233, 220, 0.55);
}

/* ───────── Work showcase ───────── */
.work {
  display: grid;
  gap: clamp(80px, 12vw, 140px);
}
.work-item {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .work-item { grid-template-columns: 1.05fr 1fr; gap: 80px; }
  .work-item:nth-child(even) .work-item__media { order: 2; }
}
.work-item__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--bg-alt);
}
.work-item__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.work-item:hover .work-item__media img { transform: scale(1.04); }
.work-item__body { display: grid; gap: 18px; }
.work-item__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.work-item__meta span:not(:last-child)::after {
  content: '·';
  margin-left: 18px;
  color: var(--line);
}
.work-item h3 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.work-item p {
  color: var(--fg-soft);
  max-width: 48ch;
  margin: 0;
}
.work-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.work-item__tags span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-soft);
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* ───────── Process ───────── */
.process {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
@media (min-width: 900px) {
  .process { grid-template-columns: repeat(3, 1fr); }
}
.process__step {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  align-content: start;
}
@media (min-width: 900px) {
  .process__step {
    padding: 72px 36px;
    border-bottom: 0;
  }
  .process__step:not(:last-child) { border-right: 1px solid var(--line); }
  .process__step:first-child { padding-left: 0; }
  .process__step:last-child { padding-right: 0; }
}
.process__num {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
}
.process__step h3 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 300;
  letter-spacing: -0.015em;
}
.process__step p {
  color: var(--fg-soft);
  max-width: 42ch;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

/* ───────── Team ───────── */
.team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 700px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .team { grid-template-columns: repeat(3, 1fr); gap: 56px 36px; } }
.team__card { display: grid; gap: 20px; }
.team__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-alt);
}
.team__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.02);
  transition: transform 1.4s var(--ease), filter .6s var(--ease);
}
.team__card:hover .team__photo img { transform: scale(1.04); filter: grayscale(0); }
.team__name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.team__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.team__bio {
  font-size: 15px;
  color: var(--fg-soft);
  line-height: 1.7;
  margin: 0;
}

/* ───────── Stats strip ───────── */
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}
@media (min-width: 700px) { .stats { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.stat__value {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 1;
  color: var(--fg);
}
.stat__value sup { font-size: .55em; color: var(--accent); margin-left: 4px; vertical-align: top; }
.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

/* ───────── Logos strip ───────── */
.logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
  align-items: center;
  padding: 12px 0;
}
@media (min-width: 700px) { .logos { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .logos { grid-template-columns: repeat(6, 1fr); } }
.logos span {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

/* ───────── CTA / form ───────── */
.cta-section {
  background: var(--bg-deep);
  color: var(--bg);
}
.cta-section .eyebrow { color: rgba(240, 233, 220, 0.55); }
.cta-grid {
  display: grid;
  gap: clamp(48px, 7vw, 88px);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .cta-grid { grid-template-columns: 1fr 1.05fr; } }
.cta-section h2 { color: var(--bg); max-width: 14ch; }
.cta-section h2 em { color: var(--accent); }
.cta-section .lede { color: rgba(240, 233, 220, 0.7); max-width: 48ch; }
.cta-info {
  margin-top: 40px;
  display: grid;
  gap: 28px;
}
.cta-info__row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid rgba(240, 233, 220, 0.15);
}
.cta-info__row:last-child { border-bottom: 1px solid rgba(240, 233, 220, 0.15); }
.cta-info__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 233, 220, 0.55);
}
.cta-info__value {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--bg);
}
.cta-info__value a:hover { color: var(--accent); }

/* Form */
.form {
  display: grid;
  gap: 28px;
}
.form__row {
  display: grid;
  gap: 28px;
}
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field {
  display: grid;
  gap: 8px;
  position: relative;
}
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 233, 220, 0.55);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(240, 233, 220, 0.25);
  padding: 14px 0 12px;
  font-family: var(--sans);
  font-size: 1.05rem;
  color: var(--bg);
  outline: none;
  transition: border-color .25s var(--ease);
  border-radius: 0;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(240, 233, 220, 0.35); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--accent); }
.field textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(240,233,220,0.6) 50%),
    linear-gradient(135deg, rgba(240,233,220,0.6) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.field select option { color: var(--fg); background: var(--bg); }
.form__consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(240, 233, 220, 0.65);
}
.form__consent input {
  width: 16px; height: 16px;
  accent-color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}
.form__consent a { border-bottom: 1px solid rgba(240, 233, 220, 0.4); }
.form__consent a:hover { color: var(--bg); }
.form button[type="submit"] {
  background: var(--accent);
  color: var(--bg);
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background .3s var(--ease), transform .3s var(--ease);
  width: 100%;
}
@media (min-width: 600px) { .form button[type="submit"] { width: auto; justify-self: start; } }
.form button[type="submit"]:hover {
  background: var(--bg);
  color: var(--bg-deep);
  transform: translateY(-1px);
}

/* ───────── Footer ───────── */
.footer {
  background: var(--bg-deep);
  color: rgba(240, 233, 220, 0.7);
  padding: 80px 0 36px;
}
.footer .container {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .footer .container { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 64px; }
}
.footer__brand {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: -0.015em;
  color: var(--bg);
  margin: 0 0 18px;
  line-height: 1;
}
.footer__brand .brand__mark { transform: translateY(-4px); }
.footer__tag {
  max-width: 32ch;
  color: rgba(240, 233, 220, 0.65);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.footer__col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 233, 220, 0.5);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 15px;
}
.footer__col a:hover { color: var(--accent); }
.footer__col p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.footer__bar {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid rgba(240, 233, 220, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 233, 220, 0.45);
}
.footer__bar a:hover { color: var(--bg); }

/* ───────── Reveal ───────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__media img { animation: none; }
  * { transition: none !important; animation: none !important; }
}

/* ───────── Cookie popup ───────── */
.cookie-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  background: rgba(31, 26, 20, 0.42);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
@media (min-width: 700px) { .cookie-popup { align-items: center; } }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg);
  color: var(--fg);
  padding: 36px;
  max-width: 520px;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 30px 60px -10px rgba(0,0,0,0.35);
}
.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__card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.cookie-popup__card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--fg-soft);
  margin: 0 0 22px;
}
.cookie-popup__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.cookie-popup__actions button {
  padding: 13px 26px;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  background: transparent;
  color: var(--fg);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.cookie-popup__actions button:hover { background: rgba(31,26,20,0.05); }
.cookie-popup__actions button:last-child {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.cookie-popup__actions button:last-child:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ───────── Page hero (subpages) ───────── */
.page-hero {
  padding: clamp(140px, 18vw, 220px) 0 clamp(72px, 10vw, 140px);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: end;
}
@media (min-width: 900px) {
  .page-hero__grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.page-hero h1 {
  font-size: clamp(3rem, 8.5vw, 7rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0;
  max-width: 14ch;
}
.page-hero h1 em { color: var(--accent); }
.page-hero .lede {
  max-width: 48ch;
  color: var(--fg-soft);
  font-size: 1.1rem;
  line-height: 1.7;
}
.crumbs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.crumbs a:hover { color: var(--accent); }
.crumbs span { color: var(--line); }

/* ───────── Two-col content ───────── */
.two-col {
  display: grid;
  gap: clamp(32px, 5vw, 80px);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1.4fr; } }
.two-col h2 { max-width: 14ch; }
.two-col__body p {
  color: var(--fg-soft);
  font-size: 1.05rem;
  line-height: 1.78;
  max-width: 64ch;
}
.two-col__body p + p { margin-top: 1.2em; }

/* ───────── Service detail list ───────── */
.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.service-detail {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 800px) {
  .service-detail { grid-template-columns: 80px 1fr 1.4fr; gap: 48px; padding: 72px 0; }
}
.service-detail__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding-top: 8px;
}
.service-detail h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.018em;
  max-width: 16ch;
}
.service-detail p {
  color: var(--fg-soft);
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.78;
  max-width: 56ch;
}
.service-detail ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
  font-size: 14.5px;
  color: var(--fg-soft);
}
.service-detail ul li {
  padding-left: 20px;
  position: relative;
}
.service-detail ul li::before {
  content: '';
  position: absolute;
  top: 11px; left: 0;
  width: 10px; height: 1px;
  background: var(--accent);
}

/* ───────── Values cards ───────── */
.values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 700px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .values { grid-template-columns: repeat(3, 1fr); } }
.value {
  padding: 36px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: grid;
  gap: 14px;
  align-content: start;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.value:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px -8px rgba(31, 26, 20, 0.14);
}
.value__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.value h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: -0.015em;
}
.value p {
  font-size: 15px;
  color: var(--fg-soft);
  line-height: 1.7;
  margin: 0;
}

/* ───────── Article (legal pages) ───────── */
.article {
  max-width: 760px;
  margin: 0 auto;
}
.article h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  margin: 56px 0 18px;
  font-weight: 400;
  letter-spacing: -0.012em;
}
.article h2:first-of-type { margin-top: 0; }
.article p,
.article ul {
  color: var(--fg-soft);
  font-size: 16.5px;
  line-height: 1.8;
}
.article ul {
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.article ul li {
  padding-left: 22px;
  position: relative;
}
.article ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 10px; height: 1px;
  background: var(--accent);
}
.article a { border-bottom: 1px solid var(--accent); color: var(--fg); }
.article a:hover { color: var(--accent); }

/* ───────── Thanks page ───────── */
.thanks {
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 24px;
}
.thanks__inner { max-width: 640px; }
.thanks h1 { font-size: clamp(3rem, 7vw, 5rem); margin-bottom: 28px; }
.thanks p { color: var(--fg-soft); font-size: 1.15rem; line-height: 1.7; }
.thanks .actions {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* utility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
