/* ═══════════════════════════════════════════════════════════════
   EXPERT AGENCEMENT — DESIGN SYSTEM
   Architectural editorial luxury. Restrained. Confident.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Palette */
  --paper:        #f4f1ea;
  --paper-2:      #ebe6da;
  --ink:          #1a1814;
  --ink-soft:     #3a352c;
  --ink-mute:     #6f6857;
  --rule:         #c9c1ac;
  --gold:         #a8884a;
  --gold-deep:    #8a6c34;
  --bone:         #fbfaf6;

  /* Type */
  --serif:  'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans:   'Inter Tight', system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --gutter: clamp(20px, 4vw, 56px);
  --max:    1440px;
  --max-text: 720px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--ink); color: var(--paper); }

body::before {
  content: ""; position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ═══ NAV ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
  background: rgba(244, 241, 234, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s ease, padding .4s ease;
}
.nav.is-scrolled { border-bottom-color: var(--rule); padding-top: 16px; padding-bottom: 16px; }

.nav__brand {
  display: inline-flex; align-items: center;
  gap: 14px; text-decoration: none;
}
.nav__logo { height: 56px; width: auto; display: block; transition: height .4s ease; }
.nav.is-scrolled .nav__logo { height: 44px; }
.nav__brand-text {
  font-family: var(--serif);
  font-weight: 500; font-size: 22px; letter-spacing: .04em;
  color: var(--ink);
  white-space: nowrap;
}
.nav__brand-text .amp { color: var(--gold); font-style: italic; padding: 0 .15em; }

.footer__brand-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.footer__logo { height: 64px; width: auto; display: block; }
.footer__brand-text {
  font-family: var(--serif);
  font-weight: 500; font-size: 22px; letter-spacing: .04em;
  color: var(--paper);
}
.footer__brand-text .amp { color: var(--gold); font-style: italic; padding: 0 .15em; }

@media (max-width: 700px) {
  .nav__brand-text { display: none; }
}

.nav__menu {
  display: flex; gap: 36px; justify-content: center;
  list-style: none; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
}
.nav__menu a {
  position: relative; padding: 4px 0;
  transition: color .3s ease;
}
.nav__menu a::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: right;
  transition: transform .5s cubic-bezier(.7,0,.2,1);
}
.nav__menu a:hover::after,
.nav__menu a.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav__right {
  display: flex; gap: 18px; justify-content: flex-end; align-items: center;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
}
.lang {
  display: inline-flex; gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--rule); border-radius: 999px;
  transition: all .3s ease;
}
.lang:hover { border-color: var(--ink); }
.lang span { opacity: .35; transition: opacity .3s; }
.lang span.is-active { opacity: 1; }

.cta-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  background: var(--ink); color: var(--paper);
  border-radius: 999px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  transition: background .3s ease, transform .3s ease;
  cursor: pointer; border: none;
}
.cta-pill:hover { background: var(--gold-deep); transform: translateY(-1px); }
.cta-pill--ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.cta-pill--ghost:hover { background: var(--ink); color: var(--paper); }
.cta-pill--ghost-light { background: transparent; color: var(--paper); border: 1px solid var(--paper); }
.cta-pill--ghost-light:hover { background: var(--paper); color: var(--ink); }

.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 22px; height: 1px; background: var(--ink); margin: 5px 0; transition: .3s; }

@media (max-width: 1100px) {
  .nav__menu { gap: 24px; font-size: 12px; }
}
@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__menu, .nav__right .cta-pill { display: none; }
  .nav__toggle { display: block; }
  .nav__right { gap: 12px; }
  .mobile-menu {
    position: fixed; inset: 0; z-index: 99;
    background: var(--paper); padding: 100px var(--gutter) 40px;
    display: flex; flex-direction: column; gap: 24px;
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(.7,0,.2,1);
    overflow-y: auto;
  }
  .mobile-menu.is-open { transform: translateX(0); }
  .mobile-menu a {
    font-family: var(--serif); font-size: 32px; line-height: 1.2;
    border-bottom: 1px solid var(--rule); padding-bottom: 16px;
  }
}

/* ═══ HERO (homepage) ═══ */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 140px var(--gutter) 60px;
  display: grid; grid-template-columns: 1fr;
  align-content: end; gap: 40px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .55; mix-blend-mode: multiply;
}
.hero__bg svg { width: 100%; height: 100%; }

