/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #141414;
  color: #F5F0E8;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
/* ═══════════════════════════════════════════════════════════════
   GRAIN OVERLAY — load-bearing, do not remove.
   Provides tactile depth that prevents flat digital appearance.
   Opacity tuned to 0.07 for dark artisan aesthetic.
═══════════════════════════════════════════════════════════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.07;
  mix-blend-mode: overlay;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── VARIABLES ─────────────────────────────────────────────── */
:root {
  --gold: #D4A853;
  --gold-light: rgba(212,168,83,0.12);
  --gold-border: rgba(212,168,83,0.2);
  --gold-border-strong: rgba(212,168,83,0.45);
  --bg: #141414;
  --bg-alt: #181818;
  --bg-card: #1E1E1E;
  --text: #F5F0E8;
  --muted: #888880;
  --border: rgba(255,255,255,0.06);
  --text-muted: #888880;
  --text-primary: #F5F0E8;
  /* Motion toggle — multiply durations by this var. Set to 0 by prefers-reduced-motion. */
  --motion-ok: 1;
}

/* ─── ANIMATIONS ────────────────────────────────────────────── */
@keyframes shimmer {
  0%   { transform: translateX(-100%) skewX(-12deg); }
  100% { transform: translateX(250%) skewX(-12deg); }
}
@keyframes blur-fade {
  from { opacity: 0; filter: blur(8px); transform: translateY(16px); }
  to   { opacity: 1; filter: blur(0);  transform: translateY(0); }
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── REVEAL SCROLL ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity calc(var(--motion-ok) * .7s) ease, transform calc(var(--motion-ok) * .7s) ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── NAVIGATION ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5vw;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(20,20,20,0.0);
  backdrop-filter: blur(0px);
  transition: background .4s ease, backdrop-filter .4s ease, border-bottom .4s ease;
}
.nav.scrolled {
  background: rgba(20,20,20,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
}
.nav-logo {
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}
.nav-logo .word-studio {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--text);
}
.nav-logo .word-sacha {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color .25s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: .55rem 1.3rem;
  border: 1px solid var(--gold-border-strong);
  color: var(--gold);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 3px;
  transition: background .25s, color .25s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold);
  color: #111;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(14,14,14,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-cta {
  margin-top: 1rem;
  padding: .8rem 2.5rem;
  border: 1px solid var(--gold-border-strong);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  border-radius: 3px;
}
.mobile-menu .mobile-cta:hover {
  background: var(--gold);
  color: #111;
}

/* ─── SECTION UTILITY ───────────────────────────────────────── */
.section { padding: 120px 5vw; }
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-tag::before { content: ''; }
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text);
}
.container { max-width: 1200px; margin: 0 auto; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  background: var(--gold);
  color: #111;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: opacity .25s, transform .2s;
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: translateX(-100%) skewX(-12deg);
  animation: shimmer 3s infinite 1s;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  background: transparent;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 3px;
  border: 1px solid var(--gold-border-strong);
  cursor: pointer;
  transition: background .25s, color .25s, transform .2s;
}
.btn-outline:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-1px);
}
.btn-small {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.2rem;
  font-size: .85rem;
  font-weight: 500;
  border-radius: 3px;
  cursor: pointer;
  transition: all .25s;
}
.btn-small-outline {
  border: 1px solid var(--gold-border);
  color: var(--gold);
  background: transparent;
}
.btn-small-outline:hover {
  border-color: var(--gold);
  background: var(--gold-light);
}
.btn-small-solid {
  background: var(--gold);
  color: #111;
  border: 1px solid var(--gold);
  font-weight: 700;
}
.btn-small-solid:hover { opacity: .88; }

/* ─────────────────────────────────────────────────────────────
   1. HERO
─────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 5vw 100px;
  overflow: hidden;
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: blur-fade .8s ease forwards .2s;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold-border-strong);
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: blur-fade .9s ease forwards .45s;
}
.hero-title .highlight { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  opacity: 0;
  animation: blur-fade .9s ease forwards .7s;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4.5rem;
  opacity: 0;
  animation: blur-fade .8s ease forwards .9s;
}
.hero-anchor {
  font-size: 0.78rem;
  color: rgba(136,136,128,0.7);
  letter-spacing: 0.06em;
  margin-top: -3rem;
  margin-bottom: 0;
  opacity: 0;
  animation: blur-fade .8s ease forwards 1.1s;
}
.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: blur-fade .8s ease forwards 1.1s;
}
.hero-badge {
  font-size: .8rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.hero-badge::before {
  content: '✦ ';
  color: var(--gold);
  font-size: .65rem;
}
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: fade-in .6s ease forwards 1.5s;
}
.scroll-indicator span {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite 1.8s;
}

/* ─────────────────────────────────────────────────────────────
   2. À PROPOS
─────────────────────────────────────────────────────────────── */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 6rem;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
}
.about-photo-frame {
  position: relative;
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: 4px;
  overflow: hidden;
}
.about-photo-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  filter: sepia(0.15) contrast(1.05);
  display: block;
}
.about-photo-placeholder {
  width: 100%;
  height: 460px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--muted);
}
.about-photo-placeholder svg {
  width: 56px;
  height: 56px;
  opacity: .3;
}
.about-photo-placeholder span { font-size: .85rem; }
.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border-strong);
  border-radius: 4px;
  padding: .7rem 1.1rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.about-badge::before { content: '✦ '; }
