/* ─── FONT ───────────────────────────────────────────────────── */
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --dark:         #0f0f1a;
  --red:          #e8365d;
  --red-dim:      rgba(232, 54, 93, 0.14);
  --red-glow:     rgba(232, 54, 93, 0.28);
  --red-line:     rgba(232, 54, 93, 0.30);
  --white:        #ffffff;
  --pill-text:    rgba(255, 255, 255, 0.8);
  --glass-bg:     rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}

/* cursor: none only when JS is active */
.js body { cursor: none; }

a { color: inherit; text-decoration: none; }

/* ─── NOISE OVERLAY ──────────────────────────────────────────── */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─── AURORA BACKGROUND ──────────────────────────────────────── */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.aurora-bg::before,
.aurora-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

.aurora-bg::before {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232, 54, 93, 0.18) 0%, rgba(107, 15, 58, 0.12) 50%, transparent 70%);
  top: -250px;
  left: -150px;
  animation: aurora-a 16s ease-in-out infinite alternate;
}

.aurora-bg::after {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(61, 26, 92, 0.22) 0%, rgba(26, 10, 61, 0.14) 50%, transparent 70%);
  bottom: -200px;
  right: -100px;
  animation: aurora-b 20s ease-in-out infinite alternate;
}

@keyframes aurora-a {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(80px, -60px) scale(1.15); }
  100% { transform: translate(-50px, 80px) scale(0.9); }
}

@keyframes aurora-b {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-70px, 50px) scale(1.1); }
  100% { transform: translate(60px, -80px) scale(0.95); }
}

/* ─── CUSTOM CURSOR (injected by JS) ────────────────────────── */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out);
  mix-blend-mode: difference;
  will-change: transform;
}

.cursor.is-expanded {
  width: 40px;
  height: 40px;
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(232, 54, 93, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
}

/* ─── SCREEN LAYOUT ──────────────────────────────────────────── */
.card-screen {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
  max-width: 680px;
  width: 100%;
}

/* ─── REVEAL ANIMATION ───────────────────────────────────────── */
.reveal-line {
  overflow: hidden;
  display: block;
}

.reveal-line span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}

.reveal-line.is-revealed span {
  animation: line-reveal 0.9s var(--ease-out) forwards;
}

@keyframes line-reveal {
  to { transform: translateY(0); opacity: 1; }
}

/* ─── HEADER ─────────────────────────────────────────────────── */
.card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.card-label {
  font-size: clamp(0.6rem, 1.5vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
}

.card-name {
  font-size: clamp(3.5rem, 14vw, 9rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--white);
}

.name-word.accent {
  color: var(--red);
  position: relative;
  text-shadow:
    0 0 40px var(--red-glow),
    0 0 80px var(--red-dim);
}

.card-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  opacity: 0.5;
}

/* ─── DIVIDER ─────────────────────────────────────────────────── */
.card-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.6s, transform 0.8s var(--ease-out);
}

.card-divider.is-visible {
  opacity: 1;
  transform: scaleX(1);
}

/* ─── CONTACTS ────────────────────────────────────────────────── */
.card-contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out) 1s, transform 0.7s var(--ease-out) 1s;
}

.card-contacts.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--pill-text);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background-color 0.45s var(--ease-out),
              border-color 0.45s var(--ease-out),
              color 0.45s var(--ease-out),
              box-shadow 0.45s var(--ease-out),
              transform 0.45s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.contact-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.contact-pill:hover {
  background: var(--red-dim);
  border-color: var(--red-line);
  color: var(--white);
  box-shadow: 0 0 32px var(--red-glow), inset 0 0 20px var(--red-dim);
  transform: translateY(-2px);
}

.pill-icon {
  color: var(--red);
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px var(--red-glow));
}

.pill-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.pill-text {
  font-feature-settings: 'tnum';
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 30rem) {
  .contact-pill { padding: 0.875rem 1.25rem; font-size: 0.8rem; }
  .card-contacts { max-width: 100%; }
}