.hero__eyebrow {
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; align-items: center; gap: 16px;
  opacity: 0; transform: translateY(20px);
  animation: rise .9s .2s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__eyebrow::before {
  content: ""; width: 40px; height: 1px; background: var(--gold);
}

.hero__headline {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(56px, 9vw, 168px);
  line-height: 0.92; letter-spacing: -0.025em;
  max-width: 18ch; color: var(--ink);
}
.hero__headline .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero__headline .word > span {
  display: inline-block; transform: translateY(110%);
  animation: rise-clean 1.1s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__headline em { font-style: italic; color: var(--gold-deep); font-weight: 300; }

.hero__meta {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 40px; align-items: end;
  border-top: 1px solid var(--rule); padding-top: 28px;
  opacity: 0; animation: fade 1s 1.2s ease forwards;
}
.hero__lede {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.4;
  color: var(--ink-soft); max-width: 38ch;
}
.hero__index {
  display: flex; gap: 32px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-mute); text-align: right;
}
.hero__index strong {
  display: block; font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 32px; color: var(--ink);
  letter-spacing: -.01em; text-transform: none; margin-bottom: 4px;
}

.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 36px; background: var(--ink-mute);
  animation: pulse-line 2.4s ease-in-out infinite;
}

@media (max-width: 700px) {
  .hero__meta { grid-template-columns: 1fr; gap: 24px; }
  .hero__index { text-align: left; }
}

/* ═══ INNER PAGE HERO ═══ */
.page-hero {
  padding: 160px var(--gutter) 56px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.page-hero__breadcrumb {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 24px;
}
.page-hero__breadcrumb a:hover { color: var(--ink); }
.page-hero__breadcrumb .sep { color: var(--gold); padding: 0 .8em; }

.page-hero__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(44px, 7vw, 104px);
  line-height: 0.95; letter-spacing: -0.02em;
  max-width: 18ch; margin-bottom: 24px;
}
.page-hero__title em { font-style: italic; color: var(--gold-deep); }

.page-hero__lede {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px); line-height: 1.5;
  color: var(--ink-soft); max-width: 50ch;
}

/* ═══ KEYFRAMES ═══ */
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes rise-clean { to { transform: translateY(0); } }
@keyframes fade { to { opacity: 1; } }
@keyframes pulse-line {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: .4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* ═══ SECTION SHELL ═══ */
.section { padding: clamp(60px, 8vw, 100px) var(--gutter); position: relative; }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink .label { color: var(--gold); }
.section--ink h2,
.section--ink h3 { color: var(--paper); }
.section--bone { background: var(--bone); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

.wrap { max-width: var(--max); margin: 0 auto; }
.wrap--text { max-width: var(--max-text); margin: 0 auto; }

.label {
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.label::before { content: ""; width: 24px; height: 1px; background: var(--gold); }

h2.display, .h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.95; letter-spacing: -0.02em;
  max-width: 18ch;
}
h2.display em, .h2 em { font-style: italic; color: var(--gold-deep); }
.section--ink h2.display em, .section--ink .h2 em { color: var(--gold); }

h3.h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15; letter-spacing: -.01em;
  margin: 48px 0 20px;
}
h3.h3 em { font-style: italic; color: var(--gold-deep); }

/* ═══ MANIFESTO ═══ */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}
.manifesto__lead h2 { margin-bottom: 32px; }
.manifesto__body p {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.7; color: var(--ink-soft);
  max-width: 56ch; margin-bottom: 24px;
}
.manifesto__body p:first-of-type::first-letter {
  font-family: var(--serif); font-size: 5em;
  float: left; line-height: 0.85;
  margin: 0.05em 0.12em -0.05em 0;
  color: var(--gold-deep); font-style: italic; font-weight: 400;
}
.signature {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; letter-spacing: .04em;
}
.signature .name {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--ink);
}
.signature .role {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 900px) { .manifesto { grid-template-columns: 1fr; } }

