/* ============================================================
   NORTH VISUALS — STYLES v3
   Palette northgold · Mode dark · Typo mono-grotesk · Cinematic
   ============================================================ */

/* ─── VARIABLES ─────────────────────────────────────────────── */
:root {
  /* Palette */
  --bg:           #0A0907;
  --bg-2:         #100E0B;
  --bg-3:         #15120E;
  --bg-elev:      #14110D;
  --bg-card:      #14110D;
  --fg:           #EDE9DF;
  --fg-muted:     #9A968A;
  --fg-dim:       #5A564E;
  --fg-faint:     #3A3731;

  --gold:         #D4A53A;
  --gold-bright:  #E8B845;
  --gold-soft:    rgba(212, 165, 58, 0.12);
  --gold-rgb:     212, 165, 58;

  --teal:         #7BBBC8;
  --copper:       #C87B4B;
  --plum:         #B07BC8;

  --line:         rgba(237, 233, 223, 0.07);
  --line-2:       rgba(237, 233, 223, 0.14);
  --line-3:       rgba(237, 233, 223, 0.22);

  /* Typo */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-mono:    'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;
  --font-serif:   'Instrument Serif', Georgia, serif;
  --font-body:    'Geist', 'Inter', system-ui, sans-serif;

  /* Layout */
  --pad-x:        60px;
  --pad-x-sm:     20px;
  --hud-h:        64px;
}

@media (max-width: 1200px) { :root { --pad-x: 40px; } }
@media (max-width: 768px)  { :root { --pad-x: var(--pad-x-sm); --hud-h: 56px; } }

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select, button { font: inherit; color: inherit; }

/* Grid background (subtle) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  opacity: .6;
}

/* Grain noise */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 998;
  opacity: .04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='.88' numOctaves='3' seed='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/></svg>");
}

/* ─── HUD TOP ───────────────────────────────────────────────── */
.hud {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--hud-h);
  z-index: 500;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad-x);
  background: linear-gradient(180deg, rgba(10,9,7,.95) 0%, rgba(10,9,7,.7) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hud-left { display: flex; align-items: center; }
.hud-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: opacity .2s;
}
.hud-logo:hover { opacity: .8; }
.hud-logo-img {
  height: 32px;
  width: auto;
}
@media (max-width: 768px) {
  .hud-logo-img { height: 28px; }
}

.hud-center {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-self: center;
}
.hud-center a {
  position: relative;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg);
  padding: 8px 0;
  cursor: pointer;
  transition: color .2s;
}
.hud-center a:hover { color: var(--gold); }
.hud-center a.active::before {
  content: '•';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 14px;
}

