/* Saint Curry — design system */

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

:root {
  --primary: #DC2626;
  --primary-dark: #B91C1C;
  --secondary: #F87171;
  --cta: #CA8A04;
  --cta-light: #FDE68A;
  --bg: #FEF2F2;
  --bg-warm: #FFF7ED;
  --text: #450A0A;
  --text-muted: #7F1D1D;
  --cream: #FEF2F2;
  --serif: 'Playfair Display SC', Georgia, serif;
  --sans: 'Karla', system-ui, sans-serif;
  --header-h: 72px;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(69, 10, 10, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --sticky-cta-h: 56px;
}

html {
  scroll-behavior: auto;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--sticky-cta-h) + env(safe-area-inset-bottom, 0px));
}

body.is-loading { overflow: hidden; }
body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 10000;
  padding: 0.5rem 1rem; background: var(--primary); color: #fff;
  border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

/* Progress */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--cta), var(--primary));
  z-index: 10001; transition: width 0.1s linear;
}

/* Preloader */
.preloader {
  position: fixed; inset: 0; z-index: 10002;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { font-family: var(--serif); font-size: 2rem; color: var(--primary); }
.preloader-bar {
  width: 200px; height: 4px; background: rgba(220, 38, 38, 0.15);
  border-radius: 4px; margin: 1.5rem auto; overflow: hidden;
}
.preloader-bar-fill {
  display: block; height: 100%; width: 0; background: var(--cta);
  animation: preloader-fill 1s var(--ease) forwards;
}
@keyframes preloader-fill { to { width: 100%; } }
.preloader-skip {
  margin-top: 1rem; background: none; border: none;
  color: var(--text-muted); font: inherit; cursor: pointer;
  text-decoration: underline;
}

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.header.is-scrolled {
  background: rgba(254, 242, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(69, 10, 10, 0.06);
}
.nav {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  height: 100%; display: flex; align-items: center; gap: 2rem;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name { font-family: var(--serif); font-size: 1.25rem; color: var(--primary); }
.nav-logo-sub { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.04em; }
.nav-links {
  display: none; list-style: none; gap: 1.5rem; margin-left: auto;
}
.nav-link {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  transition: color 0.2s;
}
.nav-link:hover, .nav-link:focus-visible { color: var(--primary); }
.nav-cta { display: none; }
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  margin-left: auto; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: var(--header-h); left: 0; right: 0;
  background: var(--cream); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transform: translateY(-120%); opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s;
  box-shadow: var(--shadow);
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; }
.mobile-menu a { font-size: 1.1rem; font-weight: 500; padding: 0.5rem 0; }

.nav-cta { display: none; }
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; margin-left: 0; }
  .nav-toggle { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.75rem; border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600; font-size: 0.95rem; line-height: 1.2;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent; transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
  position: relative; overflow: hidden;
  box-sizing: border-box;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--primary-dark); transform: scale(1.03); }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: rgba(220, 38, 38, 0.08); transform: scale(1.03); }
.btn:active, .btn.is-pressed { transform: scale(0.98); }