/* ═══ METRICS ═══ */
.metrics {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  padding: 80px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: 80px;
}
.metric { text-align: left; }
.metric__number {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1; color: var(--ink);
  letter-spacing: -.02em; margin-bottom: 8px;
}
.metric__number sup { font-size: .5em; color: var(--gold-deep); font-style: italic; padding-left: .15em; }
.metric__label {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-mute); max-width: 18ch;
}
@media (max-width: 700px) { .metrics { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

/* ═══ SERVICES (homepage list) ═══ */
.services { display: grid; grid-template-columns: 1fr; }
.service {
  display: grid; grid-template-columns: 80px 1fr 2fr 1fr;
  gap: 40px; align-items: start;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,.18);
  cursor: pointer;
  transition: padding .5s cubic-bezier(.2,.7,.2,1);
}
.service:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.service:hover { padding-left: 24px; }
.service:hover .service__arrow { transform: translateX(8px); }
.service:hover .service__title { color: var(--gold); }
.service__num {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: rgba(244,241,234,.5); padding-top: 8px;
}
.service__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05; letter-spacing: -.01em;
  transition: color .4s ease;
}
.service__desc {
  font-size: 15px; line-height: 1.65;
  color: rgba(244,241,234,.7); max-width: 50ch; padding-top: 8px;
}
.service__arrow {
  font-family: var(--serif); font-size: 28px;
  color: var(--gold); transition: transform .4s ease;
  text-align: right; padding-top: 8px;
}
.service.is-flagship {
  background: linear-gradient(90deg, rgba(168,136,74,.08), transparent 60%);
  position: relative;
}
.service.is-flagship::before {
  content: "Spécialité"; position: absolute; left: 0; top: 12px;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
}
@media (max-width: 900px) {
  .service { grid-template-columns: 50px 1fr; gap: 20px; }
  .service__desc, .service__arrow { grid-column: 1 / -1; padding-left: 70px; }
  .service__arrow { display: none; }
}

/* ═══ PORTFOLIO GRID ═══ */
.portfolio__head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 80px; flex-wrap: wrap; gap: 32px;
}
.portfolio__intro {
  max-width: 38ch; color: var(--ink-soft);
  font-family: var(--serif); font-style: italic;
  font-size: 19px; line-height: 1.5;
}
.portfolio__grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 32px;
}
.project {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--paper-2); display: block;
}
.project--lg { grid-column: span 8; aspect-ratio: 4/3; }
.project--md { grid-column: span 4; aspect-ratio: 3/4; }
.project--sq { grid-column: span 6; aspect-ratio: 1/1; }
.project--wd { grid-column: span 6; aspect-ratio: 4/3; }
.project--full { grid-column: span 12; aspect-ratio: 21/9; }

.project__img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
  filter: saturate(.85) contrast(1.05);
}
.project:hover .project__img { transform: scale(1.06); }
.project__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,24,20,.85) 100%);
  display: flex; flex-direction: column; justify-content: end;
  padding: 32px; color: var(--paper);
}
.project__cat {
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
  opacity: 0; transform: translateY(8px);
  transition: all .5s .1s ease;
}
.project__title {
  font-family: var(--serif); font-weight: 400; font-size: 28px;
  line-height: 1.1; opacity: 0; transform: translateY(12px);
  transition: all .5s .15s ease;
}
.project:hover .project__cat,
.project:hover .project__title { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .project--lg, .project--md, .project--sq, .project--wd, .project--full {
    grid-column: span 12; aspect-ratio: 4/3;
  }
}

/* ═══ FOUNDER BLOCK ═══ */
.founder {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 8vw, 100px); align-items: center;
}
.founder__portrait {
  aspect-ratio: 4/5; background: var(--paper-2);
  position: relative; overflow: hidden;
}
.founder__portrait::after {
  content: ""; position: absolute; inset: -1px;
  border: 1px solid var(--rule); pointer-events: none;
}
.founder__portrait img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.3) contrast(1.05);
  transition: filter 1.2s ease, transform 1.2s ease;
}
.founder:hover .founder__portrait img { filter: grayscale(0) contrast(1.1); transform: scale(1.03); }

.founder__quote {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(24px, 2.6vw, 36px); line-height: 1.3;
  letter-spacing: -.005em; color: var(--ink);
  margin-bottom: 32px; position: relative;
}
.founder__quote::before {
  content: "“"; font-family: var(--serif);
  font-size: 5em; line-height: 0.7;
  color: var(--gold); position: absolute;
  left: -.5em; top: -.05em; opacity: .5;
}
.founder__credentials {
  display: grid; gap: 18px;
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.cred {
  display: grid; grid-template-columns: 90px 1fr; gap: 24px; font-size: 14px;
}
.cred__year { font-family: var(--serif); font-style: italic; color: var(--gold-deep); }
.cred__text { color: var(--ink-soft); }

@media (max-width: 900px) { .founder { grid-template-columns: 1fr; } }

/* ═══ CLIENTS RAIL ═══ */
.clients-rail {
  margin-top: 60px; padding: 40px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden; position: relative;
}
.clients-rail::before, .clients-rail::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 2; pointer-events: none;
}
.clients-rail::before { left: 0; background: linear-gradient(90deg, var(--paper), transparent); }
.clients-rail::after  { right: 0; background: linear-gradient(-90deg, var(--paper), transparent); }
.section--bone .clients-rail::before { background: linear-gradient(90deg, var(--bone), transparent); }
.section--bone .clients-rail::after  { background: linear-gradient(-90deg, var(--bone), transparent); }
.clients-track {
  display: flex; gap: 80px; align-items: center;
  animation: marquee 38s linear infinite; width: max-content;
}
.clients-track span {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--ink-mute);
  white-space: nowrap; letter-spacing: .02em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══ EDITORIAL QUOTE ═══ */