.hud-right {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-self: end;
}
.hud-time {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--fg-muted);
}
.blink { animation: blink 1.1s step-end infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.brief-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg);
  padding: 9px 18px;
  border: 1px solid var(--line-3);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  background: transparent;
}
.brief-btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--line-2);
}
.mobile-menu-btn span {
  width: 16px;
  height: 1px;
  background: var(--fg);
  transition: transform .25s, opacity .2s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: var(--hud-h);
  left: 0; right: 0;
  background: rgba(10,9,7,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 490;
  border-bottom: 1px solid var(--line-2);
  padding: 12px var(--pad-x-sm) 28px;
  display: flex;
  flex-direction: column;
  transform: translateY(-110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-drawer.open { transform: translateY(0); }
.mobile-drawer a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  position: relative;
}
.mobile-drawer a:last-child { border-bottom: none; }
.mobile-drawer a.active { color: var(--gold); }
.mobile-drawer a.active::before {
  content: '•';
  position: absolute;
  left: -16px;
  color: var(--gold);
}

/* ─── STAGE ─────────────────────────────────────────────────── */
.stage {
  position: relative;
  padding-top: var(--hud-h);
  min-height: 100vh;
  z-index: 2;
}

/* ─── PAGES ─────────────────────────────────────────────────── */
.page {
  display: none;
  opacity: 0;
}
.page.active {
  display: block;
  animation: pageIn .55s cubic-bezier(.22, .61, .36, 1) forwards;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── CURTAIN ───────────────────────────────────────────────── */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 700;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}
.curtain-half {
  flex: 1;
  background: var(--bg);
  transform: scaleY(0);
  transition: transform .42s cubic-bezier(.76,0,.24,1);
}
.curtain-half:first-child { transform-origin: top; }
.curtain-half:last-child  { transform-origin: bottom; }
.curtain-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity .2s;
  white-space: nowrap;
}
.curtain.closing .curtain-half { transform: scaleY(1); }
.curtain.closing .curtain-stamp { opacity: 1; }

/* ─── REVEAL ────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ─── SECTION LABEL ─────────────────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.section-label .num   { color: var(--gold); }
.section-label .slash { color: var(--gold); margin: 0 .4em; }
.section-label .name  { color: var(--gold); }

/* ─── COMMON / TYPO ─────────────────────────────────────────── */
.h-display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: .95;
  color: var(--fg);
}
.h-display em, .gold-italic {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
gold {
  color: var(--gold);
  cursor: pointer;
  transition: opacity .15s;
}
gold:hover { opacity: .8; }

/* ═══════════════════════════════════════════════════════════════
   PAGE 01 — INDEX (HOME)
   ═══════════════════════════════════════════════════════════════ */
.page-home {
  min-height: 100vh;
  position: relative;
}
.home-hero {
  position: relative;
  min-height: 100vh;
  margin-top: calc(var(--hud-h) * -1);
  padding-top: var(--hud-h);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg video, .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55) saturate(.85);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(10,9,7,.55) 70%, rgba(10,9,7,.95) 100%);
}
.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(212,165,58,.12) 0%, transparent 60%),
    linear-gradient(160deg, #1a1612 0%, #0A0907 100%);
}
.hero-logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  padding: 0 var(--pad-x);
}
.hero-logo-img {
  width: clamp(280px, 50vw, 720px);
  max-width: 100%;
  height: auto;
}

/* Indicateur de scroll : "Scroll · Descent" en haut, barre en bas avec pulse gold */
.hero-scroll {
  position: absolute;
  right: 32px;
  bottom: 56px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-scroll-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
/* Rail discret (guide blanc très estompé) */
.hero-scroll-bar {
  position: relative;
  width: 1px;
  height: 80px;
  background: rgba(237, 233, 223, 0.10);
}
/* Comète gold qui descend avec traînée */
.hero-scroll-bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 50%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(212, 165, 58, 0.18) 35%,
    rgba(212, 165, 58, 0.50) 68%,
    rgba(212, 165, 58, 0.88) 90%,
    var(--gold) 100%
  );
  border-radius: 1px;
  box-shadow:
    0 0 6px  rgba(212, 165, 58, 0.55),
    0 0 14px rgba(212, 165, 58, 0.22);
  animation: cometFall 2s linear infinite;
  will-change: transform, opacity;
}
@keyframes cometFall {
  0%   { transform: translateY(-100%); opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { transform: translateY(200%); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE 02 — ABOUT
   ═══════════════════════════════════════════════════════════════ */
/* Page About en mode standalone (legacy, plus utilisée) */
.page-about {
  padding: calc(var(--hud-h) + 48px) var(--pad-x) 80px;
}

/* About intégré dans la Home, juste sous le hero */
.home-about {
  padding: 100px var(--pad-x) 80px;
  scroll-margin-top: var(--hud-h);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  min-height: 70vh;
}
.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-3);
  overflow: hidden;
  background-image:
    repeating-linear-gradient(135deg, rgba(237,233,223,.025) 0 1px, transparent 1px 8px);
}
.about-portrait.has-image { background-image: none; background: var(--bg); }
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-portrait-caption {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--fg-dim);
  text-transform: uppercase;
  pointer-events: none;
}
.about-portrait.has-image .about-portrait-caption { display: none; }

