/* ── BODY ── */
body {
  background: var(--black);
  color: var(--ink);
}

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

/* ── NAV (home overrides) ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(13,12,10,0.82);
  backdrop-filter: blur(14px);
  transition: background 0.4s, border-color 0.4s;
}

nav.scrolled {
  background: rgba(13,12,10,0.97);
  border-bottom-color: var(--border-strong);
}

/* ── LAYOUT ── */
section { scroll-margin-top: var(--nav-h); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 3rem;
}

/* ── UTILITIES ── */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-label--dim { color: var(--gold-dim); }
.section-label--dim::before { background: var(--gold-dim); }

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider-gem {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}

.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.25); }

.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--border-strong); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-light { background: transparent; color: var(--light-text); border: 1px solid var(--light-border-strong); }
.btn-outline-light:hover { border-color: var(--gold-dim); color: var(--gold-dim); }

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

.reveal.visible { opacity: 1; transform: none; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: opacity;
}

.hero-slide.active { opacity: 1; }

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,12,10,0.88) 40%, rgba(13,12,10,0.40) 100%);
}

.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.hero-dot {
  width: 24px;
  height: 2px;
  background: rgba(201,168,76,0.35);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  border: none;
}

.hero-dot.active { background: var(--gold); width: 40px; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 3rem 4rem;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-strong);
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--ink);
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  color: var(--ink-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink-dim);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--ink-dim);
}

/* ── CTA BAR ── */
.cta-bar { background: var(--gold); }

.cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-bar-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--black);
}

.cta-bar-btn {
  background: var(--black);
  color: var(--gold);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.cta-bar-btn:hover { background: var(--black-soft); color: var(--gold-light); }

/* ── INTRO (brasserie) ── */
.intro {
  padding: 7rem 0;
  background: var(--light-bg);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--light-bg-alt);
}

.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.95;
  transition: transform 0.6s ease, opacity 0.3s ease;
}

.intro-img:hover img { transform: scale(1.02); opacity: 1; }

.intro-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  pointer-events: none;
}

.intro-frame {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: calc(100% - 1.5rem);
  height: calc(100% - 1.5rem);
  border: 1px solid var(--light-border-strong);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: -1;
}

.intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--light-text);
}

.intro p { color: var(--light-text-muted); margin-bottom: 1.25rem; line-height: 1.85; }

/* ── OFFRES ── */
.offres { padding: 7rem 0; }

.offres-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

.offres-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.offres-header p { color: var(--ink-muted); align-self: end; }

.offres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.offre-card {
  background: var(--black-soft);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 0.3s;
  text-decoration: none;
}

.offre-card:hover { background: var(--surface); }

.offre-card--featured { border-bottom: 3px solid var(--gold); }

.offre-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--border-strong);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.offre-card:hover .offre-number { color: rgba(201,168,76,0.5); }

.offre-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}

.offre-card:hover .offre-icon { border-color: var(--gold); background: rgba(201,168,76,0.08); }

.offre-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.offre-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.offre-card p { color: var(--ink-muted); font-size: 0.9rem; line-height: 1.75; flex: 1; }

.offre-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  transition: gap 0.2s;
}

.offre-card:hover .offre-link { gap: 0.8rem; }

/* ── COLD CRASH ── */
.cold-crash {
  padding: 7rem 0;
  background: var(--light-bg-alt);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.cold-crash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.cold-crash h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--light-text);
  margin-bottom: 1.25rem;
}

.cold-crash p { color: var(--light-text-muted); line-height: 1.85; margin-bottom: 1.25rem; }
.cold-crash p:last-of-type { margin-bottom: 2rem; }
.cold-crash strong { color: var(--light-text); font-weight: 500; }

.cold-crash-card {
  background: var(--light-bg);
  border: 1px solid var(--light-border-strong);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cold-crash-row {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-border);
}

.cold-crash-row:last-child { padding-bottom: 0; border-bottom: none; }

.cold-crash-tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.cold-crash-tag--gold { color: var(--gold-dim); }
.cold-crash-tag--muted { color: var(--light-text-dim); }

.cold-crash-desc { font-size: 0.88rem; color: var(--light-text-muted); line-height: 1.7; }
.cold-crash-desc--dim { color: var(--light-text-dim); }
.cold-crash-desc small { font-size: 0.8em; }
.link-gold-dim { color: var(--gold-dim); text-decoration: none; }

/* ── LOCATION FÛTS ── */
.location {
  padding: 7rem 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.location-inner {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 5rem;
  align-items: center;
}

.location h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--ink);
}