.btn-ripple .ripple {
  position: absolute; border-radius: 50%; background: rgba(255,255,255,0.4);
  transform: scale(0); animation: ripple 0.6s ease-out; pointer-events: none;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* Hero */
.hero {
  position: relative;
  min-height: 72vh;
  min-height: 72dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 1.5rem) 1.5rem 0;
  overflow: hidden;
}
.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 15% 35%, rgba(202, 138, 4, 0.42), transparent),
    radial-gradient(ellipse 70% 60% at 85% 55%, rgba(220, 38, 38, 0.32), transparent),
    radial-gradient(ellipse 55% 45% at 50% 95%, rgba(248, 113, 113, 0.28), transparent);
  animation: mesh-shift 20s ease-in-out infinite alternate;
}
.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-family: var(--serif);
  font-size: clamp(6rem, 22vw, 14rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
@keyframes mesh-shift {
  0% { filter: hue-rotate(0deg); transform: scale(1); }
  100% { filter: hue-rotate(8deg); transform: scale(1.05); }
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.06; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto; width: 100%;
  display: grid; gap: 1.5rem; align-items: center;
  flex: 1;
  padding-bottom: 1.5rem;
}
@media (max-width: 899px) {
  .hero {
    justify-content: flex-start;
    min-height: max(78dvh, 680px);
    padding-top: calc(var(--header-h) + 1.75rem);
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    padding-top: 0.75rem;
    padding-bottom: 1rem;
  }
  .hero-visual {
    order: -1;
    min-height: 0;
    flex: 0 0 auto;
    margin-top: 0.25rem;
    margin-bottom: 1.75rem;
  }
  .hero-food-group {
    height: min(34vw, 175px);
    max-height: 175px;
    width: min(100%, 300px);
  }
  .hero-sandwich { width: min(58%, 200px); }
  .hero-curry { width: min(32%, 110px); }
  .hero-content {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.7rem;
    width: 100%;
  }
  .hero-eyebrow { margin-bottom: 0; }
  .hero-title {
    font-size: clamp(2.2rem, 9.5vw, 2.85rem);
    line-height: 1.08;
    margin-bottom: 0;
    letter-spacing: 0.01em;
  }
  .hero-title .kinetic-word {
    display: inline-block;
  }
  .hero-title .kinetic-word + .kinetic-word {
    margin-left: 0.22em;
  }
  .hero-tagline {
    font-size: 0.95rem;
    margin-bottom: 0;
    max-width: 22rem;
    line-height: 1.5;
  }
  .hero-chips {
    justify-content: center;
    margin-bottom: 0;
  }
  .hero-cta {
    margin-top: 1.5rem;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0;
  }
  .hero-cta .btn {
    width: 100%;
    max-width: 18.5rem;
    min-height: 3.125rem;
    padding: 0.9rem 1.5rem;
    line-height: 1.2;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .hero-watermark {
    font-size: clamp(3.75rem, 24vw, 6rem);
    top: 46%;
  }
}
@media (max-width: 899px) {
  .hero-inner { grid-template-rows: unset; }
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; gap: 2rem; }
}
.hero-eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cta); margin-bottom: 0.75rem;
}
.hero-title {
  font-family: var(--serif); font-size: clamp(2.75rem, 9vw, 4.5rem);
  line-height: 1.05; color: var(--primary); margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(254, 242, 242, 0.9);
  letter-spacing: 0.02em;
}
.kinetic-word { display: block; }
.kinetic-letter {
  display: inline-block;
  opacity: 1;
  transform: none;
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.15rem); color: var(--text-muted);
  max-width: 28rem; margin-bottom: 1rem;
}
.hero-chips {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  list-style: none; margin: 0 0 1.25rem; padding: 0;
}
.hero-chips li {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(220, 38, 38, 0.15);
  color: var(--primary);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-visual {
  display: flex; justify-content: center; align-items: center;
  min-height: 260px;
}
.hero-food-group {
  position: relative;
  width: min(100%, 460px);
  height: min(52vw, 400px);
  max-height: 400px;
  display: flex; align-items: flex-end; justify-content: center;
  animation: hero-float 5s ease-in-out infinite;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-sandwich { width: min(78%, 360px); height: auto; z-index: 2; }
.hero-curry {
  position: absolute; right: 2%; bottom: 8%;
  width: min(38%, 150px); z-index: 1;
}
.sandwich-layer { transform-origin: center bottom; }

.steam { animation: steam-rise 2.5s ease-in-out infinite; }
.steam-2 { animation-delay: 0.4s; }
.steam-3 { animation-delay: 0.8s; }
@keyframes steam-rise {
  0%, 100% { opacity: 0.2; transform: translateY(0); }
  50% { opacity: 0.6; transform: translateY(-8px); }
}

.spice {
  position: absolute; width: 12px; height: 12px; border-radius: 50%;
  animation: spice-drift 7s ease-in-out infinite;
}
.spice-1 { background: var(--cta); top: 8%; left: 8%; width: 14px; height: 14px; animation-delay: 0s; }
.spice-2 { background: var(--primary); top: 28%; right: 6%; width: 10px; height: 10px; animation-delay: -2s; }
.spice-3 { background: #22C55E; bottom: 38%; left: 12%; width: 12px; height: 12px; animation-delay: -4s; }
@keyframes spice-drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(8px, -12px) rotate(120deg); }
  66% { transform: translate(-6px, -8px) rotate(240deg); }
}

/* Marquee — pleine largeur, défilement continu */
.marquee {
  position: relative;
  flex-shrink: 0;
  width: calc(100% + 3rem);
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  overflow: hidden;
  padding: 1.1rem 0;
  background: var(--primary);
  color: #fff;
  z-index: 2;
}
.marquee--hero {
  margin-top: auto;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}
.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: clamp(0.85rem, 2vw, 1rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding-inline: 1.5rem;
  white-space: nowrap;
}
.marquee-item::after {
  content: '·';
  margin-left: 1.5rem;
  opacity: 0.55;
  letter-spacing: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .hero-mesh, .steam, .spice, .hero-food-group { animation: none; }
}

.section-divider svg { display: block; width: 100%; height: 24px; }
.drip-path { transform-origin: center top; }

/* Sections */
.section { padding: 5rem 1.5rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 2.5rem; text-align: center; }
.section-eyebrow {
  display: block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cta); margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 5vw, 3rem); color: var(--text);
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  will-change: transform, opacity;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
html.no-gsap .reveal {
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: auto;
}