.about-content { padding-top: 12px; }
.about-eyebrow {
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.about-eyebrow::before {
  content: '— ';
  color: var(--fg-muted);
}
.about-eyebrow .arrow { color: var(--gold); }
.about-eyebrow .date  { color: var(--gold); }

.about-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 84px);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 36px;
}
.about-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.about-bio p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 18px;
  max-width: 540px;
}
.about-bio p strong { color: var(--fg); font-weight: 500; }
.about-bio p gold   { color: var(--gold); cursor: pointer; }

.about-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 10px;
}
.about-stat-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 32px);
  color: var(--fg);
  letter-spacing: -.01em;
}
.about-stat-value small {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  color: var(--fg-dim);
  margin-left: 4px;
  vertical-align: super;
  letter-spacing: .1em;
}

.about-ctas {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE 03 — ARCHIVE
   ═══════════════════════════════════════════════════════════════ */
.page-archive {
  padding: calc(var(--hud-h) + 48px) var(--pad-x) 80px;
}
.archive-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 72px;
}
.archive-header-left { display: flex; align-items: baseline; gap: 32px; flex-wrap: wrap; }
.archive-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 7vw, 120px);
  letter-spacing: -.025em;
  line-height: .9;
}
.archive-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: right;
  line-height: 2;
}
.archive-meta div:last-child { color: var(--fg-dim); }

/* Filters */
.archive-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 56px;
}
.filter-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-right: 8px;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  background: transparent;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.filter-chip:hover { color: var(--fg); border-color: var(--line-3); }
.filter-chip.active {
  color: var(--fg);
  border-color: var(--fg);
  background: rgba(237,233,223,.03);
}
.filter-chip-dot {
  width: 8px;
  height: 8px;
  background: var(--c, var(--fg));
  flex-shrink: 0;
}
.filter-chip-count { color: var(--fg-dim); }

/* Project grid */
.archive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.proj-card {
  cursor: pointer;
  display: block;
}
.proj-card-media {
  position: relative;
  aspect-ratio: 16/9;
  background:
    repeating-linear-gradient(135deg, rgba(237,233,223,.025) 0 1px, transparent 1px 8px),
    var(--bg-3);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .3s;
}
.proj-card-media.has-image { background: var(--bg); border-color: transparent; }
.proj-card:hover .proj-card-media { border-color: var(--line-3); }
.proj-card-media.has-image .proj-card-label { display: none; }
.proj-card-media video, .proj-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .3s;
}
.proj-card-media video.loaded, .proj-card-media img.loaded { opacity: 1; }
.proj-card-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  padding: 0 24px;
  pointer-events: none;
}
.proj-card-no {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--fg);
}
.proj-card-arrow {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 14px;
  transition: background .25s, color .25s, transform .35s;
}
.proj-card:hover .proj-card-arrow {
  background: var(--gold);
  color: var(--bg);
  transform: translateX(4px);
}
.proj-card-info {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.proj-card-year {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  color: var(--fg);
  letter-spacing: -.01em;
}
.proj-card-month {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.proj-card-title-strip {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   PROJECT DETAIL
   ═══════════════════════════════════════════════════════════════ */
.page-project {
  padding: calc(var(--hud-h) + 28px) var(--pad-x) 80px;
}
.project-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
}
.project-back {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  cursor: pointer;
  transition: color .2s;
}
.project-back:hover { color: var(--gold); }
.project-counter {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.project-eyebrow {
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.project-eyebrow span:not(:last-child)::after {
  content: ' · ';
  color: var(--gold);
  margin-left: 12px;
}
.project-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 8vw, 130px);
  letter-spacing: -.025em;
  line-height: .92;
  margin-bottom: 32px;
}
.project-shortdesc {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 70ch;
  margin-bottom: 56px;
}

/* Video frame */
.project-video {
  position: relative;
  aspect-ratio: 16/9;
  background:
    repeating-linear-gradient(135deg, rgba(237,233,223,.025) 0 1px, transparent 1px 8px),
    var(--bg-3);
  border: 1px solid var(--line);
  margin-bottom: 56px;
  overflow: hidden;
}
.project-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.project-video-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--fg-dim);
  text-align: center;
  padding: 0 32px;
  pointer-events: none;
}