.about-text-tag { margin-bottom: 1rem; }
.about-title {
  margin-bottom: 1.8rem;
}
.about-para {
  font-size: 1rem;
  font-weight: 300;
  color: #BBB5A8;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.about-stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.about-stat-check {
  font-size: 1.25rem;
  opacity: .7;
}
.about-stat-label {
  font-size: .8rem;
  color: var(--muted);
  margin-top: .2rem;
  line-height: 1.4;
}

/* ─────────────────────────────────────────────────────────────
   3. SERVICES
─────────────────────────────────────────────────────────────── */
.services { background: #181818; }
.services-header {
  text-align: center;
  margin-bottom: 4rem;
}
.services-header .section-title { margin-top: .5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, transform .3s;
  position: relative;
}
.service-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}
.service-card.featured {
  border-color: var(--gold-border-strong);
  background: linear-gradient(135deg, #1f1d17 0%, #1c1c1c 100%);
}
.service-card.featured:hover {
  border-color: var(--gold);
}
.service-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #111;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 20px;
  white-space: nowrap;
}
.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.5rem;
  color: var(--gold);
  opacity: .9;
}
.service-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .4rem;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.price-old {
  font-size: 1.05rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 400;
  opacity: 0.55;
}
.price-new { color: var(--gold); }

/* ─── Maintenance forfaits ─────────────────────────────── */
.maintenance-section { }
.maintenance-header { text-align: center; margin-bottom: 2.5rem; }
.maintenance-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.maintenance-intro {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.92rem;
  line-height: 1.55;
}
.maintenance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  max-width: 760px;
  margin: 0 auto;
}
.maintenance-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.8rem 1.6rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.maintenance-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
}
.maintenance-card.highlight {
  border-color: var(--gold-border-strong);
  background: linear-gradient(135deg, #1f1d17 0%, #1c1c1c 100%);
}
.maintenance-badge {
  position: absolute;
  top: -10px;
  right: 1.4rem;
  background: var(--gold);
  color: #141414;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 16px;
}
.maintenance-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
  letter-spacing: 0.01em;
}
.maintenance-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}
.maintenance-price span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 0.15rem;
}
.maintenance-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.maintenance-list li {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.78);
  position: relative;
  padding-left: 1.3rem;
  line-height: 1.5;
}
.maintenance-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}
.maintenance-list li strong { color: var(--text); font-weight: 600; }
.maintenance-cta {
  display: block;
  margin-top: 1.4rem;
  padding: 0.65rem 1rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.maintenance-cta:hover {
  background: var(--gold);
  color: #141414;
}
.maintenance-foot {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}
@media (max-width: 720px) {
  .maintenance-grid { grid-template-columns: 1fr; }
}

/* ─── Launch banner ────────────────────────────────────── */
.launch-banner {
  max-width: 760px;
  margin: 0 auto 3rem;
  padding: 1.3rem 1.8rem;
  background: linear-gradient(90deg, rgba(212,168,83,0.08), rgba(212,168,83,0.04));
  border: 1px solid var(--gold-border-strong);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.launch-banner-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  color: #141414;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.launch-banner-text { flex: 1; min-width: 240px; }
.launch-banner-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.launch-banner-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.launch-banner-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.launch-banner-sub strong { color: var(--gold); font-weight: 600; }
@media (max-width: 540px) {
  .launch-banner { padding: 1.2rem; }
}
.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .6rem;
}
.service-target {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
  line-height: 1.5;
}
.service-list {
  flex: 1;
  margin-bottom: 2rem;
}
.service-list li {
  font-size: .88rem;
  color: #BBB5A8;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.service-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: .7;
}

/* ─────────────────────────────────────────────────────────────
   4. RÉALISATIONS
─────────────────────────────────────────────────────────────── */
.portfolio { background: var(--bg); }
.portfolio-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.portfolio-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  margin-top: .8rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
/* Centrer la 7e carte (orpheline en grille 3 col) */
.browser-frame-center { grid-column: 2; justify-self: center; width: 100%; }
@media (max-width: 1024px) {
  .browser-frame-center { grid-column: auto; }
}

/* Browser mockup */
.browser-frame {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.browser-frame:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border-strong);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.browser-bar {
  background: #2a2a2a;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.browser-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #ffbd2e; }
.browser-dot:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1;
  background: #1a1a1a;
  border-radius: 4px;
  padding: 3px 10px;
  font-size: .7rem;
  color: #555;
  margin-left: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browser-content {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.browser-site-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: .3rem;
  z-index: 1;
}
.browser-site-tag {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .65;
  z-index: 1;
}
.browser-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: opacity .3s;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: #fff;
}
.browser-frame:hover .browser-overlay { opacity: 1; }
.browser-caption {
  padding: 0.9rem 0.2rem 0.2rem;
}
.browser-caption-title {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 0.25rem;
}
.browser-caption-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────
   5. COMMENT ÇA MARCHE
─────────────────────────────────────────────────────────────── */
.process { background: var(--bg); padding: 120px 5vw 100px; }
.process-header {
  text-align: center;
  margin-bottom: 5rem;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.process-line {
  position: absolute;
  top: 2.6rem;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), var(--gold-border), transparent);
  pointer-events: none;
}
.process-step {
  text-align: center;
  padding: 0 2rem;
  position: relative;
}
.process-step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: .18;
  line-height: 1;
  margin-bottom: .8rem;
  user-select: none;
}
.process-step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--gold-border-strong);
}
.process-step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .8rem;
}
.process-step-text {
  font-size: .9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────
   6. TÉMOIGNAGES
─────────────────────────────────────────────────────────────── */
.testimonials { background: var(--bg-alt); }
.journal-section { background: var(--bg-alt); }
.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.journal-grid--centered {
  grid-template-columns: repeat(2, minmax(0, 480px));
  justify-content: center;
}
.journal-entry {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, transform .3s;
}
.journal-entry:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
}
.journal-entry--cta {
  border-style: dashed;
  border-color: rgba(212,168,83,0.3);
}
.journal-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.1rem;
}
.journal-date {
  font-family: 'Syne', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.journal-sector {
  font-size: .72rem;
  color: var(--text-muted);
  opacity: .7;
}
.journal-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: .9rem;
}
.journal-body {
  font-size: .88rem;
  font-weight: 300;
  color: #C5BFB2;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.2rem;
}
.journal-result {
  font-family: 'Syne', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
  padding-top: .9rem;
  border-top: 1px solid var(--border);
}
.testimonial-name {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
}
.testimonial-role {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .1rem;
}

