/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: transform var(--t-base), background var(--t-base), color var(--t-base), border-color var(--t-base);
}
.btn svg { width: 18px; height: 18px; }
.btn-brand { background: var(--brand); color: var(--on-dark); box-shadow: 0 10px 24px var(--brand-soft); }
.btn-brand:hover { background: var(--brand-strong); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--on-dark); }
.btn-dark:hover { transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--line-strong); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--on-dark); transform: translateY(-2px); }
.btn-ghost-light { border: 2px solid var(--line-dark); color: var(--on-dark); }
.btn-ghost-light:hover { background: var(--on-dark); color: var(--ink); }

/* Chip diagnostic */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  background: var(--brand-soft);
  border: 1px solid var(--brand);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-strong);
}
.chip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }

/* Carte */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(23, 21, 17, 0.08); border-color: var(--line-strong); }
.card-dark { background: var(--dark-alt); border-color: var(--line-dark); }
.card-dark:hover { box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3); }

/* Coins en equerre : detail technique, Atelier uniquement */
.arch-atelier .card::before, .arch-atelier .card::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-color: var(--brand);
  border-style: solid;
  pointer-events: none;
  z-index: 2;
}
.arch-atelier .card::before { top: 11px; left: 11px; border-width: 2px 0 0 2px; }
.arch-atelier .card::after { bottom: 11px; right: 11px; border-width: 0 2px 2px 0; }

/* Numero metier geant : signature */
.arch-atelier .metier-num {
  position: absolute;
  top: -0.16em;
  right: 0.04em;
  font-family: var(--font-display);
  font-size: 8.5rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--brand);
  opacity: 0.28;
  pointer-events: none;
  user-select: none;
}
.arch-atelier .card-dark .metier-num { opacity: 0.5; }

/* Tag */
.tag { display: inline-block; padding: 5px 12px; background: var(--bg-alt); border-radius: var(--radius-full); font-size: 0.78rem; font-weight: 600; color: var(--ink-muted); }

/* Formulaire */
.field { margin-bottom: var(--space-md); }
.field label { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-muted); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  transition: border-color var(--t-base);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); }
.field textarea { min-height: 120px; resize: vertical; }

/* Zone photo placeholder (image source = placeholder) */
.photo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-alt);
  border: 2px dashed var(--line-strong);
  border-radius: var(--radius-md);
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 220px;
  padding: var(--space-lg);
}

/* Nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 18px 0; transition: background var(--t-base), padding var(--t-base), box-shadow var(--t-base); }
.nav.scrolled { background: rgba(242, 236, 224, 0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding: 11px 0; box-shadow: 0 1px 0 var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); }
.nav-logo { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 34px; width: auto; display: block; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; }
.footer-logo-img { height: 30px; width: auto; display: block; }
.nav-links { display: flex; gap: var(--space-lg); }
.nav-links a { font-size: 0.92rem; font-weight: 600; color: var(--ink-muted); transition: color var(--t-fast); }
.nav-links a:hover { color: var(--ink); }
@media (max-width: 760px) { .nav-links, .nav-cta { display: none; } }

/* Hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: 130px 0 90px; }
.arch-atelier .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 21, 17, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 17, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
  z-index: 0;
}
.hero-ghost { position: absolute; right: -1%; bottom: -8%; font-family: var(--font-display); font-size: clamp(8rem, 25vw, 22rem); color: var(--ink); opacity: 0.04; line-height: 0.8; pointer-events: none; user-select: none; z-index: 0; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: var(--space-xl); align-items: center; position: relative; z-index: 1; }
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } .hero-photo { display: none; } }
.hero h1 { font-size: var(--fs-1); margin: var(--space-md) 0; }
.hero h1 em { font-style: normal; color: var(--brand); }
.hero-sub { font-size: var(--fs-5); max-width: 42ch; margin-bottom: var(--space-lg); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: var(--space-xl); }
.hero-meta { display: flex; gap: var(--space-xl); border-top: 1px solid var(--line); padding-top: var(--space-md); }
.hero-meta strong { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); }
.hero-meta span { font-size: 0.78rem; color: var(--ink-muted); }
.hero-photo .photo-slot { min-height: 360px; }

/* Avant / apres */
.ba-list { display: grid; gap: var(--space-lg); }
.ba-item { display: grid; gap: var(--space-sm); }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
@media (max-width: 640px) { .ba-pair { grid-template-columns: 1fr; } }
.ba-cell { position: relative; }
.ba-flag { position: absolute; top: 12px; left: 12px; z-index: 1; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 11px; border-radius: var(--radius-full); background: var(--ink); color: var(--on-dark); }
.ba-cell.after .ba-flag { background: var(--brand); }
.ba-legend { font-size: 0.92rem; color: var(--ink-muted); }