.editorial { padding: clamp(60px, 9vw, 110px) var(--gutter); }
.editorial__quote {
  max-width: 24ch; margin: 0 auto; text-align: center;
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(36px, 5vw, 72px); line-height: 1.15;
  letter-spacing: -.015em; color: var(--ink);
}
.editorial__cite {
  text-align: center; margin-top: 48px;
  font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ink-mute);
}
.editorial__cite strong { color: var(--ink); font-weight: 400; }

/* ═══ CONTACT ═══ */
.contact { background: var(--ink); color: var(--paper); padding: clamp(70px, 10vw, 120px) var(--gutter); }
.contact__head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 60px;
}
.contact h2.display { color: var(--paper); font-size: clamp(48px, 8vw, 128px); }
.contact__lede {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; line-height: 1.5;
  color: rgba(244,241,234,.7); max-width: 36ch;
}
.contact__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 60px; padding-top: 40px;
  border-top: 1px solid rgba(244,241,234,.18);
}
.contact__block .label { color: var(--gold); margin-bottom: 16px; }
.contact__block a, .contact__block p {
  font-family: var(--serif); font-size: 22px; line-height: 1.4;
  color: var(--paper); display: block;
}
.contact__block a:hover { color: var(--gold); }
.contact__cta {
  display: inline-flex; align-items: center; gap: 16px;
  margin-top: 48px; padding: 22px 36px;
  background: var(--gold-deep); color: var(--paper);
  border-radius: 999px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  transition: all .4s ease;
}
.contact__cta:hover {
  background: var(--gold); transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(168,136,74,.3);
}
@media (max-width: 800px) {
  .contact__head, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══ FORM ═══ */
.form { display: grid; gap: 32px; max-width: 720px; margin: 0 auto; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form__field { display: flex; flex-direction: column; gap: 10px; }
.form__label {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold);
}
.form__input, .form__select, .form__textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 12px 0;
  font-family: var(--sans); font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color .3s ease;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  border-bottom-color: var(--ink);
}
.form__textarea { min-height: 140px; resize: vertical; }
.section--ink .form__input,
.section--ink .form__select,
.section--ink .form__textarea {
  color: var(--paper); border-bottom-color: rgba(244,241,234,.3);
}
.section--ink .form__input:focus,
.section--ink .form__textarea:focus { border-bottom-color: var(--gold); }
.form__submit {
  margin-top: 16px;
  padding: 20px 36px;
  background: var(--gold-deep); color: var(--paper);
  border: none; border-radius: 999px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  cursor: pointer; transition: all .3s ease;
  font-family: var(--sans); font-weight: 400;
  justify-self: start;
}
.form__submit:hover { background: var(--gold); transform: translateY(-1px); }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

