@charset "utf-8";

/* ==========================================================================
   Design tokens
   Sourced from the "Baris Kebab Design System" (claude.ai/design):
   tokens/colors.css, tokens/typography.css, tokens/spacing.css.
   Inlined here so the static site ships a single stylesheet (no @import
   round-trips, no build step).
   ========================================================================== */
:root {
  /* Base palette — sampled from hero__logo.png neon sign & photography */
  --black: #000000;
  --white: #ffffff;
  --neon-red: #e6241f;
  --neon-orange: #ff9100;
  --neon-yellow: #ffc93d;
  --warm-brown-900: #1a120a;
  --warm-brown-700: #3a2415;
  --grey-400: #8a8a8a;
  --grey-200: #d4d4d4;

  /* Semantic aliases */
  --bg-page: var(--black);
  --bg-surface: var(--warm-brown-900);
  --bg-surface-raised: var(--warm-brown-700);
  --fg-primary: var(--white);
  --fg-muted: var(--grey-200);
  --fg-faint: var(--grey-400);
  --accent-primary: var(--neon-red);
  --accent-primary-hover: #d9211d;
  --accent-secondary: var(--neon-orange);
  --accent-secondary-hover: #ffad33;
  --accent-tertiary: var(--neon-yellow);
  --border-subtle: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.28);
  --overlay-scrim: rgba(0, 0, 0, 0.55);
  --focus-ring: var(--neon-orange);

  /* Warm gold hairlines used throughout the marketing page */
  --gold-line: rgba(255, 201, 61, 0.16);
  --gold-line-strong: rgba(255, 201, 61, 0.35);

  /* Typography */
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: var(--font-body);
  --text-hero: clamp(2.5rem, 6vw, 4rem);
  --text-h1: 2rem;
  --text-h2: 1.5rem;
  --text-h3: 1.25rem;
  --text-body: 1rem;
  --text-small: 0.875rem;
  --text-micro: 0.75rem;
  --weight-regular: 400;
  --weight-bold: 700;
  --weight-black: 900;
  --leading-tight: 1.1;
  --leading-normal: 1.4;
  --leading-relaxed: 1.6;
  --tracking-tight: -0.01em;
  --tracking-normal: 0;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 20px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;

  /* Radii, elevation, motion */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-raised: 0 2px 8px rgba(0, 0, 0, 0.35);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 120ms;
  --duration-normal: 200ms;
}

/* ==========================================================================
   Base
   ========================================================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  background: #050302;
  color: var(--fg-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-tertiary);
  text-decoration: none;
}

a:hover {
  color: var(--accent-secondary);
}

::selection {
  background: var(--accent-primary);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  color: var(--black);
  background: var(--accent-tertiary);
  border-radius: var(--radius-sm);
  font-weight: var(--weight-bold);
  transform: translateY(calc(-100% - 20px));
}

.skip-link:focus {
  color: var(--black);
  transform: translateY(0);
}

#main-content:focus {
  outline: none;
}

/* Page shell — warm radial glows over near-black, matching the design. */
.page {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(
      1200px 620px at 82% -6%,
      rgba(255, 145, 0, 0.13),
      transparent 60%
    ),
    radial-gradient(
      1000px 760px at -6% 20%,
      rgba(163, 18, 15, 0.16),
      transparent 55%
    ),
    radial-gradient(
      1200px 940px at 108% 86%,
      rgba(255, 201, 61, 0.09),
      transparent 60%
    ),
    #050302;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip-path: inset(50%);
}

/* Gold foil gradient text (headlines) */
.bk-gold {
  background: linear-gradient(180deg, #fff2cf 0%, #ffc93d 42%, #ff9100 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Hollow gold outline text (marquee alternates) */
.bk-outline {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255, 201, 61, 0.55);
}

.eyebrow {
  color: var(--accent-tertiary);
  font-weight: var(--weight-bold);
  font-size: var(--text-micro);
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.eyebrow--orange {
  color: var(--accent-secondary);
}

/* Decorative rule: gold gradient lines flanking a diamond mark */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.divider__line {
  height: 1px;
  flex: 1;
  max-width: 130px;
}

.divider__line--l {
  background: linear-gradient(90deg, transparent, rgba(255, 201, 61, 0.6));
}

.divider__line--r {
  background: linear-gradient(90deg, rgba(255, 201, 61, 0.6), transparent);
}

.divider--wide .divider__line {
  max-width: 170px;
}

.divider--sm .divider__line {
  max-width: 110px;
}

.divider--xs .divider__line {
  max-width: 90px;
}

/* Floating photo/mark placeholder (replaces <image-slot>). Fills its frame. */
.photo-slot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  background: linear-gradient(
    135deg,
    var(--warm-brown-900),
    var(--warm-brown-700)
  );
  color: var(--fg-faint);
  font-size: 0.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.photo-slot--icon {
  padding: 0;
}

/* A real photo filling a frame/slot (same box as .photo-slot, cropped cover). */
.photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   Buttons / CTA links
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: inherit;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition:
    background-color var(--duration-fast) var(--ease-standard),
    color var(--duration-fast) var(--ease-standard),
    transform var(--duration-fast) var(--ease-standard);
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--accent-primary);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(232, 36, 31, 0.35);
}