/* Offres */
.offre h3 { font-size: var(--fs-4); margin-bottom: 8px; position: relative; z-index: 1; }
.offre p { font-size: 0.92rem; position: relative; z-index: 1; }
.offre .prix { display: inline-block; margin-top: var(--space-sm); font-weight: 700; color: var(--brand-strong); position: relative; z-index: 1; }

/* Preuve sociale */
.avis-text { font-size: 1.05rem; line-height: 1.7; color: var(--on-dark); }
.avis-author { margin-top: var(--space-md); font-weight: 700; color: var(--brand); }
.avis-stars { color: var(--brand); letter-spacing: 2px; margin-bottom: var(--space-sm); }

/* CTA bandeau */
.cta-band { background: var(--brand); color: var(--on-dark); text-align: center; }
.cta-band h2 { font-size: var(--fs-2); color: var(--on-dark); margin-bottom: var(--space-lg); max-width: 18ch; margin-inline: auto; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-xl); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.phone-big { display: inline-block; font-family: var(--font-display); font-size: var(--fs-3); color: var(--brand); margin: var(--space-sm) 0; }
.contact-ways { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-md); }
.cway { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink-muted); }
.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--space-lg); }

/* Bandeau maquette : visible seulement en mode mockup, hors site livre */
.pitch-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--dark);
  color: var(--on-dark);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 11px var(--container-pad);
  border-bottom: 2px solid var(--brand);
}
.has-pitch #nav { top: 42px; }
.has-pitch .hero { padding-top: 172px; }
@media (max-width: 600px) { .pitch-banner { font-size: 0.64rem; padding: 9px 12px; } }

/* Footer */
.footer { background: var(--dark); color: var(--on-dark-muted); padding: var(--space-xl) 0; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-md); align-items: center; }
.footer-logo { font-family: var(--font-display); font-size: 1.1rem; color: var(--on-dark); }
.footer-links { display: flex; gap: var(--space-md); flex-wrap: wrap; }
.footer-links a { font-size: 0.88rem; }
.footer-links a:hover { color: var(--on-dark); }

/* ===================== ARCHETYPE TABLE (dark editorial) ===================== */
.arch-table h1, .arch-table h2, .arch-table h3 { font-weight: 800; letter-spacing: -0.02em; }
.arch-table .nav.scrolled { background: rgba(20, 17, 13, 0.86); box-shadow: 0 1px 0 var(--line); }
.arch-table .btn-brand { background: var(--ink); color: var(--dark); box-shadow: none; }
.arch-table .btn-brand:hover { background: var(--brand); color: var(--dark); }

/* Cadre photo : traitement sombre, mise en scene */
.photo-frame { position: relative; overflow: hidden; border-radius: var(--radius-md); background: var(--bg-alt); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.photo-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14, 12, 9, 0) 45%, rgba(14, 12, 9, 0.55) 100%); pointer-events: none; }
.photo-frame:hover img { transform: scale(1.04); }
.photo-slot-ed { display: flex; align-items: center; justify-content: center; color: var(--ink-soft); font-size: 0.85rem; min-height: 240px; }

/* Hero editorial */
.hero-ed-section { position: relative; min-height: 100dvh; display: flex; align-items: center; padding: 150px 0 80px; }
.hero-ed { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: var(--space-xl); }
@media (max-width: 900px) { .hero-ed { grid-template-columns: 1fr; gap: var(--space-lg); } }
.hero-ed .eyebrow { display: inline-block; font-size: var(--fs-6); letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: var(--space-md); }
.hero-ed h1 { font-size: clamp(3rem, 6.4vw, 5.8rem); line-height: 0.98; margin-bottom: var(--space-md); }
.hero-ed h1 em { font-style: italic; font-weight: 500; color: var(--ink-muted); }
.hero-ed .lede { font-size: var(--fs-5); color: var(--ink-muted); max-width: 44ch; margin-bottom: var(--space-lg); }
.hero-ed-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-ed-asset { position: relative; height: clamp(380px, 62vh, 620px); }
.hero-ed-asset .photo-frame { position: absolute; inset: 0; border-radius: var(--radius-lg); }
@media (max-width: 900px) { .hero-ed-asset { height: 52vh; } }

/* La carte : plats signature */
.carte-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-md); margin-bottom: var(--space-xl); flex-wrap: wrap; }
.carte-head h2 { font-size: var(--fs-2); max-width: 18ch; }
.carte-head p { max-width: 32ch; }
.carte-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); align-items: end; }
@media (max-width: 820px) { .carte-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .carte-grid { grid-template-columns: 1fr; } }
.dish .photo-frame { aspect-ratio: 3 / 4; margin-bottom: var(--space-sm); }
.dish.tall .photo-frame { aspect-ratio: 3 / 4.7; }
.dish-row { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-sm); }
.dish-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.dish-price { font-size: 0.95rem; color: var(--brand); white-space: nowrap; }
.dish-desc { font-size: 0.9rem; color: var(--ink-muted); margin-top: 4px; }