/* ═══ FOOTER ═══ */
.footer {
  background: var(--ink); color: rgba(244,241,234,.55);
  padding: 60px var(--gutter) 30px;
  font-size: 13px; letter-spacing: .04em;
}
.footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(244,241,234,.1);
  margin-bottom: 30px;
}
.footer__brand {
  font-family: var(--serif); font-weight: 500; font-size: 24px;
  letter-spacing: .04em; color: var(--paper); margin-bottom: 20px;
}
.footer__brand .amp { color: var(--gold); font-style: italic; padding: 0 .15em; }
.footer__about {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; line-height: 1.6;
  color: rgba(244,241,234,.7); max-width: 36ch;
}
.footer__col-title {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer__list { list-style: none; display: grid; gap: 12px; }
.footer__list a:hover { color: var(--paper); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px;
}
.footer .gold { color: var(--gold); }
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ═══ ARTICLE / PROSE ═══ */
.prose {
  max-width: var(--max-text); margin: 0 auto;
  padding: 60px var(--gutter);
  font-size: 18px; line-height: 1.75; color: var(--ink-soft);
}
.prose h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1; letter-spacing: -.015em;
  color: var(--ink);
  margin: 48px 0 20px;
}
.prose h2 em { font-style: italic; color: var(--gold-deep); }
.prose h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2; color: var(--ink);
  margin: 48px 0 16px;
}
.prose p { margin-bottom: 24px; }
.prose ul, .prose ol { margin: 24px 0 24px 1.5em; }
.prose li { margin-bottom: 10px; }
.prose blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: 24px; line-height: 1.5;
  color: var(--ink); border-left: 2px solid var(--gold);
  padding: 8px 0 8px 32px; margin: 40px 0;
}
.prose strong { color: var(--ink); font-weight: 500; }
.prose a {
  color: var(--gold-deep); border-bottom: 1px solid var(--rule);
  transition: border-color .3s;
}
.prose a:hover { border-bottom-color: var(--gold-deep); }
.prose table {
  width: 100%; border-collapse: collapse; margin: 32px 0;
  font-size: 15px;
}
.prose th, .prose td {
  text-align: left; padding: 16px;
  border-bottom: 1px solid var(--rule);
}
.prose th {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 500;
}
.prose td:first-child { color: var(--ink); font-weight: 400; }

/* ═══ SERVICE CARD GRID (used on services pages) ═══ */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  margin-top: 80px;
}
.svc-card {
  background: var(--bone); padding: 40px;
  border: 1px solid var(--rule);
  transition: all .4s ease;
}
.svc-card:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 24px 60px -20px rgba(26,24,20,.15);
}
.svc-card__num {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--gold-deep); margin-bottom: 16px;
}
.svc-card__title {
  font-family: var(--serif); font-weight: 400;
  font-size: 24px; line-height: 1.2; margin-bottom: 16px;
}
.svc-card__desc { font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.svc-card__link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 24px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-deep);
}
.svc-card__link:hover { color: var(--ink); }
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; } }

/* ═══ PROCESS / METHODOLOGY ═══ */
.process {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 24px;
  margin-top: 60px;
}
.process__step {
  border-top: 1px solid var(--rule); padding-top: 24px;
  position: relative;
}
.process__step::before {
  content: ""; position: absolute; top: -1px; left: 0;
  width: 40px; height: 1px; background: var(--gold);
}
.process__num {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--gold-deep); margin-bottom: 12px;
}
.process__title {
  font-family: var(--serif); font-weight: 400;
  font-size: 18px; line-height: 1.2; margin-bottom: 12px;
}
.process__desc { font-size: 13px; line-height: 1.5; color: var(--ink-soft); }
@media (max-width: 1100px) { .process { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .process { grid-template-columns: 1fr; } }

/* ═══ FAQ ═══ */
.faq { max-width: 880px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
}
.faq__q {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(20px, 2vw, 24px); line-height: 1.3;
  cursor: pointer; display: flex;
  justify-content: space-between; align-items: start; gap: 24px;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+"; font-family: var(--serif);
  font-size: 28px; color: var(--gold);
  transition: transform .3s ease; flex-shrink: 0;
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a {
  margin-top: 16px; font-size: 16px; line-height: 1.7;
  color: var(--ink-soft); max-width: 64ch;
}

/* ═══ ARTICLE LIST (journal hub) ═══ */
.articles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px 40px; margin-top: 60px; }
.article-card { display: block; }
.article-card__cover {
  aspect-ratio: 16/10; background: var(--paper-2);
  margin-bottom: 24px; overflow: hidden;
}
.article-card__cover .img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform 1.2s ease;
  filter: saturate(.85) contrast(1.05);
}
.article-card:hover .img { transform: scale(1.05); }
.article-card__meta {
  display: flex; gap: 20px; align-items: center;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 12px;
}
.article-card__meta .gold { color: var(--gold-deep); }
.article-card__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 2vw, 30px); line-height: 1.2;
  margin-bottom: 12px;
}
.article-card:hover .article-card__title { color: var(--gold-deep); }
.article-card__excerpt {
  font-size: 15px; line-height: 1.6; color: var(--ink-soft); max-width: 50ch;
}
@media (max-width: 800px) { .articles { grid-template-columns: 1fr; } }

/* ═══ REVEAL ═══ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1),
              transform 1s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}
