/* ══ TOKENS ══ */
:root {
  --bg: #08111b;
  --panel: #0d1824;
  --border: rgba(193, 211, 229, 0.12);
  --border-gold: rgba(196, 160, 82, 0.3);
  --text: #eef4fb;
  --muted: #8ea3bc;
  --accent: #c4a052;
  --accent-2: #e2bc72;
  --accent-3: #f5dfa0;
  --radius: 20px;
  --shadow: 0 20px 60px rgba(2, 8, 16, 0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ══ ORBES AMBIANTES ══ */
body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
}

body::before {
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(196,160,82,.07) 0%, transparent 70%);
  top: -120px;
  left: -120px;
  animation: orbA 20s ease-in-out infinite alternate;
}

body::after {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(80,120,200,.05) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
  animation: orbB 24s ease-in-out infinite alternate;
}

@keyframes orbA {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(100px, 70px) scale(1.1); }
  66%  { transform: translate(50px, 140px) scale(0.92); }
  100% { transform: translate(180px, 30px) scale(1.08); }
}

@keyframes orbB {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-80px, -50px) scale(1.15); }
  66%  { transform: translate(-30px, -120px) scale(0.88); }
  100% { transform: translate(-140px, -20px) scale(1.05); }
}

/* ══ GRAIN ══ */
.grain {
  position: fixed;
  inset: -200%;
  width: 400%;
  height: 400%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .03;
  pointer-events: none;
  z-index: 9999;
  animation: grainShift 8s steps(1) infinite;
}

@keyframes grainShift {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-3%,-4%); }
  40%  { transform: translate(3%,2%); }
  60%  { transform: translate(-2%,4%); }
  80%  { transform: translate(4%,-2%); }
  100% { transform: translate(0,0); }
}

/* ══ SCROLL BAR ══ */
.scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  z-index: 10000;
  transition: width .1s linear;
}

/* ══ CURSOR GLOW ══ */
.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,160,82,.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  filter: blur(20px);
  transition: left .12s ease, top .12s ease;
}

/* ══ PAGE SHELL ══ */
.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}

/* ══ HEADER ══ */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 26px;
  margin-top: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(7,16,26,.78);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  position: sticky;
  top: 12px;
  z-index: 100;
  box-shadow: var(--shadow);
  transition: padding .3s, background .3s;
}

.site-header.scrolled {
  padding: 13px 26px;
  background: rgba(7,16,26,.92);
}

/* ══ BRAND ══ */
.brand { text-decoration: none; color: inherit; flex-shrink: 0; }

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  text-transform: uppercase;
}

.brand-name {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.8rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #f4f7fb;
}

.brand-subline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
}

.brand-subtitle {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.72rem, 0.95vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.52em;
  color: #edf3fa;
  padding-left: 0.52em;
}

.brand-line {
  flex: 0 0 44px;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: #edf3fa;
}

/* ══ NAV ══ */
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  text-decoration: none;
  font-size: .87rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
  transition: color .2s;
}

.site-nav a:hover { color: var(--text); }