/* Apropos editorial */
.apropos-ed { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-2xl); align-items: center; }
@media (max-width: 900px) { .apropos-ed { grid-template-columns: 1fr; gap: var(--space-lg); } }
.apropos-ed .photo-frame { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); }
.apropos-ed h2 { font-size: var(--fs-2); margin-bottom: var(--space-md); }
.apropos-ed .lede { font-size: var(--fs-5); color: var(--ink-muted); margin-bottom: var(--space-lg); max-width: 52ch; }
.steps { display: grid; gap: 0; }
.step { display: grid; grid-template-columns: auto 1fr; gap: var(--space-md); align-items: start; padding: var(--space-md) 0; border-top: 1px solid var(--line); }
.step-k { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--brand); }
.step h3 { font-size: 1.1rem; margin-bottom: 4px; }
.step p { font-size: 0.92rem; color: var(--ink-muted); margin: 0; }

/* Galerie mosaique */
.galerie-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: var(--space-sm); }
@media (max-width: 820px) { .galerie-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; } }
.galerie-mosaic .photo-frame { width: 100%; height: 100%; }
.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }
@media (max-width: 820px) { .g-tall { grid-row: span 1; } }

/* Reservation */
.resa { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center; }
@media (max-width: 820px) { .resa { grid-template-columns: 1fr; gap: var(--space-lg); } }
.resa h2 { font-size: var(--fs-2); margin-bottom: var(--space-md); }
.resa-phone { display: inline-block; font-family: var(--font-display); font-weight: 800; font-size: var(--fs-3); color: var(--ink); margin: var(--space-sm) 0; }
.resa-meta { display: grid; gap: 0; margin-top: var(--space-md); }
.resa-meta div { display: flex; justify-content: space-between; gap: var(--space-md); padding: var(--space-sm) 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; color: var(--ink-muted); }
.resa-meta strong { color: var(--ink); font-weight: 500; }

.link-arrow { font-size: 0.9rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line-strong); padding-bottom: 3px; white-space: nowrap; transition: color var(--t-fast), border-color var(--t-fast); }
.link-arrow:hover { color: var(--brand); border-color: var(--brand); }

/* Parallaxe : image legerement surdimensionnee pour bouger sans laisser de vide */
[data-parallax] img { position: absolute; top: -8%; left: 0; width: 100%; height: 116%; object-fit: cover; }

/* ===================== ARCHETYPE MAISON (serif clair, serein) ===================== */
.arch-maison h1, .arch-maison h2, .arch-maison h3 { font-weight: 600; letter-spacing: 0; }
.arch-maison section { padding: clamp(6rem, 12vw, 11rem) 0; }
.arch-maison .nav.scrolled { background: rgba(236, 237, 232, 0.9); box-shadow: 0 1px 0 var(--line); }
.arch-maison .nav-logo { font-weight: 600; letter-spacing: 0.04em; }
.arch-maison .label { letter-spacing: 0.2em; }
.arch-maison .btn-brand { background: var(--ink); color: var(--bg); box-shadow: none; }
.arch-maison .btn-brand:hover { background: var(--brand); color: var(--bg); }
.arch-maison .photo-frame::after { background: linear-gradient(180deg, transparent 62%, rgba(35, 42, 38, 0.22) 100%); }
.arch-maison .hero-ed h1 { font-size: clamp(3.4rem, 7.2vw, 6.6rem); line-height: 1; }
.arch-maison .hero-ed h1 em { color: var(--brand); font-style: italic; font-weight: 500; }
.arch-maison .hero-ed .lede { font-size: 1.15rem; }
.arch-maison .dish-name { font-weight: 600; font-size: 1.35rem; }
.arch-maison .carte-head h2, .arch-maison .apropos-ed h2, .arch-maison .resa h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.arch-maison .step-k { font-weight: 600; }

/* ===================== ARCHETYPE COMPTOIR (nocturne, poster, vibrant) ===================== */
.arch-comptoir h1, .arch-comptoir h2, .arch-comptoir h3 { font-weight: 400; line-height: 0.96; letter-spacing: 0.01em; }
.arch-comptoir .nav.scrolled { background: rgba(14, 16, 20, 0.88); box-shadow: 0 1px 0 var(--line); }
.arch-comptoir .btn-brand { background: var(--brand); color: var(--bg); box-shadow: none; }
.arch-comptoir .btn-brand:hover { background: var(--brand-strong); color: var(--ink); }
.arch-comptoir .hero-ed h1 { font-size: clamp(3.4rem, 8.5vw, 7.2rem); }
.arch-comptoir .hero-ed h1 em { color: var(--brand); font-style: normal; }
.arch-comptoir .label { color: var(--brand); letter-spacing: 0.16em; }

