:root {
  --bg: #FAF7F0;          /* ivoire */
  --bg-soft: #F2EEE3;
  --bg-deep: #E7E0D2;
  --surface: #FFFFFF;
  --ink: #0C1F3F;         /* encre nuit */
  --ink-soft: #2A3A56;
  --ink-mute: #51607A;
  --muted: #8A8E97;
  --line: rgba(12, 31, 63, 0.12);
  --ocre: #B86A2E;        /* ocre bauxite */
  --ocre-deep: #94521F;
  --ocre-soft: #D89B62;
  --serif: 'Cormorant Garamond', 'Garamond', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--ink); color: var(--bg); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 500;
  color: var(--ocre-deep);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ocre-deep);
  margin: 0 0 26px;
}
.eyebrow--light { color: var(--ocre-soft); }
.eyebrow--ocre { color: var(--ocre-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  border: 1.5px solid transparent;
  border-radius: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
  cursor: pointer;
}
.btn-sm { padding: 9px 18px; font-size: 0.78rem; }
.btn-lg { padding: 16px 32px; font-size: 0.9rem; }

.btn-ocre {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-ocre:hover {
  background: var(--ocre-deep);
  border-color: var(--ocre-deep);
  transform: translateY(-1px);
}

.btn-outline {
  background: var(--ocre);
  color: #fff;
  border-color: var(--ocre);
}
.btn-outline:hover {
  background: var(--ocre-deep);
  border-color: var(--ocre-deep);
  transform: translateY(-1px);
}

.btn-icon { width: 14px; height: 14px; flex-shrink: 0; }

.btn-link {
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
}
.btn-link:hover { color: var(--ocre-deep); border-color: var(--ocre-deep); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 240, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--ocre);
  color: var(--ocre-deep);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a:not(.btn) { color: var(--ink-soft); transition: color 0.2s ease; }
.nav-links a:not(.btn):hover { color: var(--ink); }

/* ---------- Hero ---------- */
.hero { padding: 70px 32px 90px; }
.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.9rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
}
.hero-first { color: var(--ink); }
.hero-last { color: var(--ocre-deep); font-style: italic; font-weight: 500; }

.hero-role {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 0 28px;
  line-height: 1.5;
}

.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.hero-tags span {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: var(--surface);
}

.hero-cta { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }

/* hero media (video) */
.hero-media { display: flex; flex-direction: column; gap: 0; }
.hero-video {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--ink);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(12, 31, 63, 0.45);
}
.hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.hero-media-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 16px;
  background: var(--ink);
  color: var(--bg);
  transition: background 0.2s ease;
}
.hero-media-foot:hover { background: var(--ocre-deep); }
.hero-media-tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocre-soft);
}
.hero-media-link {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ---------- Sections ---------- */
.section { padding: 100px 32px; border-top: 1px solid var(--line); }
.section-inner { max-width: var(--container); margin: 0 auto; }
.section-head { margin-bottom: 56px; max-width: 760px; }
.section-head--center { text-align: center; margin: 0 auto 40px; }
.section-head h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 500; margin: 0; }
.section-intro {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink-mute);
  margin: 20px 0 0;
  max-width: 640px;
  line-height: 1.5;
}
.section-intro--light { color: rgba(250, 247, 240, 0.72); }

.two-col { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.col-side h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 500; }

.lead {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 22px;
}
.col-main p { margin: 0 0 18px; color: var(--ink-soft); font-size: 1.02rem; }

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.metric { display: flex; flex-direction: column; gap: 6px; }
.metric-num {
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 500;
  color: var(--ocre-deep);
  line-height: 1;
}
.metric-lbl { font-family: var(--sans); font-size: 0.82rem; color: var(--ink-soft); line-height: 1.4; }
.metric-lbl small { display: block; color: var(--muted); font-size: 0.72rem; margin-top: 2px; }