/* ══ HAMBURGER ══ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══ HERO ══ */
.hero {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 24px;
  padding: 52px 8px 28px;
  align-items: stretch;
  min-height: calc(100vh - 160px);
  position: relative;
  isolation: isolate;
  margin-top: 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background:
    linear-gradient(100deg, rgba(6,14,23,.92) 0%, rgba(6,14,23,.65) 38%, rgba(6,14,23,.5) 60%, rgba(6,14,23,.82) 100%),
    url("./place-francois-1er.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: radial-gradient(ellipse 50% 40% at 30% 30%, rgba(196,160,82,.05), transparent 55%);
  z-index: -1;
}

.hero-copy {
  padding: 32px 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-end;
}

.eyebrow {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: .97;
  font-weight: 700;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  color: var(--text);
  max-width: 10ch;
}

h1 em {
  font-style: italic;
  color: var(--accent-2);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  max-width: 14ch;
  line-height: 1.05;
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.hero-text {
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(238,244,251,.75);
  max-width: 46ch;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card {
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid var(--border-gold);
  background: rgba(8,17,27,.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
  align-self: start;
}

.card-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card li {
  font-size: .9rem;
  color: rgba(238,244,251,.7);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* ══ MARQUEE ══ */
.marquee-band {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  margin-top: 28px;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  width: max-content;
}

.marquee-track .dot { color: var(--accent); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══ NUMBERS STRIP ══ */
.numbers-strip {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 48px;
  background: rgba(13,24,36,.5);
}

.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.number-item strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.number-item span {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.number-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ══ SECTION ══ */
.section { margin-top: 80px; }

.section-heading { margin-bottom: 44px; }

.section-heading h2 { margin-top: 12px; }

/* ══ INTRO GRID (cabinet) ══ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.intro-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.intro-panel p {
  font-size: .98rem;
  line-height: 1.76;
  color: var(--muted);
}

/* ══ BENTO GRID (services) ══ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  background: rgba(13,24,36,.5);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .4s;
}

.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.service-card:hover::before { opacity: 1; }

.card-num {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--accent);
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.1;
}

.service-card p {
  font-size: .92rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.card-tag {
  display: inline-block;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  padding: 4px 12px;
  align-self: flex-start;
  margin-top: 4px;
}

/* ══ CITATION ══ */
.quote-section {
  margin-top: 80px;
  padding: 80px 60px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(11,22,35,.95) 0%, rgba(7,14,24,.95) 100%);
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 50% 0%, rgba(196,160,82,.06), transparent 70%);
  pointer-events: none;
}

.qmark {
  font-family: "Cormorant Garamond", serif;
  font-size: 10rem;
  line-height: .7;
  color: rgba(196,160,82,.1);
  position: absolute;
  top: 24px;
  left: 44px;
  pointer-events: none;
  font-style: normal;
}

.quote-section p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  font-weight: 600;
  line-height: 1.22;
  color: var(--text);
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}

.quote-section p em {
  font-style: italic;
  color: var(--accent-2);
}

.quote-section cite {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
  position: relative;
  z-index: 1;
}

/* ══ PILLARS ══ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pillar {
  padding: 36px 30px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}

.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  transform: scaleX(0);
  transition: transform .4s ease;
  transform-origin: left;
}

.pillar:hover::before { transform: scaleX(1); }
.pillar:hover { border-color: var(--border-gold); }

.pillar-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(196,160,82,.08);
  position: absolute;
  top: -4px;
  right: 14px;
  pointer-events: none;
}

.pillar strong {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.pillar p {
  font-size: .91rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ══ CONTACT ══ */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  margin: 16px 0 20px;
  line-height: 1.05;
}

.contact-copy p {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 28px;
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(13,24,36,.4);
}

.contact-card p {
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.contact-card strong { color: var(--text); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  background: rgba(11,22,35,.75);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(142,163,188,.45); }

.form-status {
  font-size: .87rem;
  min-height: 1.2em;
  color: var(--muted);
}

.form-status.success { color: #6fcf97; }
.form-status.error { color: #eb5757; }

/* ══ BUTTONS ══ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: .87rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .2s, background .2s, box-shadow .2s;
  white-space: nowrap;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #080f18;
  box-shadow: 0 8px 24px rgba(196,160,82,.2);
}

.button-primary:hover { box-shadow: 0 12px 32px rgba(196,160,82,.35); }

.button-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.button-ghost:hover { border-color: rgba(193,211,229,.28); }

/* ══ FOOTER ══ */
.site-footer {
  margin-top: 100px;
  padding: 30px 0 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer p {
  font-size: .82rem;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.footer-nav a:hover { color: var(--text); }

/* ══ REVEAL ══ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal[data-delay="1"] { transition-delay: .07s; }
.reveal[data-delay="2"] { transition-delay: .14s; }
.reveal[data-delay="3"] { transition-delay: .21s; }
.reveal[data-delay="4"] { transition-delay: .28s; }

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══ PROFILE PAGE ══ */
.profile-hero {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
  padding: 64px 0 48px;
}

.profile-copy h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 18px;
}

.profile-role {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 18px;
  line-height: 1.5;
}

.hero-text, .trust-line {
  font-size: .98rem;
  line-height: 1.76;
  color: var(--muted);
  margin-bottom: 14px;
}

.profile-card {
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 24px 22px;
  background: rgba(11,22,35,.6);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile-photo {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
}

.profile-card .card-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}

.profile-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-card li {
  font-size: .88rem;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.profile-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.intro-panel .button { margin-top: 8px; }

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2px;
}

.timeline-item {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .3s;
}

.timeline-item:hover { border-color: var(--border-gold); }

.timeline-period {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

.timeline-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}

.timeline-item p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.profile-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 52px 44px;
  background: rgba(11,22,35,.5);
}

.spotlight-copy h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 1.1;
  margin: 12px 0 18px;
}

.spotlight-copy p {
  font-size: .96rem;
  line-height: 1.75;
  color: var(--muted);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.values-list > div {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.values-list > div:last-child { border-bottom: none; }

.values-list strong {
  display: block;
  font-size: .98rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.values-list p {
  font-size: .88rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.source-note {
  text-align: center;
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.source-note p {
  font-size: .88rem;
  color: var(--muted);
  max-width: 58ch;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-card { max-width: 420px; }
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-section { grid-template-columns: 1fr; gap: 40px; }
  .profile-hero { grid-template-columns: 1fr 280px; gap: 36px; }
  .profile-spotlight { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .page-shell { width: calc(100% - 24px); }

  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: rgba(7,16,26,.97);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
    gap: 16px;
    z-index: 200;
  }

  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero { padding: 36px 4px 20px; }
  .hero-copy { padding: 24px 18px; }
  .numbers-strip { flex-direction: column; gap: 28px; padding: 32px 24px; }
  .number-divider { width: 48px; height: 1px; }
  .cards-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .profile-hero { grid-template-columns: 1fr; }
  .profile-card { max-width: 340px; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .site-footer { flex-direction: column; align-items: flex-start; gap: 14px; }
  .quote-section { padding: 52px 26px; }
  .qmark { font-size: 7rem; }
}