/* Marquee (un seul par page) */
.marquee { overflow: hidden; padding: var(--space-md) 0; background: var(--brand); }
.marquee-track { display: flex; width: max-content; white-space: nowrap; animation: marquee-x 28s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.4rem); color: var(--bg); padding: 0 var(--space-lg); }
@keyframes marquee-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* Agenda evenements */
.agenda { display: grid; gap: 0; }
.agenda-row { display: grid; grid-template-columns: 110px 1fr auto; gap: var(--space-md); align-items: baseline; padding: var(--space-md) var(--space-sm); border-top: 1px solid var(--line); transition: background var(--t-base), padding var(--t-base); }
.agenda-row:last-child { border-bottom: 1px solid var(--line); }
.arch-comptoir .agenda-row:hover { background: var(--surface); padding-left: var(--space-md); }
.agenda-day { font-family: var(--font-display); font-size: 1.5rem; color: var(--brand); }
.agenda-name { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.1rem); }
.agenda-meta { font-size: 0.9rem; color: var(--ink-muted); white-space: nowrap; }
@media (max-width: 600px) { .agenda-row { grid-template-columns: 1fr; gap: 4px; } .agenda-meta { white-space: normal; } }

/* ===================== ARCHETYPE EDITO (minimal, monochrome + cobalt) ===================== */
.arch-edito h1, .arch-edito h2, .arch-edito h3 { font-weight: 600; letter-spacing: -0.025em; }
.arch-edito section { padding: clamp(5rem, 10vw, 9rem) 0; }
.arch-edito .nav.scrolled { background: rgba(244, 244, 242, 0.9); box-shadow: 0 1px 0 var(--line); }
.arch-edito .label { letter-spacing: 0.14em; }
.arch-edito .btn-brand { background: var(--brand); color: var(--bg); box-shadow: none; }
.arch-edito .btn-brand:hover { background: var(--brand-strong); transform: translateY(-2px); }
.arch-edito .card { box-shadow: none; }
.arch-edito .card:hover { box-shadow: 0 14px 34px rgba(22, 24, 28, 0.06); }
.arch-edito .slash-top, .arch-edito .slash-bottom { clip-path: none; }
.arch-edito .cta-band { background: var(--brand); color: var(--bg); }
.arch-edito .cta-band h2 { color: var(--bg); }
.arch-edito .cta-band .btn-dark { background: var(--bg); color: var(--ink); }
.arch-edito .section-dark { background: var(--bg-alt); color: var(--ink); }
.arch-edito .section-dark p { color: var(--ink-muted); }
.arch-edito .card-dark { background: var(--surface); border-color: var(--line); }
.arch-edito .card-dark:hover { box-shadow: 0 14px 34px rgba(22, 24, 28, 0.06); }
.arch-edito .avis-text { color: var(--ink); }
.arch-edito .avis-author { color: var(--brand); }

/* Hero manifeste : typographique, sans photo */
.hero-manifeste { min-height: 90dvh; display: flex; align-items: center; padding: 160px 0 80px; }
.hero-manifeste .eyebrow { display: inline-block; font-size: var(--fs-6); letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: var(--space-md); }
.hero-manifeste h1 { font-size: clamp(3rem, 7.4vw, 6.2rem); line-height: 1; max-width: 17ch; margin-bottom: var(--space-md); }
.hero-manifeste h1 em { color: var(--brand); font-style: normal; }
.hero-manifeste .lede { font-size: var(--fs-4); color: var(--ink-muted); max-width: 52ch; margin-bottom: var(--space-lg); }

/* ===================== ARCHETYPE TIMY (warm, soulful, flagship) ===================== */
.arch-timy h1, .arch-timy h2, .arch-timy h3 { font-weight: 700; letter-spacing: -0.03em; }
.arch-timy section { padding: clamp(5.5rem, 11vw, 10rem) 0; position: relative; }

/* Fond chaud golden-hour sur toute la page (le grain est local par section) */
body.arch-timy { background: linear-gradient(168deg, var(--surface) 0%, var(--bg) 46%, var(--bg-alt) 100%); }

/* Grain film reutilisable (couche locale, derriere le contenu) */
.grain-layer { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.4; mix-blend-mode: soft-light; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E"); }

.arch-timy .nav.scrolled { background: rgba(248, 237, 217, 0.86); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); }
.arch-timy .label { color: var(--accent-2); }
.arch-timy .label-light { color: var(--accent-3); }
.arch-timy .section-dark { background: var(--dark); }
.arch-timy .step-k { font-size: 1.3rem; }

/* Boutons */
.arch-timy .btn-brand { background: var(--brand); color: var(--ink); border-radius: var(--radius-full); box-shadow: 0 10px 30px -12px rgba(221, 92, 54, 0.65); }
.arch-timy .btn-brand:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -12px rgba(221, 92, 54, 0.75); }
.btn-arr { transition: transform var(--t-base); }
.arch-timy .btn-brand:hover .btn-arr { transform: translateX(4px); }
.arch-timy .btn-textlink { color: var(--ink); padding: 14px 4px; border-bottom: 1px solid var(--line-strong); border-radius: 0; font-weight: 600; }
.arch-timy .btn-textlink:hover { color: var(--brand); border-bottom-color: var(--brand); }