.btn--primary:hover {
  background: var(--accent-primary-hover);
  color: var(--white);
}

.btn--secondary {
  background: var(--accent-secondary);
  color: var(--black);
}

.btn--secondary:hover {
  background: var(--accent-secondary-hover);
  color: var(--black);
}

.btn--outline {
  background: transparent;
  color: var(--accent-tertiary);
  border-color: rgba(255, 201, 61, 0.5);
  font-weight: 700;
}

.btn--block {
  width: 100%;
  padding: 15px 24px;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 34px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.nav.is-scrolled {
  background: rgba(5, 3, 2, 0.92);
  border-bottom-color: rgba(255, 201, 61, 0.22);
}

.nav__mark {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  font-weight: var(--weight-black);
  letter-spacing: 0.14em;
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.nav.is-scrolled .nav__mark,
.nav__mark:focus-visible {
  opacity: 1;
}

.nav__mark-sub {
  font-weight: var(--weight-regular);
  color: var(--fg-muted);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav__link {
  color: var(--white);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  color: var(--accent-tertiary);
  border: 1px solid rgba(255, 201, 61, 0.5);
  border-radius: var(--radius-pill);
  letter-spacing: 0.16em;
}

/* ==========================================================================
   Hero (full-bleed fire grill)
   Markup lives in index.html; the fire/particle animation in js/hero-fire.js.
   These are the layout rules that were previously inline on the hero.
   ========================================================================== */
.hero {
  width: 100%;
  height: 100svh;
  position: relative;
  display: flex;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Two full-bleed overlay layers over the photo: the logo (top-left) and the
   mascot (centered). */
.hero__layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}

.hero__layer--logo {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

.hero__logo {
  width: max(30%, 265px);
  height: auto;
  position: relative;
  top: 3%;
  left: 5%;
  object-fit: contain;
  object-position: bottom center;
}

.hero__mascot {
  margin: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
}

@media (max-width: 580px) {
  .hero__layer:not(.hero__layer--logo) {
    justify-content: center;
  }

  .hero__mascot {
    height: min(85%, 140vw);
    max-width: none;
    margin: auto 0 0;
  }
}

/* Hero parallax — drift applied inline by js/main.js. Only the full-bleed scene
   (photo + fire) carries a small computed overscan scale; the cut-outs (logo,
   mascot) move with no scale. Nothing transitions during steady tracking. This
   class is desktop-only and eases both the pointer's return-to-rest and its
   re-entry catch-up. */
.hero.is-parallax-resetting .hero__background,
.hero.is-parallax-resetting .hero__particles,
.hero.is-parallax-resetting .hero__logo,
.hero.is-parallax-resetting .hero__mascot {
  transition: transform 0.45s ease-out;
}

/* ==========================================================================
   Reveal-on-scroll (progressive enhancement; JS adds .bk-pre then removes it)
   ========================================================================== */
[data-reveal] {
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

/* No will-change here on purpose: it would promote all 22 [data-reveal]
   elements to their own GPU layers at once (several are whole sections),
   which tanks scroll performance. The opacity/transform transition below
   composites fine without the hint. */
[data-reveal].bk-pre {
  opacity: 0;
  transform: translateY(36px);
}

/* ==========================================================================
   Keyframes + animated helpers
   ========================================================================== */
@keyframes bk-emberglow {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

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

@keyframes bk-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.bk-float {
  animation: bk-float 5s ease-in-out infinite;
}

/* ==========================================================================
   Section: intro
   ========================================================================== */
.intro {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 96px 32px 8px;
  text-align: center;
}

.intro__hamsa {
  position: absolute;
  top: 26px;
  right: 8%;
  opacity: 0.85;
}

.intro__divider {
  margin-bottom: 26px;
}

.intro .eyebrow {
  display: block;
  color: var(--accent-secondary);
  letter-spacing: 0.34em;
  margin-bottom: 22px;
}

.bk-mega {
  font-weight: var(--weight-black);
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
}

.intro__note,
.headline-note {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-style: italic;
  color: var(--fg-muted);
  font-size: 1.3rem;
  margin-top: 16px;
}

.intro__lead {
  color: var(--fg-muted);
  line-height: 1.75;
  font-size: 1.1rem;
  margin: 28px auto 0;
  max-width: 54ch;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
}

/* ==========================================================================
   Section: kinetic marquee
   ========================================================================== */
.marquee {
  margin-top: 80px;
  padding: 26px 0;
  overflow: hidden;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  background: linear-gradient(180deg, rgba(26, 18, 10, 0.4), transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  align-items: center;
  font-weight: var(--weight-black);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  letter-spacing: -0.01em;
  animation: bk-marquee 36s linear infinite;
  /* One perpetual animation → one dedicated layer, so it never repaints the
     page's radial-gradient background behind it. (Sanctioned use: a single
     always-animating element, not the 22-element anti-pattern above.) */
  will-change: transform;
}

.marquee__word {
  padding: 0 32px;
}

/* ==========================================================================
   Shared: two-column media/text sections + photo frames
   ========================================================================== */
.split {
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 32px;
}

.split__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px;
  align-items: center;
}

.split__media {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 400px;
}

.section-title {
  font-weight: var(--weight-black);
  font-size: clamp(2.1rem, 4.4vw, 3.1rem);
  line-height: 1.02;
  margin: 0;
}

.section-text {
  color: var(--fg-muted);
  font-size: 1.06rem;
  line-height: 1.75;
  margin: 22px 0 0;
  max-width: 46ch;
}

.frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-line-strong);
  box-shadow:
    0 0 70px rgba(255, 145, 0, 0.16),
    var(--shadow-card);
}

.frame--arch {
  border-radius: 200px 200px 14px 14px;
}

.frame--tall {
  aspect-ratio: 3 / 4;
}

.frame--portrait {
  aspect-ratio: 4 / 5;
}

.frame--float {
  position: absolute;
  bottom: -22px;
  right: -14px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

/* Stats row (feu de bois) */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  margin-top: 36px;
}

.stat__value {
  font-weight: var(--weight-black);
  font-size: 2.4rem;
}

.stat__label {
  color: var(--fg-faint);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.stat__rule {
  width: 1px;
  background: rgba(255, 201, 61, 0.2);
}

/* ==========================================================================
   Section: signature portal
   ========================================================================== */
.portal-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 32px 40px;
}

.portal {
  position: relative;
  height: min(78vh, 640px);
  border-radius: 340px 340px 20px 20px;
  overflow: hidden;
  border: 1px solid var(--gold-line-strong);
  box-shadow:
    0 0 90px rgba(255, 145, 0, 0.14),
    var(--shadow-card);
}

.portal__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 3, 2, 0.85));
  pointer-events: none;
}

.portal__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding: 0 24px 44px;
  pointer-events: none;
}