/* ---------- Réalisations / gallery ---------- */
.realisations { background: var(--bg-soft); }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.proj {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.proj:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px -28px rgba(12, 31, 63, 0.5);
  border-color: var(--ocre);
}
.proj-media { display: block; aspect-ratio: 800 / 645; overflow: hidden; background: var(--bg-deep); }
.proj-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.proj:hover .proj-media img { transform: scale(1.04); }
.proj-info { display: block; padding: 18px 20px 20px; }
.proj-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
}
.proj-meta {
  display: block;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--ink-mute);
  margin-top: 6px;
  letter-spacing: 0.01em;
}
.proj-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(12, 31, 63, 0.86);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  backdrop-filter: blur(4px);
}
.gallery-note {
  margin: 34px 0 0;
  font-size: 0.86rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

/* ---------- Médiathèque ---------- */
.mediatheque { background: var(--ink); color: var(--bg); }
.mediatheque .section-head h2 { color: var(--bg); }
.media-group-title {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocre-soft);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(250, 247, 240, 0.14);
}
.media-group-title + .media-grid { margin-bottom: 48px; }
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.media-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(250, 247, 240, 0.14);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.media-card:hover { border-color: var(--ocre); transform: translateY(-3px); }
.media-thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: #08182f;
}
.media-thumb--dark { background: linear-gradient(135deg, #102a4d, #081428); }
.media-thumb--ocre { background: linear-gradient(135deg, #6a3c18, #94521F); }
.media-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 40, 0.32);
  transition: background 0.2s ease;
}
.media-card:hover .media-thumb::after { background: rgba(8, 18, 40, 0.12); }
.play {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(250, 247, 240, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.play::before {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--ink);
  margin-left: 4px;
}
.media-card:hover .play { transform: scale(1.08); background: #fff; }
.badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  border: 1px solid rgba(250, 247, 240, 0.4);
  padding: 4px 9px;
}
.media-info { padding: 16px 18px 20px; }
.media-name { display: block; font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--bg); }
.media-sub { display: block; font-size: 0.82rem; color: rgba(250, 247, 240, 0.6); margin-top: 5px; }

/* ---------- Presse ---------- */
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.press-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--ocre);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
a.press-card:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -26px rgba(12, 31, 63, 0.5); }
.press-card--static { opacity: 0.82; border-left-color: var(--muted); }
.press-source {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ocre-deep);
}
.press-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--ink); line-height: 1.15; }
.press-desc { font-size: 0.95rem; color: var(--ink-soft); }
.press-go { font-family: var(--sans); font-size: 0.84rem; font-weight: 600; color: var(--ocre-deep); margin-top: 4px; }
.press-go--mute { color: var(--muted); font-weight: 500; }

.distinctions { list-style: none; padding: 0; margin: 40px 0 0; display: grid; gap: 0; }
.distinctions li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 1rem;
  color: var(--ink-soft);
}
.dist-mark {
  flex-shrink: 0;
  width: 8px; height: 8px;
  margin-top: 9px;
  background: var(--ocre);
  transform: rotate(45deg);
}

/* ---------- Parcours / timeline ---------- */
.timeline { display: grid; gap: 0; }
.role {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 50px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.role:first-child { border-top: 0; padding-top: 0; }
.role--current .role-period::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ocre);
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.role-meta { display: flex; flex-direction: column; gap: 4px; }
.role-period {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ocre-deep);
  margin: 0;
}
.role-company { font-family: var(--serif); font-weight: 500; font-size: 1.15rem; margin: 4px 0 0; color: var(--ink); }
.role-place { font-size: 0.86rem; color: var(--muted); margin: 0; }
.role-body h3 { font-size: 1.4rem; font-weight: 500; margin: 0 0 8px; letter-spacing: -0.005em; }
.role-scope { font-family: var(--sans); font-size: 0.84rem; color: var(--ink-mute); letter-spacing: 0.02em; margin: 0 0 18px; font-style: italic; }
.role-body ul { list-style: none; padding: 0; margin: 0 0 4px; }
.role-body li { position: relative; padding-left: 18px; font-size: 0.96rem; color: var(--ink-soft); margin-bottom: 6px; }
.role-body li::before { content: "—"; position: absolute; left: 0; color: var(--ocre); }
.role--compact .role-body p { margin: 0; font-size: 0.96rem; color: var(--ink-soft); }