/* Pastille dispo, point vivant */
.pill { display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; border-radius: var(--radius-full); background: rgba(252, 246, 234, 0.7); border: 1px solid var(--line); font-size: 0.82rem; font-weight: 500; color: var(--ink); backdrop-filter: blur(2px); }
.pill-live { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); flex: none; }
.pill-live::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--accent-2); opacity: 0.55; animation: pill-ping 2.4s ease-out infinite; }
@keyframes pill-ping { 0% { transform: scale(0.6); opacity: 0.6; } 80%, 100% { transform: scale(1.9); opacity: 0; } }

/* ===== Hero signature (premium-cool, flagship) ===== */
.hero-sig { position: relative; min-height: 100svh; display: flex; flex-direction: column; isolation: isolate; overflow: hidden; }
.hero-atmo { position: absolute; inset: 0; z-index: 0; background:
  radial-gradient(120% 90% at 8% 6%, rgba(240, 190, 73, 0.55) 0%, rgba(240, 190, 73, 0) 46%),
  radial-gradient(130% 100% at 102% 4%, rgba(221, 92, 54, 0.20) 0%, rgba(221, 92, 54, 0) 40%),
  linear-gradient(168deg, var(--surface) 0%, var(--bg) 42%, var(--bg-alt) 100%); }
.hero-floor { position: absolute; left: 0; right: 0; bottom: 0; height: 42%; z-index: 0; pointer-events: none; background: linear-gradient(to top, rgba(19, 48, 32, 0.10) 0%, rgba(19, 48, 32, 0) 100%); }
.hero-sig-body { position: relative; z-index: 1; flex: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: clamp(2rem, 5vw, 5rem); width: 100%; max-width: 1460px; margin: 0 auto; padding: clamp(7rem, 12vw, 10rem) clamp(1.5rem, 5vw, 5.5rem) clamp(1.8rem, 3vw, 2.6rem); }
.hsg-kicker { margin-bottom: clamp(1.4rem, 3vw, 2.2rem); }
.hsg-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.9rem, 6.6vw, 6.6rem); line-height: 0.96; letter-spacing: -0.035em; color: var(--ink); max-width: 14ch; }
.hsg-title em { font-style: italic; font-weight: 700; color: var(--brand); position: relative; }
.hsg-title em::after { content: ""; position: absolute; left: 0; right: 0.04em; bottom: 0.06em; height: 2px; background: var(--brand); opacity: 0.5; transform: scaleX(0); transform-origin: left; animation: hsg-underline 1s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards; }
@keyframes hsg-underline { to { transform: scaleX(1); } }
.hsg-lede { margin-top: clamp(1.4rem, 2.6vw, 2rem); font-size: clamp(1.02rem, 1.25vw, 1.18rem); line-height: 1.6; color: var(--ink-muted); max-width: 42ch; }
.hsg-lede strong { color: var(--ink); font-weight: 500; }
.hsg-ctas { margin-top: clamp(1.8rem, 3vw, 2.6rem); display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.hsg-proof { margin-top: clamp(2rem, 4vw, 3.2rem); display: flex; align-items: center; gap: 1rem; font-size: 0.82rem; color: var(--ink-muted); }
.hsg-proof-line { flex: none; width: 42px; height: 1px; background: var(--ink); opacity: 0.22; }
.hsg-proof b { color: var(--ink); font-weight: 500; }

/* Portrait : plaque golden-hour (vraie photo de Timy plus tard, sinon ambiance) */
.hero-sig-portrait { position: relative; }
.portrait-plate { position: relative; aspect-ratio: 4/5; width: 100%; max-width: 420px; margin-left: auto; border-radius: 18px; overflow: hidden; background: linear-gradient(155deg, rgba(240, 190, 73, 0) 30%, rgba(240, 190, 73, 0.35) 100%), linear-gradient(200deg, var(--accent-2) 0%, var(--dark) 78%); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 40px 70px -34px rgba(19, 48, 32, 0.6), 0 8px 20px -12px rgba(19, 48, 32, 0.4); }
.portrait-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.portrait-tone { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(19, 48, 32, 0.55) 0%, rgba(19, 48, 32, 0) 44%); }
.portrait-leak { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(80% 55% at 80% 6%, rgba(240, 190, 73, 0.28) 0%, rgba(240, 190, 73, 0) 60%); mix-blend-mode: screen; }
.portrait-plate::after { content: ""; position: absolute; inset: 10px; border-radius: 11px; border: 1px solid rgba(248, 237, 217, 0.22); pointer-events: none; }
.portrait-cap { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 3; display: flex; align-items: baseline; justify-content: space-between; gap: 0.6rem; color: var(--on-dark); text-shadow: 0 1px 8px rgba(19, 48, 32, 0.7); }
.portrait-name { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.05rem; }
.portrait-role { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-3); }
.portrait-tag { position: absolute; top: 14px; left: 14px; z-index: 3; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark); background: rgba(19, 48, 32, 0.45); border: 1px solid rgba(248, 237, 217, 0.18); padding: 0.32rem 0.6rem; border-radius: var(--radius-full); backdrop-filter: blur(3px); }