/* Project body : 3 colonnes — credits / description / stats */
.project-body-grid {
  display: grid;
  grid-template-columns: 260px 1fr 200px;
  gap: 56px;
  margin-bottom: 96px;
  align-items: start;
}

/* Stats (vertical, à gauche) */
.project-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px 28px;
  background: var(--bg-card);
}
.project-stat {}
.project-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.project-stat-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -.01em;
  line-height: 1.1;
}

/* Credits (au milieu) */
.project-credits {}
.credits-block { margin-bottom: 32px; }
.credits-block:last-child { margin-bottom: 0; }
.credits-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 14px;
}
.credits-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  border-bottom: 1px dotted var(--line-2);
  gap: 12px;
}
.credits-row-role { color: var(--fg); flex-shrink: 0; }
.credits-row-name { color: var(--fg-muted); text-align: right; }
.credits-client {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg);
  line-height: 1.55;
}

/* Description (à droite, prend toute la largeur restante) */
.project-body p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg);
  margin-bottom: 22px;
}
.project-body p:first-child {
  color: var(--fg);
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.project-body p:not(:first-child) { color: var(--fg-muted); }

/* Gallery */
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
}
.gallery-title {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.gallery-title-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
}
.gallery-title-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -.015em;
}
.gallery-count {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 16/9;
  background:
    repeating-linear-gradient(135deg, rgba(237,233,223,.025) 0 1px, transparent 1px 8px),
    var(--bg-3);
  border: 1px solid var(--line);
  overflow: hidden;
}
.gallery-item.has-image { background: var(--bg); border-color: transparent; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item img.loaded { opacity: 1; }
.gallery-item-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .25em;
  color: var(--fg-dim);
  text-transform: uppercase;
  pointer-events: none;
}
.gallery-item.has-image .gallery-item-label { display: none; }
.gallery-item-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--fg);
  text-transform: uppercase;
}
.gallery-item-year {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--fg);
}

/* ═══════════════════════════════════════════════════════════════
   PAGE 04 — SERVICES
   ═══════════════════════════════════════════════════════════════ */
.page-services {
  padding: calc(var(--hud-h) + 48px) var(--pad-x) 80px;
}
.services-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 72px;
}
.services-header-left { display: flex; align-items: baseline; gap: 32px; flex-wrap: wrap; }
.services-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 7vw, 120px);
  letter-spacing: -.025em;
  line-height: .9;
}
.services-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: right;
  line-height: 2;
}
.services-meta div:last-child { color: var(--fg-dim); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.svc-card {
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: var(--bg-card);
  transition: background .25s, transform .25s, box-shadow .25s;
}
.svc-card:hover {
  background: #1a1611;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
}

.svc-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.svc-card-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: .14em;
}
.svc-card-code {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--gold);
  padding: 3px 8px;
  border: 1px solid var(--gold);
}
.svc-card-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  color: var(--fg);
}
.svc-card-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.svc-card-bullets {
  margin-bottom: 28px;
  flex: 1;
}
.svc-card-bullets li {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  padding: 5px 0;
}
.svc-card-bullets li::before {
  content: '+ ';
}
.svc-card-bullets li span { color: var(--fg); }
.svc-card-price {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.svc-card-price-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.svc-card-price-val {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: -.005em;
}

/* Service detail */
.page-service {
  padding: calc(var(--hud-h) + 28px) var(--pad-x) 80px;
}
.service-hero { margin-bottom: 96px; }
.service-hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(64px, 9vw, 160px);
  letter-spacing: -.025em;
  line-height: .92;
  margin-bottom: 56px;
  max-width: 18ch;
}
.service-hero-bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: start;
}
.service-price-box {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  border: 1px solid var(--gold);
}
.service-price-box-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.service-price-box-val {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: -.005em;
}
.service-hero-desc {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 60ch;
  padding-top: 8px;
}