/* ─────────────────────────────────────────────────────────────
   7. CONTACT
─────────────────────────────────────────────────────────────── */
.contact {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #141414 0%, #1a1410 100%);
}
.contact-bg-img {
  display: none;
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.contact-intro {
  font-size: .95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-item-icon svg { width: 18px; height: 18px; }
.contact-item-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: .2rem;
}
.contact-item-value {
  font-size: .92rem;
  color: var(--text);
}
.contact-delay {
  margin-top: 1.5rem;
  font-size: .82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.contact-delay::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.form-group label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: .85rem 1.1rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  outline: none;
  transition: border-color .25s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-border-strong);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888880' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option { background: #222; }
.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* ─────────────────────────────────────────────────────────────
   8. FOOTER
─────────────────────────────────────────────────────────────── */
.footer {
  background: #0e0e0e;
  padding: 72px 5vw 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--gold-border);
}
.footer-brand-logo {
  font-size: 1.4rem;
  margin-bottom: .9rem;
}
.footer-brand-logo .word-studio {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--text);
}
.footer-brand-logo .word-sacha {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--gold);
}
.footer-tagline {
  font-size: .85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}
.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.footer-links a {
  font-size: .86rem;
  color: var(--muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright {
  font-size: .8rem;
  color: var(--muted);
}
.footer-copyright span { color: var(--muted); }
.footer-heart { color: var(--gold); }

/* ─── DIVIDER ───────────────────────────────────────────────── */
.section-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 1.2rem;
  margin-bottom: 0;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-photo-frame img,
  .about-photo-placeholder { height: 340px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem; max-width: 640px; }
  .process-line { display: none; }
  .process-step-num { font-size: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 80px 5vw; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .services-grid { max-width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .about-stats { gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-badges { gap: 1.2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .about-badge { right: 0; bottom: -12px; }
  .section-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
}

/* ─── Stats band ────────────────────────────────────────── */
.stats-band {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 5vw;
}
.stats-grid {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: var(--gold-border);
  opacity: 0.4;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat-micro {
  font-size: 0.76rem;
  color: rgba(136,136,128,0.65);
  line-height: 1.5;
  margin-top: 0.6rem;
  font-style: italic;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .stat-item:nth-child(2)::after { display: none; }
}

/* ─── Comparatif ────────────────────────────────────────── */
.compare-section { padding: 100px 5vw; background: var(--bg-alt); }
.compare-intro {
  max-width: 620px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}
.compare-cards {
  max-width: 1100px;
  margin: 3.5rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}
.compare-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 2rem 1.6rem;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
}
.compare-card.highlight {
  background: linear-gradient(180deg, rgba(212,168,83,0.06), rgba(212,168,83,0.02));
  border: 1px solid var(--gold-border-strong);
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  padding: 2.6rem 1.8rem 2.2rem;
}
.compare-card .compare-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #141414;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
}
.compare-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text);
}
.compare-card.highlight h3 { color: var(--gold); }
.compare-tagline {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1.4rem;
  font-style: italic;
}
.compare-card ul { list-style: none; padding: 0; }
.compare-card li {
  padding: 0.65rem 0 0.65rem 1.4rem;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  line-height: 1.4;
}
.compare-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.compare-card.highlight li::before { background: var(--gold); }
.compare-card li:last-child { border-bottom: none; }
@media (max-width: 880px) {
  .compare-cards { grid-template-columns: 1fr; gap: 1.2rem; }
  .compare-card.highlight { transform: none; order: -1; }
}

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-section { padding: 100px 5vw; background: var(--bg); }
.faq-list {
  max-width: 760px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item:hover { border-color: var(--gold-border); }
.faq-item.open { border-color: var(--gold-border-strong); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: color 0.25s;
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-icon {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, border-color 0.3s, background 0.3s, color 0.3s;
  color: var(--text-muted);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold);
  background: rgba(212,168,83,0.1);
  color: var(--gold);
}
.faq-icon svg { width: 11px; height: 11px; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.4rem;
  font-size: 0.92rem;
  color: rgba(245,240,232,0.72);
  line-height: 1.65;
}
.faq-answer-inner strong { color: var(--gold); font-weight: 600; }

/* ─── Brief Modal ───────────────────────────────────────── */
.brief-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.brief-overlay.open { opacity: 1; visibility: visible; }

.brief-modal {
  background: #1c1c1c;
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 16px;
  width: 100%;
  max-width: 580px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
  transform: translateY(22px) scale(0.97);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(212,168,83,0.25) transparent;
}
.brief-overlay.open .brief-modal { transform: translateY(0) scale(1); }
.brief-modal::-webkit-scrollbar { width: 4px; }
.brief-modal::-webkit-scrollbar-track { background: transparent; }
.brief-modal::-webkit-scrollbar-thumb { background: rgba(212,168,83,0.25); border-radius: 2px; }

.brief-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.brief-close:hover { background: rgba(212,168,83,0.15); color: var(--gold); border-color: rgba(212,168,83,0.3); }
.brief-close svg { width: 13px; height: 13px; }

.brief-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: 20px;
  padding: 0.22rem 0.7rem;
  margin-bottom: 0.9rem;
}
.brief-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.45rem;
}
.brief-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  line-height: 1.55;
}