/* Filet de pied editorial du hero */
.hero-rule { position: relative; z-index: 1; margin: 0 clamp(1.5rem, 5vw, 5.5rem); padding: 1rem 0 1.4rem; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.8rem; color: var(--ink-muted); }
.hero-rule em { font-style: italic; color: var(--ink); }
.hero-scroll { display: flex; align-items: center; gap: 0.6rem; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; }
.hero-scroll-arr { display: inline-block; animation: hsg-nudge 2s ease-in-out infinite; }
@keyframes hsg-nudge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

@media (max-width: 900px) {
  .hero-sig-body { grid-template-columns: 1fr; gap: clamp(1.6rem, 5vw, 2.4rem); }
  .portrait-plate { max-width: 320px; margin: 0 auto; }
  .hsg-title { max-width: 18ch; }
}
@media (prefers-reduced-motion: reduce) {
  .hsg-title em::after { transform: scaleX(1); animation: none; }
  .portrait-beam { display: none; }
  .pill-live::after, .hero-scroll-arr { animation: none; }
}

/* Manifeste IA (gabarit timy) */
.manifeste { color: var(--on-dark); }
.manifeste-inner { max-width: 880px; }
.manifeste h2 { font-size: clamp(2.2rem, 5vw, 4rem); color: var(--on-dark); margin: var(--space-sm) 0 var(--space-lg); }
.manifeste h2 em { font-style: normal; color: var(--accent-3); }
.manifeste-corps { display: grid; gap: var(--space-md); max-width: 60ch; }
.manifeste-corps p { font-size: var(--fs-5); color: var(--on-dark-muted); }
.manifeste-pair { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); margin-top: var(--space-xl); }
@media (max-width: 640px) { .manifeste-pair { grid-template-columns: 1fr; } }
.mp-col { padding: var(--space-lg); border-radius: var(--radius-md); background: rgba(248,237,217,0.05); border: 1px solid var(--line-dark); }
.mp-col.mp-after { border-color: rgba(240,190,73,0.4); }
.mp-k { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.mp-after .mp-k { color: var(--accent-3); }
.mp-col p { margin-top: var(--space-sm); color: var(--on-dark); }

/* Process etapes (gabarit timy) */
.proc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: var(--space-lg); counter-reset: none; }
.proc-step { position: relative; padding-top: var(--space-md); border-top: 2px solid var(--line); }
.proc-k { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--brand); }
.proc-step h3 { font-size: 1.15rem; margin: var(--space-sm) 0 6px; }
.proc-step p { font-size: 0.92rem; color: var(--ink-muted); }

/* Showcase archetypes : apercus de site reels (meta-proof) */
.showcase-rail { display: flex; gap: var(--space-lg); overflow-x: auto; scroll-snap-type: x mandatory; padding: var(--space-md) var(--container-pad) var(--space-xl); -webkit-overflow-scrolling: touch; }
.show-card { scroll-snap-align: start; flex: 0 0 clamp(300px, 40vw, 480px); display: block; color: inherit; transition: transform var(--t-base); }
.show-card:hover { transform: translateY(-6px); }
.show-shot { aspect-ratio: 16 / 10; border-radius: var(--radius-md); overflow: hidden; background: var(--bg-alt); border: 1px solid var(--line); box-shadow: 0 30px 60px -34px rgba(19, 48, 32, 0.5); }
.show-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.show-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-top: var(--space-sm); }
.show-nom { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.02em; }
.show-secteur { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-2); }

/* ============ ARCH-TIMY : ELEVATION PREMIUM-COOL DES SECTIONS ============ */

/* Titres de section expressifs (Space Grotesk, grandes echelles, em italique cherry) */
.arch-timy .section-head { max-width: 760px; }
.arch-timy .section-head h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem, 4.6vw, 3.8rem); line-height: 1.02; letter-spacing: -0.035em; }
.arch-timy .section-head h2 em { font-style: italic; font-weight: 700; color: var(--brand); }
.arch-timy .section-head > p { font-size: var(--fs-5); color: var(--ink-muted); margin-top: var(--space-sm); max-width: 56ch; }
.arch-timy .label { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: 0.14em; }

/* Services : cartes chaudes premium */
.arch-timy .offre { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 24px 48px -32px rgba(19, 48, 32, 0.4); padding: clamp(1.6rem, 2.6vw, 2.4rem); }
.arch-timy .offre:hover { transform: translateY(-5px); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 30px 60px -30px rgba(19, 48, 32, 0.5); border-color: var(--line-strong); }
.arch-timy .offre .metier-num { position: static; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--brand); display: block; margin-bottom: var(--space-sm); }
.arch-timy .offre h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.arch-timy .offre p { color: var(--ink-muted); font-size: 0.98rem; line-height: 1.6; }