@media (pointer: coarse) {
  .cursor,
  .cursor-follower { display: none; }
}

/* ─── REDUCED MOTION ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .aurora-bg::before,
  .aurora-bg::after    { animation: none; }
  .reveal-line span    { transition: none; }
  .card-divider,
  .card-contacts       { transition: none; }
  .contact-pill        { transition: none; }
}

/* ─── BUDGET BUTTON ──────────────────────────────────────────── */
.budget-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  background: transparent;
  border: 1px solid var(--red-line);
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--red);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition:
    background 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    color 0.4s var(--ease-out),
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

.budget-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.budget-btn:hover {
  background: var(--red-dim);
  box-shadow: 0 0 28px var(--red-glow);
  color: var(--white);
}

.budget-btn-arrow {
  transition: transform 0.35s var(--ease-out);
}

.budget-btn:hover .budget-btn-arrow {
  transform: translateX(4px);
}

/* ─── BUDGET OVERLAY ─────────────────────────────────────────── */
.budget-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 15, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}

.budget-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ─── BUDGET MODAL ───────────────────────────────────────────── */
.budget-modal {
  position: relative;
  background: rgba(18, 18, 32, 0.96);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s var(--ease-out);
  overflow: hidden;
}

.budget-overlay.is-open .budget-modal {
  transform: translateY(0) scale(1);
}

.budget-modal-body {
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 2.5rem 2rem 2rem;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--red-line) transparent;
}

.budget-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}

.budget-close:hover {
  color: var(--white);
  background: var(--red-dim);
  border-color: var(--red-line);
}

/* ─── STEP LABEL ─────────────────────────────────────────────── */
.bstep-num {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.bstep-title {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.75rem;
  line-height: 1.25;
}

/* ─── BACK BUTTON ────────────────────────────────────────────── */
.bstep-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-family: inherit;
  font-size: 0.78rem;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}

.bstep-back:hover { color: var(--white); }

/* ─── PROJECT CARDS GRID ─────────────────────────────────────── */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.75rem;
}

.project-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.25rem 0.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  cursor: pointer;
  text-align: center;
  transition:
    background 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    transform 0.3s var(--ease-out);
}

.project-card:hover {
  background: var(--red-dim);
  border-color: var(--red-line);
  box-shadow: 0 0 24px var(--red-glow);
  transform: translateY(-2px);
}

.project-card-icon { font-size: 1.75rem; line-height: 1; }

.project-card-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
}

/* ─── RADIO GROUP ────────────────────────────────────────────── */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.radio-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.radio-label:hover {
  background: var(--red-dim);
  border-color: var(--red-line);
}

.radio-label.is-selected {
  background: var(--red-dim);
  border-color: var(--red);
  box-shadow: 0 0 18px var(--red-glow);
}

.radio-label input[type="radio"] { display: none; }

.radio-label-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.radio-price {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  font-feature-settings: 'tnum';
}

/* ─── CHECKBOX GROUP ─────────────────────────────────────────── */
.checkbox-section-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.75rem;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}

.checkbox-label:hover {
  background: var(--red-dim);
  border-color: var(--red-line);
}

.checkbox-label.is-checked {
  background: var(--red-dim);
  border-color: var(--red-line);
}

.checkbox-label input[type="checkbox"] { display: none; }

.checkbox-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-box {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.checkbox-label.is-checked .checkbox-box {
  background: var(--red);
  border-color: var(--red);
}

.checkbox-box::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 0.15s;
}

.checkbox-label.is-checked .checkbox-box::after { opacity: 1; }

.checkbox-label-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.checkbox-price {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(232,54,93,0.7);
  font-feature-settings: 'tnum';
}

.checkbox-label.is-checked .checkbox-price { color: var(--red); }

/* ─── LIVE PRICE DISPLAY ─────────────────────────────────────── */
.price-live {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--red-dim);
  border: 1px solid var(--red-line);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.price-live-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.price-live-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  font-feature-settings: 'tnum';
  transition: transform 0.2s var(--ease-out);
}