.brief-form { display: flex; flex-direction: column; gap: 1.2rem; }
.brief-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.brief-field { display: flex; flex-direction: column; gap: 0.38rem; }

.brief-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.brief-required { color: var(--gold); margin-left: 2px; }

.brief-input,
.brief-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  padding: 0.72rem 0.95rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.87rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  resize: vertical;
  box-sizing: border-box;
}
.brief-input::placeholder,
.brief-textarea::placeholder { color: rgba(245,240,232,0.22); }
.brief-input:focus,
.brief-textarea:focus {
  border-color: rgba(212,168,83,0.5);
  background: rgba(212,168,83,0.04);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.07);
}
.brief-textarea { min-height: 88px; }
.brief-textarea-sm { min-height: 70px; }

.brief-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.brief-chip {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.9rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  font-size: 0.82rem;
  font-family: 'DM Sans', sans-serif;
  color: rgba(245,240,232,0.55);
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  user-select: none;
}
.brief-chip input[type="radio"] { display: none; }
.brief-chip:has(input:checked) {
  background: rgba(212,168,83,0.12);
  border-color: rgba(212,168,83,0.55);
  color: var(--gold);
}
.brief-chip:hover {
  border-color: rgba(212,168,83,0.3);
  color: rgba(245,240,232,0.85);
}