.portal__eyebrow {
  color: var(--accent-secondary);
  font-weight: var(--weight-bold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
}

.portal__title {
  font-weight: var(--weight-black);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

/* ==========================================================================
   Section: la carte (menu)
   ========================================================================== */
.carte {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.menu-card {
  position: relative;
  padding: clamp(28px, 5vw, 68px);
  border: 1px solid rgba(255, 201, 61, 0.3);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(26, 18, 10, 0.92), rgba(8, 5, 3, 0.94)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='none' stroke='%23ffc93d' stroke-opacity='0.06' stroke-width='1'%3E%3Crect x='24' y='24' width='24' height='24'/%3E%3Crect x='24' y='24' width='24' height='24' transform='rotate(45 36 36)'/%3E%3Ccircle cx='36' cy='36' r='5'/%3E%3C/g%3E%3C/svg%3E");
  box-shadow:
    0 0 90px rgba(255, 145, 0, 0.08),
    var(--shadow-card);
}

.menu-card__corner {
  position: absolute;
  top: 20px;
}

.menu-card__corner--l {
  left: 20px;
}

.menu-card__corner--r {
  right: 20px;
  transform: scaleX(-1);
}

.menu-card__head {
  text-align: center;
}

.menu-card__kicker {
  color: var(--accent-tertiary);
  font-weight: var(--weight-bold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
}

.menu-card__title {
  font-weight: var(--weight-black);
  font-size: clamp(2.6rem, 6vw, 4rem);
  margin: 10px 0 4px;
}

.menu-card__sub {
  color: var(--fg-muted);
  font-style: italic;
}

.menu-card__divider {
  margin: 24px auto 0;
  max-width: 340px;
}

.menu-group {
  text-align: center;
  margin: 52px 0 30px;
}

.menu-group--spaced {
  margin-top: 64px;
}

.menu-group__title {
  font-weight: var(--weight-black);
  font-size: 1.65rem;
  margin: 0;
  letter-spacing: 0.01em;
}

.menu-group__sub {
  color: var(--accent-secondary);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-top: 6px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 34px 56px;
}

.menu-grid--single {
  max-width: 480px;
  margin-inline: auto;
}

.menu-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.menu-item__icon {
  position: relative;
  width: 52px;
  height: 60px;
  flex: none;
  border: 1px solid rgba(255, 201, 61, 0.4);
  border-radius: 26px 26px 6px 6px;
  overflow: hidden;
  background: var(--warm-brown-700);
}

.menu-item__body {
  flex: 1;
  min-width: 0;
}

.menu-item__row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.menu-item__name {
  font-weight: 800;
  font-size: 1.12rem;
}

.menu-item__desc {
  margin: 5px 0 0;
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.leader {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 201, 61, 0.35);
  transform: translateY(-4px);
}

.price {
  font-weight: 800;
  color: var(--accent-tertiary);
  white-space: nowrap;
}

.menu-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px;
  margin-top: 64px;
}

.menu-col__head {
  text-align: center;
  margin-bottom: 26px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-row__name {
  font-weight: var(--weight-bold);
}

.price-row .leader {
  border-bottom-color: rgba(255, 201, 61, 0.3);
}

/* ==========================================================================
   Section: statement band
   ========================================================================== */
.statement {
  position: relative;
  padding: 96px 24px;
  text-align: center;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23ff9100' stroke-opacity='0.08' stroke-width='1'%3E%3Crect x='26' y='26' width='28' height='28'/%3E%3Crect x='26' y='26' width='28' height='28' transform='rotate(45 40 40)'/%3E%3Ccircle cx='40' cy='40' r='6'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(
      700px 300px at 50% 50%,
      rgba(255, 145, 0, 0.1),
      transparent 70%
    );
}

.statement__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.statement__quote {
  font-weight: var(--weight-black);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}

.statement__attr {
  color: var(--fg-faint);
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* ==========================================================================
   Section: galerie
   ========================================================================== */
.galerie {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px 40px;
}

.galerie__head {
  text-align: center;
  margin-bottom: 38px;
}

.galerie__title {
  font-weight: var(--weight-black);
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin: 8px 0 0;
}

.galerie__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.galerie__cell {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 50% 50% 10px 10px / 37.5% 37.5% 10px 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 201, 61, 0.28);
}

/* ==========================================================================
   Section: histoire
   ========================================================================== */
.histoire__quote {
  font-style: italic;
  color: var(--accent-tertiary);
  margin: 24px 0 0;
  font-size: 1.3rem;
  line-height: 1.4;
}

.histoire__attr {
  color: var(--fg-faint);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

.section-text + .section-text {
  margin-top: 16px;
}

/* ==========================================================================
   Section: avis (reviews)
   ========================================================================== */
.avis {
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}

.avis__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 88px 32px;
}

.avis__head {
  text-align: center;
  margin-bottom: 44px;
}

.avis__stars {
  color: var(--accent-tertiary);
  letter-spacing: 0.35em;
  font-size: 1.1rem;
  animation: bk-emberglow 4s ease-in-out infinite;
}

.avis__title {
  font-weight: var(--weight-black);
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin: 14px 0 0;
}

.avis__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.review {
  padding: 28px;
  border: 1px solid rgba(255, 201, 61, 0.22);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(58, 36, 21, 0.6),
    rgba(26, 18, 10, 0.6)
  );
  box-shadow: var(--shadow-card);
}

.review__stars {
  color: var(--accent-tertiary);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.review__text {
  margin: 0 0 18px;
  line-height: 1.6;
}

.review__name {
  font-weight: var(--weight-bold);
  font-size: 0.9rem;
}

.review__place {
  color: var(--fg-faint);
  font-size: 0.8rem;
}

/* ==========================================================================
   Section: SEO copy (à propos)
   ========================================================================== */
.apropos {
  max-width: 900px;
  margin: 0 auto;
  padding: 88px 32px 40px;
  text-align: center;
}

.apropos__title {
  font-weight: var(--weight-black);
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.05;
  margin: 12px 0 0;
}

.apropos__text {
  color: var(--fg-muted);
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 26px auto 0;
  max-width: 60ch;
}

.apropos__text + .apropos__text {
  margin-top: 18px;
}

.apropos__text strong {
  color: var(--white);
  font-weight: var(--weight-bold);
}

/* ==========================================================================
   Section: FAQ
   ========================================================================== */
.faq {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 32px 96px;
}

.faq__head {
  text-align: center;
  margin-bottom: 40px;
}

.faq__divider {
  margin-bottom: 22px;
}

.faq__title {
  font-weight: var(--weight-black);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 10px 0 0;
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  padding: 24px 0;
  border-top: 1px solid var(--gold-line);
}

.faq__item:last-child {
  border-bottom: 1px solid var(--gold-line);
}

.faq__q {
  font-weight: 800;
  font-size: 1.12rem;
  margin: 0 0 8px;
}

.faq__a {
  color: var(--fg-muted);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   Section: contact
   ========================================================================== */
.contact {
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 32px;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 56px;
}

.contact__title {
  font-weight: var(--weight-black);
  font-size: clamp(2.1rem, 4.4vw, 2.8rem);
  line-height: 1.02;
  margin: 0 0 26px;
}

.hours {
  display: flex;
  flex-direction: column;
  max-width: 380px;
}

.hours__row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--gold-line);
}

.hours__time {
  color: var(--fg-muted);
}

.hours__time--accent {
  color: var(--accent-secondary);
  font-weight: var(--weight-bold);
}

.order-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  border: 1px solid rgba(255, 201, 61, 0.3);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(26, 18, 10, 0.92),
    rgba(8, 5, 3, 0.92)
  );
  box-shadow:
    0 0 60px rgba(255, 145, 0, 0.08),
    var(--shadow-card);
}