.price-live-value.is-bumped {
  transform: scale(1.06);
}

/* ─── NEXT BUTTON ────────────────────────────────────────────── */
.bstep-next {
  width: 100%;
  padding: 0.95rem;
  background: var(--red);
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out), opacity 0.3s;
}

.bstep-next:hover {
  box-shadow: 0 0 32px var(--red-glow);
  transform: translateY(-1px);
}

.bstep-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ─── FINAL STEP ─────────────────────────────────────────────── */
.final-budget-box {
  padding: 1.75rem;
  background: var(--red-dim);
  border: 1px solid var(--red-line);
  border-radius: 16px;
  text-align: center;
  margin-bottom: 1.5rem;
}

.final-budget-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}

.final-budget-range {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--white);
  font-feature-settings: 'tnum';
}

.similar-block {
  margin-bottom: 1.5rem;
}

.similar-block-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.75rem;
}

.similar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s, border-color 0.25s;
  margin-bottom: 0.45rem;
}

.similar-item:hover {
  background: var(--red-dim);
  border-color: var(--red-line);
}

.similar-item-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.similar-item-price {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
}

.final-cta-box {
  text-align: center;
  padding-top: 0.5rem;
}

.final-cta-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.final-cta-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--red);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.final-cta-btn:hover {
  box-shadow: 0 0 32px var(--red-glow);
  transform: translateY(-2px);
}

.bstep-hint {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  margin-top: -0.25rem;
  margin-bottom: 1.25rem;
}

.budget-disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.55;
  text-align: center;
  margin-top: 1.25rem;
  padding: 0 0.5rem;
}

/* ─── BUDGET RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 30rem) {
  .budget-modal-body { padding: 2rem 1.25rem 1.5rem; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .final-budget-range { font-size: 1.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  .budget-overlay,
  .budget-modal,
  .budget-btn,
  .price-live-value { transition: none; }
}

/* ─── MENTIONS LÉGALES — body scroll ────────────────────────── */
body.is-scrollable {
  overflow-y: auto;
  cursor: auto;
}

body.is-scrollable.js { cursor: auto; }

/* ─── MENTIONS LÉGALES — layout ─────────────────────────────── */
.ml-screen {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  padding: 5rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ml-wrap {
  width: 100%;
  max-width: 660px;
}

/* ─── back nav ───────────────────────────────────────────────── */
.ml-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding: 0.65rem 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out),
              color 0.3s var(--ease-out);
}

.ml-back:hover {
  background: var(--red-dim);
  border-color: var(--red-line);
  color: var(--white);
}

/* ─── page title ─────────────────────────────────────────────── */
.ml-title-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.ml-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1rem;
}

.ml-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  margin-bottom: 3.5rem;
}

/* ─── sections ───────────────────────────────────────────────── */
.ml-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.ml-section:last-of-type {
  border-bottom: none;
  margin-bottom: 3rem;
}

.ml-section-title {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.ml-section-body {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
}

.ml-section-body strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.ml-section-body a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid var(--red-line);
  transition: color 0.2s, border-color 0.2s;
}

.ml-section-body a:hover {
  color: var(--white);
  border-color: var(--white);
}

.ml-section-body p + p { margin-top: 0.75rem; }
.ml-section-body p:first-child { margin-top: 0; }

.ml-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  flex-wrap: wrap;
}

.ml-row-label {
  color: rgba(255,255,255,0.3);
  min-width: 160px;
  flex-shrink: 0;
}

.ml-name-subtle {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* ─── bottom signature ───────────────────────────────────────── */
.ml-signature {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.15);
  padding-bottom: 2rem;
}

/* ─── ML responsive ──────────────────────────────────────────── */
@media (max-width: 30rem) {
  .ml-screen { padding: 3.5rem 1.25rem 3rem; }
  .ml-row { flex-direction: column; gap: 0; }
  .ml-row-label { min-width: auto; }
}