/* Bento */
.signatures { background: var(--bg-warm); }
.bento-grid {
  display: grid; gap: 1.5rem;
}
@media (min-width: 768px) {
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
}
.bento-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.3s var(--ease), box-shadow 0.3s;
  cursor: pointer;
}
.bento-card.is-pressed, .bento-card:hover {
  transform: perspective(800px) rotateX(4deg) translateY(-6px);
  box-shadow: 0 20px 50px rgba(69, 10, 10, 0.15);
}
.bento-card-image {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.bento-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s var(--ease);
}
.bento-img--milano { object-position: 55% 45%; }
.bento-img--curry { object-position: 35% 55%; }
.bento-card.is-visible .bento-card-image img,
.reveal.is-visible .bento-card-image img {
  clip-path: inset(0 0 0 0);
}
.bento-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--cta); color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 0.35rem 0.75rem; border-radius: 999px;
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(202, 138, 4, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(202, 138, 4, 0); }
}
.bento-card-body { padding: 1.25rem; }
.bento-card-body h3 { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 0.35rem; }
.bento-card-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.bento-price { font-weight: 700; color: var(--primary); font-size: 1.1rem; }

/* Reviews */
.reviews-band {
  display: grid; gap: 2rem; padding: 2.5rem;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
}
@media (min-width: 768px) { .reviews-band { grid-template-columns: auto 1fr 1fr; align-items: center; } }
.reviews-score strong { font-size: 2rem; color: var(--primary); }
.reviews-link { color: var(--cta); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.reviews-link:hover { color: var(--primary); }
.stars { display: flex; gap: 4px; margin-bottom: 0.5rem; }
.star {
  width: 20px; height: 20px; background: #E5E7EB;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  transition: background 0.4s;
}
.star.is-filled { background: var(--cta); }
.review-quote { font-style: italic; color: var(--text-muted); font-size: 0.95rem; }
.review-quote cite { display: block; margin-top: 0.5rem; font-style: normal; font-weight: 600; color: var(--text); }

/* About */
.about-grid {
  display: grid; gap: 3rem; align-items: center;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center;
}
.stat .counter {
  display: block; font-family: var(--serif); font-size: 2.5rem; color: var(--primary);
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* Menu */
.menu-section { background: var(--bg-warm); }
.menu-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem; border-radius: 4px; margin-bottom: 0.5rem;
}
.menu-tag--halal { background: rgba(220, 38, 38, 0.12); color: var(--primary); }
.menu-tag--vege { background: rgba(34, 197, 94, 0.15); color: #15803d; }
.menu-tag--vegan { background: rgba(34, 197, 94, 0.2); color: #166534; }
.menu-price--note { font-size: 0.9rem; color: var(--text-muted); }
.menu-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center;
  margin-bottom: 2rem; position: sticky; top: var(--header-h);
  z-index: 100; padding: 1rem 0; background: var(--bg-warm);
}
.menu-tab {
  padding: 0.6rem 1.2rem; border: none; border-radius: 999px;
  background: transparent; font: inherit; font-weight: 500;
  color: var(--text-muted); cursor: pointer; position: relative;
  transition: color 0.2s, background 0.2s;
}
.menu-tab.is-active { color: #fff; background: var(--primary); }
.menu-tab:hover { color: var(--primary); }
.menu-tab.is-active:hover { color: #fff; }

.menu-panel { display: none; }
.menu-panel.is-active { display: block; }
.menu-grid {
  display: grid; gap: 1rem;
}
@media (min-width: 600px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }

.menu-card {
  background: #fff; padding: 1.25rem 1.5rem; border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(69, 10, 10, 0.06);
  position: relative; overflow: hidden; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.menu-card:hover, .menu-card.is-active, .menu-card.is-pressed {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.menu-card h3 { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 0.25rem; }
.menu-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.menu-price { font-weight: 700; color: var(--primary); }

.menu-steam {
  position: absolute; top: 0.5rem; right: 1rem; width: 24px; height: 32px;
  opacity: 0; transition: opacity 0.3s;
  background: linear-gradient(to top, transparent, rgba(202,138,4,0.3));
  border-radius: 50% 50% 0 0;
  animation: steam-rise 2s ease-in-out infinite;
}
.menu-card--hot:hover .menu-steam,
.menu-card--hot.is-active .menu-steam,
.menu-card--hot.is-pressed .menu-steam { opacity: 1; }

.menu-card.menu-card-enter {
  opacity: 0; transform: translateY(20px);
}

/* Hours */
.open-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1rem; padding: 0.5rem 1rem;
  background: rgba(34, 197, 94, 0.12); border-radius: 999px;
  font-size: 0.9rem; font-weight: 600;
}
.open-badge.is-closed { background: rgba(127, 29, 29, 0.1); }
.open-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22C55E;
}
.open-badge.is-closed .open-dot { background: var(--text-muted); }
.open-badge:not(.is-closed) .open-dot { animation: pulse-dot 1.5s ease-in-out infinite; }
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.hours-table {
  width: 100%; border-collapse: collapse; background: #fff;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.hours-table th, .hours-table td {
  padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid rgba(69,10,10,0.06);
}
.hours-table th { background: var(--primary); color: #fff; font-weight: 600; }
.hours-table tr.is-today td { background: rgba(202, 138, 4, 0.12); font-weight: 600; }

/* Location */
.location-grid {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 768px) { .location-grid { grid-template-columns: 1fr 1.2fr; } }
.location-address { margin: 1rem 0 1.5rem; font-size: 1.1rem; line-height: 1.8; }
.location-map {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 16/10;
  display: grid;
}
.location-map > * { grid-area: 1 / 1; width: 100%; height: 100%; min-height: 280px; }
.location-map iframe { width: 100%; height: 100%; border: 0; }

/* Map placeholder (RGPD) */
.map-placeholder[hidden] { display: none !important; }
#mapIframe[hidden] { display: none !important; }
.map-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  padding: 2rem; text-align: center;
  background: linear-gradient(135deg, #FEF2F2 0%, #FFF7ED 100%);
}
.map-placeholder p { color: var(--text-muted); max-width: 28ch; margin: 0; }

/* Contact */
.contact { background: var(--bg-warm); text-align: center; }
.contact-inner p { margin: 0.5rem 0; }
.contact-inner a:hover { color: var(--primary); }
.contact-social { display: flex; gap: 1.5rem; justify-content: center; margin-top: 1.5rem; }
.contact-social a { font-weight: 600; color: var(--primary); }

/* Footer */
.footer {
  padding: 2.5rem 1.5rem; background: var(--text); color: rgba(255,255,255,0.7);
  position: relative;
}
.footer::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.footer-inner { text-align: center; position: relative; }
.footer-logo { font-family: var(--serif); font-size: 1.25rem; color: #fff; display: block; margin-bottom: 0.5rem; }
.footer-legal { display: inline-block; margin-top: 0.75rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.footer-legal:hover { color: #fff; }
.footer-legal-btn {
  background: none; border: none; padding: 0; font: inherit; cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
}
.footer-legal-nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; justify-content: center; margin-top: 0.75rem; }

/* Legal pages */
.legal-header {
  padding: 1rem 0; border-bottom: 1px solid rgba(69, 10, 10, 0.08);
  background: var(--bg-warm);
}
.legal-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.legal-back { font-size: 0.9rem; font-weight: 600; color: var(--primary); }
.legal-logo { font-family: var(--serif); font-size: 1.25rem; color: var(--text); }
.legal-page { padding: 3rem 0 4rem; }
.legal-content { max-width: 720px; }
.legal-content h1 { font-family: var(--serif); font-size: clamp(1.75rem, 4vw, 2.25rem); margin-bottom: 0.5rem; }
.legal-updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.legal-content section { margin-bottom: 2rem; }
.legal-content h2 { font-size: 1.15rem; margin-bottom: 0.75rem; color: var(--primary); }
.legal-content h3 { font-size: 1rem; margin: 1rem 0 0.5rem; }
.legal-content p, .legal-content li { color: var(--text-muted); line-height: 1.7; }
.legal-content ul { padding-left: 1.25rem; margin: 0.5rem 0; }
.legal-content a { color: var(--primary); font-weight: 600; }
.legal-content code { font-size: 0.85em; background: rgba(69, 10, 10, 0.06); padding: 0.1em 0.35em; border-radius: 4px; }

/* Cookie banner */
.cookie-banner[hidden] { display: none !important; }
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1001;
  padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0));
  background: rgba(69, 10, 10, 0.96); color: rgba(255,255,255,0.9);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.15);
  box-sizing: border-box;
  max-width: 100vw;
  overflow-x: hidden;
}
.cookie-banner-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-sizing: border-box;
}
.cookie-banner p { margin: 0; font-size: 0.9rem; line-height: 1.5; flex: 1 1 200px; min-width: 0; }
.cookie-banner a { color: #FCD34D; text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 1 1 220px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}
.cookie-btn {
  padding: 0.65rem 0.9rem;
  font-size: 0.82rem;
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
}
.cookie-banner .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.cookie-banner .btn-outline:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 640px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner p { flex: none; width: 100%; font-size: 0.85rem; }
  .cookie-banner-actions { flex-direction: column; width: 100%; }
  .cookie-banner-actions .cookie-btn { width: 100%; flex: none; }
}

/* Cookie preferences panel */
.cookie-panel[hidden] { display: none !important; }
.cookie-panel {
  position: fixed; inset: 0; z-index: 1002;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  background: rgba(69, 10, 10, 0.55);
  backdrop-filter: blur(4px);
}
.cookie-panel-dialog {
  width: min(100%, 480px); max-height: min(90vh, 640px); overflow: auto;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.5rem;
}
.cookie-panel-header {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  margin-bottom: 0.75rem;
}
.cookie-panel-header h2 { font-family: var(--serif); font-size: 1.35rem; margin: 0; }
.cookie-panel-close {
  background: none; border: none; font-size: 1.75rem; line-height: 1;
  color: var(--text-muted); cursor: pointer; padding: 0.1rem 0.35rem;
}
.cookie-panel-close:hover { color: var(--primary); }
.cookie-panel-intro { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin: 0 0 1.25rem; }
.cookie-panel-list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 0.75rem; }
.cookie-panel-item {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem; border: 1px solid rgba(69, 10, 10, 0.08); border-radius: 12px;
  background: var(--bg-warm);
}
.cookie-panel-item-text { display: grid; gap: 0.2rem; }
.cookie-panel-item-text strong { font-size: 0.95rem; }
.cookie-panel-item-text span { font-size: 0.82rem; color: var(--text-muted); line-height: 1.45; }
.cookie-panel-badge {
  flex-shrink: 0; font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--primary); white-space: nowrap;
}
.cookie-panel-actions {
  display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: stretch;
}
.cookie-panel-actions .cookie-btn { flex: 1 1 calc(50% - 0.35rem); min-width: 0; }
@media (max-width: 480px) {
  .cookie-panel-actions { flex-direction: column; }
  .cookie-panel-actions .cookie-btn { width: 100%; flex: none; }
}
.cookie-toggle { position: relative; display: inline-flex; cursor: pointer; }
.cookie-toggle input {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.cookie-toggle-ui {
  width: 46px; height: 26px; border-radius: 999px; background: #D1D5DB;
  position: relative; transition: background 0.2s;
}
.cookie-toggle-ui::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%; background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15); transition: transform 0.2s;
}
.cookie-toggle input:checked + .cookie-toggle-ui { background: var(--primary); }
.cookie-toggle input:checked + .cookie-toggle-ui::after { transform: translateX(20px); }
.cookie-toggle input:focus-visible + .cookie-toggle-ui { outline: 2px solid var(--cta); outline-offset: 2px; }
body.cookie-panel-open { overflow: hidden; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  display: flex; background: rgba(254, 242, 242, 0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(69, 10, 10, 0.08);
  padding-bottom: env(safe-area-inset-bottom, 0);
  transform: translateY(100%); transition: transform 0.4s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta-link {
  flex: 1; text-align: center; padding: 1rem 0.5rem;
  font-weight: 600; font-size: 0.9rem; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.sticky-cta-link:hover { background: rgba(220, 38, 38, 0.06); color: var(--primary); }
.sticky-cta-link--accent { background: var(--primary); color: #fff; }
.sticky-cta-link--accent:hover { background: var(--primary-dark); color: #fff; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .kinetic-letter { opacity: 1; transform: none; }
  .hero-cta { opacity: 1; }
  .bento-card-image img { clip-path: none; }
  .preloader { display: none; }
}