.service-section {
  padding: 80px 0;
}
.service-section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 16px;
}
.service-section-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 40px;
  max-width: 50ch;
}

.detail-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg);
  max-width: 70ch;
}

.included-grid, .process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.included-item, .process-item {
  padding: 28px 24px;
  background: var(--bg-card);
}
.included-num, .process-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: 12px;
}
.process-step-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.included-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  color: var(--fg);
  letter-spacing: -.005em;
}
.process-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--fg);
  letter-spacing: -.005em;
  margin-bottom: 12px;
}
.process-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}

.service-cta {
  padding: 110px 0 90px;
  text-align: center;
}
.service-cta-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -.02em;
  margin-bottom: 40px;
}
.service-cta-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.service-cta-buttons {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.others-services {
  padding: 64px 0 0;
}
.others-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.others-card {
  padding: 26px 22px;
  background: var(--bg-card);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.others-card:hover { background: #1a1611; transform: translateY(-2px); }
.others-card-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: .14em;
  margin-bottom: 16px;
}
.others-card-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--fg);
  letter-spacing: -.005em;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE 05 — KIT
   ═══════════════════════════════════════════════════════════════ */
.page-kit {
  padding: calc(var(--hud-h) + 48px) var(--pad-x) 80px;
}
.kit-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 72px;
}
.kit-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 7vw, 120px);
  letter-spacing: -.025em;
  line-height: .9;
}
.kit-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: right;
  line-height: 2;
}

.kit-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  min-height: 60vh;
}
.kit-categories { border-top: 1px solid var(--line); }
.kit-cat {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 16px;
  border-bottom: 1px solid var(--line);
  border-left: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, border-left-color .25s;
}
.kit-cat:hover { background: rgba(237,233,223,.02); }
.kit-cat.active {
  background: linear-gradient(90deg, rgba(212,165,58,.06), transparent);
  border-left-color: var(--gold);
}
.kit-cat-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .12em;
}
.kit-cat-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--fg);
  letter-spacing: -.01em;
}
.kit-cat-count {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.kit-detail {
  background: var(--bg-card);
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.kit-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.kit-detail-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  color: var(--fg);
  letter-spacing: -.015em;
}
.kit-detail-status {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.kit-detail-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s infinite;
}
.kit-items { flex: 1; }
.kit-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dotted var(--line);
  animation: fadeUp .4s cubic-bezier(.22,.61,.36,1);
}
.kit-item-name {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg);
}
.kit-item-spec {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--fg-muted);
  text-align: right;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ═══════════════════════════════════════════════════════════════
   PAGE 06 — CONTACT
   ═══════════════════════════════════════════════════════════════ */
.page-contact {
  padding: calc(var(--hud-h) + 48px) var(--pad-x) 80px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-left {}
.contact-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.contact-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 7vw, 130px);
  letter-spacing: -.025em;
  line-height: .94;
  margin-bottom: 56px;
}
.contact-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.contact-info {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}
.contact-info-val {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--fg);
  line-height: 1.5;
}
.contact-info-val a:hover { color: var(--gold); }

/* Form */
.form-card {
  background: var(--bg-card);
  padding: 40px;
}
.form-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.form-card-id {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--gold);
}
.form-card-req {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--fg-dim);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-2);
  padding: 10px 0;
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-bottom-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--fg-dim); }
.form-textarea { min-height: 110px; resize: vertical; }
.form-select { -webkit-appearance: none; appearance: none; cursor: pointer; padding-right: 20px; background-image: linear-gradient(45deg, transparent 50%, var(--fg-muted) 50%), linear-gradient(135deg, var(--fg-muted) 50%, transparent 50%); background-position: calc(100% - 10px) center, calc(100% - 5px) center; background-size: 5px 5px; background-repeat: no-repeat; }
.form-select option { background: var(--bg-2); color: var(--fg); }