.moa { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line); }
.moa-label {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocre-deep);
  margin: 0 0 18px;
}

/* ---------- Expertise ---------- */
.expertise { background: var(--bg-soft); }
.expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.expertise-block { background: var(--surface); border: 1px solid var(--line); padding: 32px; }
.expertise-block h3 { font-size: 1.3rem; font-weight: 500; margin: 0 0 22px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }

.pills { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.pills li {
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 7px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.pills--ink li { background: var(--surface); }

.techlist { margin: 0; display: grid; gap: 10px; }
.techlist > div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.techlist > div:last-child { border-bottom: 0; }
.techlist dt { font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ocre-deep); }
.techlist dd { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }

.muted-line { margin: 0 0 10px; font-size: 0.95rem; color: var(--ink-soft); }
.muted-line strong {
  color: var(--ocre-deep);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  min-width: 86px;
}

/* ---------- Citations ---------- */
.citations { background: var(--bg-deep); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.quote { margin: 0; padding: 0; }
.quote p {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 18px;
}
.quote cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocre-deep);
}

/* ---------- Contact ---------- */
.contact { background: var(--ink); color: var(--bg); padding: 110px 32px; }
.contact-inner { max-width: var(--container); margin: 0 auto; text-align: center; }
.contact h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 500; margin: 0 0 22px; color: var(--bg); }
.contact h2 em { color: var(--ocre-soft); }
.contact-sub {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(250, 247, 240, 0.72);
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.5;
}
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 760px; margin: 0 auto; }
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 28px;
  border: 1px solid rgba(250, 247, 240, 0.15);
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.contact-card:not(.contact-card--static):hover {
  border-color: var(--ocre);
  background: rgba(184, 106, 46, 0.1);
  transform: translateY(-2px);
}
.contact-card--static { opacity: 0.72; cursor: default; }
.contact-key {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocre-soft);
}
.contact-val { font-family: var(--serif); font-size: 1.2rem; color: var(--bg); }

/* ---------- Footer ---------- */
.footer { padding: 50px 32px 30px; background: var(--bg-soft); border-top: 1px solid var(--line); text-align: center; }
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-name { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; margin: 0; color: var(--ink); }
.footer-role { font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ocre-deep); margin: 6px 0 18px; }
.footer-meta { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 40px;
  background: rgba(8, 16, 32, 0.94);
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox-stage {
  max-width: min(1000px, 92vw);
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-stage img { max-width: 100%; max-height: 82vh; object-fit: contain; box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7); }
.lightbox-stage .video-wrap { position: relative; width: min(960px, 92vw); aspect-ratio: 16 / 9; }
.lightbox-stage .video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lightbox-caption {
  color: rgba(250, 247, 240, 0.8);
  font-family: var(--sans);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  margin: 0;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(250, 247, 240, 0.3);
  background: transparent;
  color: var(--bg);
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lightbox-close:hover { border-color: var(--ocre); background: rgba(184, 106, 46, 0.18); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero { padding: 44px 24px 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { order: -1; }

  .section { padding: 70px 24px; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }

  .gallery { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .press-grid { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; gap: 30px; }

  .role { grid-template-columns: 1fr; gap: 16px; }
  .role-meta { padding-bottom: 8px; border-bottom: 1px dashed var(--line); }

  .expertise-grid { grid-template-columns: 1fr; gap: 18px; }
  .contact { padding: 80px 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 600px) {
  .nav-links a:not(.btn) { display: none; }
  .hero-cta { gap: 16px; }
  .gallery { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