.location p { color: var(--ink-muted); margin-bottom: 1.5rem; line-height: 1.85; }
.location p a { color: var(--gold); }
.location .warning { font-size: 0.82rem; color: var(--ink-dim); margin-top: 0.4rem; }

.location-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin: 2rem 0;
}

.spec-item {
  background: var(--surface-alt);
  padding: 1.25rem 1.5rem;
  transition: background 0.2s;
}

.spec-item:hover { background: var(--surface); }

.spec-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 0.3rem;
}

.spec-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.location-img {
  aspect-ratio: 3/4;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.location-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.4s, transform 0.6s;
}

.location-img:hover img { opacity: 1; transform: scale(1.03); }

/* ── PARTENAIRES ── */
.partenaires { padding: 7rem 0; background: var(--light-bg); }

.partenaires h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 0.75rem;
}

.partenaires-intro { color: var(--light-text-muted); margin-bottom: 4rem; max-width: 560px; }

.partenaires-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--light-border);
}

.partenaire-card { background: var(--light-bg); padding: 2rem 1.75rem; transition: background 0.3s; }
.partenaire-card:hover { background: var(--light-bg-alt); }

.partenaire-card h3 { font-size: 1rem; font-weight: 500; color: var(--light-text); margin-bottom: 0.25rem; }

.partenaire-type {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.75rem;
}

.partenaire-card p { font-size: 0.85rem; color: var(--light-text-muted); line-height: 1.7; }
.partenaire-card a { color: var(--gold); font-size: 0.8rem; text-decoration: none; display: inline-block; margin-top: 0.75rem; transition: color 0.2s; }
.partenaire-card a:hover { color: var(--gold-light); }

/* Partner logos consistent treatment */
.partner-logo {
  height: 46px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  margin-bottom: 1rem;
  display: block;
  filter: brightness(0);
  opacity: 0.45;
  transition: opacity 0.3s;
}

.partenaire-card:hover .partner-logo { opacity: 0.65; }

.partner-logo--round {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 1px solid var(--border-strong);
  filter: none;
  opacity: 1;
}

/* ── FOOTER ── */
footer {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  padding: 6rem 0 3rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.footer-brand p { color: var(--ink-dim); font-size: 0.9rem; line-height: 1.75; max-width: 280px; }

.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.social-link:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.social-link svg { width: 15px; height: 15px; fill: var(--ink-muted); transition: fill 0.2s; }
.social-link:hover svg { fill: var(--gold); }

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }

.footer-col a { color: var(--ink-dim); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }

.footer-col address { font-style: normal; color: var(--ink-dim); font-size: 0.88rem; line-height: 1.75; margin-top: 1.25rem; }
.footer-col address:first-child { margin-top: 0; }
.footer-col address strong { display: block; color: var(--ink-muted); font-weight: 500; margin-bottom: 0.3rem; }
.footer-col address a { color: var(--ink-dim); text-decoration: none; }
.footer-col address a:hover { color: var(--gold); }

.horaires-note { font-size: 0.78rem; color: var(--ink-dim); margin-bottom: 0.75rem; }
.horaires-note a { color: var(--gold); text-decoration: none; }

.horaires-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
}

.horaires-row span:first-child { color: var(--ink-dim); }
.horaires-row span:last-child { color: var(--ink-muted); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p { color: var(--ink-dim); font-size: 0.78rem; }

.footer-bottom-links { display: flex; gap: 2rem; }

.footer-bottom a { color: var(--ink-dim); text-decoration: none; font-size: 0.78rem; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── ACCESSIBILITY / MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .reveal          { transition: none; opacity: 1; transform: none; }
  .hero-slide      { transition: none; }
  .intro-img img,
  .location-img img { transition: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .offres-grid { grid-template-columns: 1fr 1fr; }
  .partenaires-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  .hero-content { padding: 6rem 1.5rem 4rem; }
  .hero-scroll { left: 1.5rem; }
  .hero-dots { right: 1.5rem; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-img { order: -1; aspect-ratio: 16/9; }
  .intro-frame { display: none; }
  .offres-header { grid-template-columns: 1fr; gap: 1rem; }
  .offres-grid { grid-template-columns: 1fr; }
  .cold-crash-grid { grid-template-columns: 1fr; gap: 2rem; }
  .location-inner { grid-template-columns: 1fr; }
  .location-img { display: none; }
  .partenaires-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .cta-bar-inner { justify-content: center; text-align: center; }
  .cta-bar-text { justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-scroll { display: none; }
}