.order-card__watermark {
  position: absolute;
  right: -20px;
  bottom: -24px;
}

.order-card__title {
  position: relative;
  font-weight: var(--weight-black);
  font-size: 1.45rem;
  margin: 0 0 6px;
}

.order-card__lead {
  position: relative;
  color: var(--fg-muted);
  margin: 0 0 24px;
}

.order-card__actions {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   Prank reveal modal
   ========================================================================== */
.prank-modal {
  width: min(560px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  overflow: hidden;
  color: var(--fg-primary);
  border: 1px solid rgba(255, 201, 61, 0.35);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 145, 0, 0.14), transparent 55%),
    var(--bg-surface);
  box-shadow:
    0 0 90px rgba(255, 145, 0, 0.12),
    var(--shadow-card);
}

.prank-modal::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}

.prank-modal__inner {
  position: relative;
  padding: clamp(40px, 8vw, 64px);
  text-align: center;
}

.prank-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  color: var(--fg-muted);
  font: inherit;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
}

.prank-modal__close svg {
  display: block;
}

.prank-modal__close:hover {
  color: var(--accent-tertiary);
  border-color: var(--gold-line-strong);
}

.prank-modal__title {
  max-width: 440px;
  margin: 10px auto 0;
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: var(--weight-black);
  line-height: var(--leading-tight);
}