.form-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.form-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  background: transparent;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.form-chip:hover { color: var(--fg); border-color: var(--line-3); }
.form-chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

.form-submit {
  margin-top: 28px;
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.form-submit:hover { background: var(--gold-bright); }
.form-submit:disabled { opacity: .5; cursor: wait; }

.form-success {
  display: none;
  text-align: center;
  padding: 60px 30px;
  border: 1px solid var(--gold);
  background: rgba(212,165,58,.04);
}
.form-success.show { display: block; }
.form-success-icon {
  font-family: var(--font-mono);
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 16px;
}
.form-success-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}
.form-success-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-gold, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 24px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--line-3);
}
.btn-outline:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 2;
  padding: 90px var(--pad-x) 32px;
  background: #0D0B08;
  margin-top: 100px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 64px;
  margin-bottom: 28px;
}
.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 22px;
}
.footer-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 38ch;
}
.footer-tag .gold-italic {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
}

.footer-col-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 18px;
}
.footer-col a, .footer-col div {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg);
  margin-bottom: 10px;
  cursor: pointer;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-col .static { cursor: default; color: var(--fg-muted); }

.footer-strip {
  padding-top: 28px;
  border-top: 1px solid var(--line-2);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.footer-strip > div:nth-child(2) { text-align: center; }
.footer-strip > div:nth-child(3) { text-align: right; color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .archive-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .others-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .kit-grid { grid-template-columns: 1fr 1.2fr; }
  /* Sur tablette : credits + stats côte à côte sur une ligne, description en dessous pleine largeur */
  .project-body-grid {
    grid-template-columns: 1fr 200px;
    grid-template-areas:
      "credits stats"
      "body    body";
    gap: 48px;
  }
  .project-credits { grid-area: credits; }
  .project-stats   { grid-area: stats; }
  .project-body    { grid-area: body; }
  .about-grid { gap: 56px; }
}

@media (max-width: 768px) {
  .project-body-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "credits"
      "body"
      "stats";
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .hud-center { display: none; }
  .hud-time { display: none; }
  .brief-btn { display: none; }
  .mobile-menu-btn { display: flex; }
  .hud { grid-template-columns: 1fr auto; }
  .hud-right { gap: 12px; }

  /* Home */
  .hero-logo { gap: 14px; }
  .hero-scroll { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-portrait { max-width: 100%; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Archive */
  .archive-header { grid-template-columns: 1fr; }
  .archive-meta { text-align: left; }
  .archive-grid { grid-template-columns: 1fr; gap: 24px; }
  .filter-label { width: 100%; margin-bottom: 4px; }

  /* Project detail */
  .gallery-grid { grid-template-columns: 1fr; }

  /* Services */
  .services-header { grid-template-columns: 1fr; }
  .services-meta { text-align: left; }
  .services-grid { grid-template-columns: 1fr; }
  .included-grid, .process-grid { grid-template-columns: 1fr 1fr; }
  .others-grid { grid-template-columns: 1fr 1fr; }
  .service-hero-bottom { grid-template-columns: 1fr; gap: 32px; }

  /* Kit */
  .kit-header { grid-template-columns: 1fr; }
  .kit-meta { text-align: left; }
  .kit-grid { grid-template-columns: 1fr; }
  .kit-detail { padding: 24px 20px; }
  .kit-cat-name { font-size: 20px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 24px 20px; }
  .form-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-strip { grid-template-columns: 1fr; gap: 8px; text-align: left; }
  .footer-strip > div:nth-child(2),
  .footer-strip > div:nth-child(3) { text-align: left; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .included-grid, .process-grid { grid-template-columns: 1fr; }
  .others-grid { grid-template-columns: 1fr; }
}