/* Manifeste : glow chaud + paire avant/avec premium */
.arch-timy .manifeste { isolation: isolate; overflow: hidden; }
.arch-timy .manifeste::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(80% 60% at 90% 0%, rgba(240, 190, 73, 0.14) 0%, rgba(240, 190, 73, 0) 55%), radial-gradient(70% 60% at 0% 100%, rgba(221, 92, 54, 0.12) 0%, rgba(221, 92, 54, 0) 55%); }
.arch-timy .manifeste-inner { position: relative; z-index: 1; }
.arch-timy .manifeste h2 { font-family: var(--font-display); font-weight: 500; }
.arch-timy .mp-col { background: rgba(248, 237, 217, 0.04); }
.arch-timy .mp-col.mp-after { background: rgba(240, 190, 73, 0.07); box-shadow: 0 30px 60px -40px rgba(0, 0, 0, 0.55); }

/* Plaque golden-hour reutilisable (a-propos + realisations : plus de boite grise) */
.arch-timy .apropos-ed .photo-frame,
.arch-timy .dish .photo-frame { background: linear-gradient(155deg, rgba(240, 190, 73, 0) 30%, rgba(240, 190, 73, 0.30) 100%), linear-gradient(200deg, var(--accent-2) 0%, var(--dark) 80%); box-shadow: 0 30px 60px -38px rgba(19, 48, 32, 0.55); }
.arch-timy .apropos-ed .photo-frame::after,
.arch-timy .dish .photo-frame::after { background: radial-gradient(80% 55% at 78% 8%, rgba(240, 190, 73, 0.4) 0%, rgba(240, 190, 73, 0) 60%); mix-blend-mode: screen; }
.arch-timy .apropos-ed .photo-frame img,
.arch-timy .dish .photo-frame img { filter: saturate(0.9) contrast(1.04) sepia(0.12) brightness(0.96); }

/* A-propos : steps premium */
.arch-timy .apropos-ed { gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.arch-timy .step h3 { font-family: var(--font-display); font-weight: 700; }

/* Realisations : cartes mises en avant, apercu paysage, hover cinematique */
.arch-timy .carte-head h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem, 4.6vw, 3.8rem); letter-spacing: -0.035em; }
.arch-timy .carte-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.4rem, 2.5vw, 2.4rem); align-items: stretch; }
.arch-timy .dish { flex: 0 1 clamp(280px, 30%, 380px); display: flex; flex-direction: column; transition: transform var(--t-base); }
.arch-timy .dish:hover { transform: translateY(-8px); }
.arch-timy .dish .photo-frame { aspect-ratio: 16 / 10; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 0; box-shadow: 0 24px 50px -34px rgba(19, 48, 32, 0.5); transition: box-shadow var(--t-base); }
.arch-timy .dish:hover .photo-frame { box-shadow: 0 38px 72px -30px rgba(19, 48, 32, 0.6); }
.arch-timy .dish .photo-frame img { transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.arch-timy .dish:hover .photo-frame img { transform: scale(1.06); }
.arch-timy .dish-row { margin-top: var(--space-sm); }
.arch-timy .dish-name { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.02em; }
.arch-timy .dish-price { color: var(--accent-2); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.arch-timy .dish-desc { color: var(--ink-muted); font-size: 0.95rem; line-height: 1.55; margin-top: 6px; }
.arch-timy .dish-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.arch-timy .dish-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.03em; color: var(--ink-muted); background: var(--surface); border: 1px solid var(--line); padding: 4px 11px; border-radius: var(--radius-full); }

/* Realisations : mediatheque vivante (variante lignes-alternees) */
.reels { display: flex; flex-direction: column; gap: clamp(3.5rem, 7vw, 7rem); margin-top: var(--space-xl); }
.reel { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.reel-media { order: 1; min-width: 0; }
.reel-body { order: 2; min-width: 0; }
.reel:nth-child(even) .reel-media { order: 2; }
.reel:nth-child(even) .reel-body { order: 1; }

/* Cadre commun */
.reel-frame { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--bg-alt); box-shadow: 0 40px 80px -42px rgba(19, 48, 32, 0.55); }
.reel-frame::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(26, 26, 26, 0.08); pointer-events: none; z-index: 3; }
.reel-frame--wide { aspect-ratio: 16 / 10; display: flex; flex-direction: column; }
.reel-frame--phone { aspect-ratio: 16 / 10; background: var(--surface); }

/* Barre navigateur (sites + app web) */
.reel-bar { flex: none; height: clamp(28px, 3.2vw, 36px); display: flex; align-items: center; gap: 12px; padding: 0 14px; background: var(--dark); }
.reel-dots { display: inline-flex; gap: 6px; }
.reel-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(248, 237, 217, 0.30); }
.reel-url { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.02em; color: var(--on-dark-muted); }