.prank-modal__text {
  max-width: 430px;
  margin: 22px auto 0;
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: var(--leading-relaxed);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--gold-line);
  padding: 52px 32px;
  text-align: center;
  color: var(--fg-faint);
  font-size: 0.9rem;
}

.site-footer__divider {
  margin-bottom: 20px;
}

.site-footer__brand {
  font-weight: var(--weight-black);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.site-footer__tagline {
  margin: 0 0 4px;
  font-style: italic;
}

.site-footer__legal {
  margin: 0;
}

/* ==========================================================================
   Responsive + motion preferences
   ========================================================================== */
@media (max-width: 820px) {
  .nav__links {
    display: none;
  }
  .bk-mega {
    font-size: 16vw;
  }
}

@media (max-width: 580px) {
  .nav,
  .intro,
  .split,
  .portal-section,
  .carte,
  .statement,
  .galerie,
  .avis__inner,
  .apropos,
  .faq,
  .contact,
  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .split__grid,
  .menu-grid,
  .menu-cols,
  .avis__grid,
  .contact__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .stats > :not(.stat__rule) {
    text-align: center;
  }

  .stats > :last-child {
    grid-column: 1 / -1;
  }

  .stat__rule {
    display: none;
  }

  .menu-card {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .marquee__track,
  .bk-float,
  .avis__stars {
    animation: none;
  }
  [data-reveal] {
    transition: none;
  }
}

@media (forced-colors: active) {
  .bk-gold,
  .bk-outline {
    color: CanvasText;
    background: none;
    -webkit-text-fill-color: currentColor;
    -webkit-text-stroke: 0;
  }
}