.brief-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 0.1rem 0; }

.brief-steps-hint {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.brief-phase-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.4rem 0;
}
.brief-phase-divider::before,
.brief-phase-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
}
.brief-phase-divider span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.brief-submit {
  width: 100%;
  padding: 0.95rem;
  background: var(--gold);
  color: #141414;
  border: none;
  border-radius: 3px;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.4rem;
}
.brief-submit:hover { background: #e0b860; transform: translateY(-1px); }
.brief-submit:active { transform: translateY(0); }
.brief-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.brief-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}
.brief-success-icon {
  width: 60px;
  height: 60px;
  background: rgba(212,168,83,0.1);
  border: 2px solid rgba(212,168,83,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.3rem;
}
.brief-success-icon svg { width: 28px; height: 28px; color: var(--gold); }
.brief-success h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.brief-success p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 540px) {
  .brief-modal { padding: 2rem 1.4rem 1.5rem; max-height: 92vh; }
  .brief-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   V3 ENGAGEMENT — Depth · Volume · Motion
═══════════════════════════════════════════════════════════════ */

/* ─── Hero: bigger, more presence ──────────────────────────── */
.hero-title {
  font-size: clamp(3.2rem, 6.5vw, 6rem);
}

/* ─── Hero highlight: solid gold ────────────────────────────── */
.hero-title .highlight {
  color: var(--gold);
}

/* ─── Hero grain texture (depth perception) ─────────────────── */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}


/* ─── Marquee band ───────────────────────────────────────────── */
.marquee-band {
  overflow: hidden;
  background: #161616;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 1rem 0;
  user-select: none;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  padding: 0 1.8rem;
}
.marquee-sep {
  color: var(--gold);
  opacity: 0.4;
  font-size: 0.5rem;
  flex-shrink: 0;
}

/* ─── Service cards: multi-layer shadow + 3D ready ───────────── */
.service-card {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 4px 20px rgba(0,0,0,0.38),
    0 1px 3px rgba(0,0,0,0.28);
  will-change: transform;
}
.service-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,168,83,0.1), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.service-card.featured > * { position: relative; z-index: 1; }

/* ─── Testimonial cards: depth ───────────────────────────────── */
.testimonial-card {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 4px 20px rgba(0,0,0,0.35);
  will-change: transform;
}
.testimonial-card:hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.07) inset,
    0 20px 60px rgba(0,0,0,0.5);
}

/* ─── Portfolio frames: floating depth ───────────────────────── */
.browser-frame {
  box-shadow: 0 4px 24px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.3);
  will-change: transform;
  transition: transform 0.15s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.browser-frame:hover {
  box-shadow:
    0 32px 80px rgba(0,0,0,0.65),
    0 8px 24px rgba(0,0,0,0.45),
    0 0 0 1px rgba(212,168,83,0.3);
}

/* ─── About photo: layered float shadow ──────────────────────── */
.about-photo-frame {
  box-shadow:
    0 4px 24px rgba(0,0,0,0.45),
    0 24px 64px rgba(0,0,0,0.35);
}

/* ─── Compare highlight card: gold aura ──────────────────────── */
.compare-card.highlight {
  box-shadow:
    0 1px 0 rgba(212,168,83,0.15) inset,
    0 24px 60px rgba(0,0,0,0.45),
    0 0 48px rgba(212,168,83,0.07);
}

/* ─── Process dots: pulse animation ─────────────────────────── */
.process-step-dot {
  animation: dot-pulse 2.5s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(212,168,83,0.45), 0 0 0 0 rgba(212,168,83,0.4); }
  60%       { box-shadow: 0 0 0 1px rgba(212,168,83,0.45), 0 0 0 10px rgba(212,168,83,0); }
}

/* ─── Floating mobile CTA ──────────────────────────────── */
@media (max-width: 768px) {
  .mobile-cta-pill {
    position: fixed;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%) translateY(6rem);
    z-index: 990;
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--gold);
    color: #111;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 3px;
    text-decoration: none;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
  }
  .mobile-cta-pill.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root { --motion-ok: 0; }
  .hero-eyebrow,
  .hero-title,
  .hero-subtitle,
  .hero-actions,
  .hero-badges,
  .scroll-indicator { animation: none; opacity: 1; }
  .scroll-line { animation: none; }
  .process-step-dot { animation: none; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