/* Fenetre + piste qui defile en continu (boucle sans couture via piste dupliquee) */
.reel-window { position: relative; flex: 1; overflow: hidden; }
.reel-track { position: absolute; top: 0; left: 0; will-change: transform; }
.reel-track--y { width: 100%; animation: reelScrollY var(--reel-dur, 24s) linear infinite; }
.reel-track--y img { display: block; width: 100%; height: auto; }
.reel-track--x { height: 100%; width: max-content; display: flex; align-items: center; animation: reelScrollX var(--reel-dur, 18s) linear infinite; }
.reel-track--x img { display: block; height: 86%; width: auto; margin: 0 clamp(8px, 1.4vw, 18px); border-radius: 16px; filter: drop-shadow(0 18px 28px rgba(19, 48, 32, 0.20)); }
@keyframes reelScrollY { to { transform: translateY(-50%); } }
@keyframes reelScrollX { to { transform: translateX(-50%); } }

/* Video plein-cadre (sites) */
.reel-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; background: var(--bg-alt); }

/* Fondu enchaine (ex: ECSR) : ecrans empiles, opacite cyclee */
.reel-crossfade .reel-window > .reel-cf { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.9s ease; }
.reel-crossfade .reel-window > .reel-cf.is-active { opacity: 1; }

/* Teaser confidentiel (GRIMOAR) */
.reel-locked .reel-locked-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); filter: blur(15px) brightness(0.42) saturate(0.7); }
.reel-locked-veil { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--on-dark); background: radial-gradient(60% 60% at 50% 45%, rgba(19, 48, 32, 0.22), rgba(19, 48, 32, 0.55)); }
.reel-lock { opacity: 0.92; }
.reel-locked-label { font-family: var(--font-body); font-size: var(--fs-6); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-dark-muted); }

/* Colonne texte */
.reel-meta { display: inline-flex; align-items: center; gap: 10px; font-size: var(--fs-6); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-2); }
.reel-meta::before { content: ""; width: 26px; height: 2px; background: var(--accent-2); }
.reel-name { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 3.6vw, 3rem); letter-spacing: -0.03em; line-height: 1; margin: 14px 0 0; }
.reel-role { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-weight: 600; color: var(--ink); font-size: 1rem; }
.reel-role-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); flex: none; }
.reel-desc { margin-top: 12px; color: var(--ink-muted); font-size: var(--fs-5); line-height: 1.6; max-width: 46ch; }
.reel-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.reel-tag { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.03em; color: var(--ink-muted); background: var(--surface); border: 1px solid var(--line); padding: 5px 12px; border-radius: var(--radius-full); }

/* Mobile : empilage, sans alternance */
@media (max-width: 820px) {
  .reel { grid-template-columns: 1fr; gap: var(--space-md); }
  .reel-media, .reel:nth-child(even) .reel-media { order: 1; }
  .reel-body, .reel:nth-child(even) .reel-body { order: 2; }
  .reel-desc { max-width: none; }
}

/* Process : ligne + numerals */
.arch-timy .proc-step { border-top-width: 2px; border-top-color: var(--line-strong); }
.arch-timy .proc-step h3 { font-family: var(--font-display); }

/* Contact : bloc chaud premium */
.arch-timy .contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: 0 30px 60px -38px rgba(19, 48, 32, 0.4); }
.arch-timy .phone-big { font-family: var(--font-display); color: var(--ink); }
.arch-timy .contact-form input, .arch-timy .contact-form textarea { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.arch-timy .contact-form input:focus, .arch-timy .contact-form textarea:focus { outline: 2px solid var(--brand); outline-offset: 1px; border-color: transparent; }

/* Footer : forest profond */
.arch-timy .footer { background: var(--dark); color: var(--on-dark); }
.arch-timy .footer-logo { font-family: var(--font-display); font-weight: 700; }
.arch-timy .footer-links a { color: var(--on-dark-muted); }
.arch-timy .footer-links a:hover { color: var(--accent-3); }

/* Grille millimetree (signature dev, inspiree de l'app ECSR) sur les fonds vert sombre */
.arch-timy .section-dark, .arch-timy .footer { position: relative; isolation: isolate; }
.arch-timy .section-dark::before, .arch-timy .footer::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(248, 237, 217, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 237, 217, 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 78% 72% at 50% 42%, #000 32%, transparent 100%);
          mask-image: radial-gradient(ellipse 78% 72% at 50% 42%, #000 32%, transparent 100%);
}
.arch-timy .section-dark > .container, .arch-timy .footer > .container { position: relative; z-index: 1; }

/* Illustration en intro des offres (panneau encadre) */
.offres-illu { max-width: 780px; margin: 0 auto var(--space-xl); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 40px 80px -42px rgba(19, 48, 32, 0.4); }
.offres-illu img { display: block; width: 100%; }
