/* ═══════════════════════════════════════════════
   Ronron et Gourmandises — French Editorial Design
   A cat café in Orthez, France
   ═══════════════════════════════════════════════ */

:root {
  /* Palette — Deep olive meets warm terracotta */
  --olive: #3D4F3D;
  --olive-light: #556B55;
  --olive-pale: #8FA58F;
  --terra: #C17A50;
  --terra-light: #D4956E;
  --terra-dark: #A86540;
  --espresso: #1E1E1C;
  --linen: #F8F3ED;
  --cream: #FFFBF7;
  --parchment: #EDE6DC;
  --stone: #D5CBBD;
  --text: #2B2B28;
  --text-soft: #5A5A55;
  --text-faded: #8E8E87;

  /* Typography */
  --font-serif: 'Libre Baskerville', 'Georgia', serif;
  --font-sans: 'Outfit', 'Helvetica Neue', sans-serif;

  /* Spacing scale */
  --s-2xs: 0.25rem;
  --s-xs: 0.5rem;
  --s-sm: 0.75rem;
  --s-md: 1rem;
  --s-lg: 1.5rem;
  --s-xl: 2rem;
  --s-2xl: 3rem;
  --s-3xl: 4.5rem;
  --s-4xl: 6rem;
  --s-5xl: 8rem;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-pill: 9999px;

  /* Shadows */
  --sh-soft: 0 2px 20px rgba(30, 30, 28, 0.06);
  --sh-card: 0 8px 30px rgba(30, 30, 28, 0.08);
  --sh-lifted: 0 20px 50px rgba(30, 30, 28, 0.12);
  --sh-photo: 0 12px 40px rgba(30, 30, 28, 0.15);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 200ms var(--ease-out);
  --t-base: 400ms var(--ease-out);
  --t-slow: 700ms var(--ease-out);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Linen texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 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='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 600; }

p {
  margin-bottom: var(--s-md);
  color: var(--text-soft);
}

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--s-xl);
}

.section {
  padding: var(--s-5xl) 0;
  position: relative;
}

.section--cream { background: var(--cream); }
.section--linen { background: var(--linen); }
.section--olive {
  background: var(--olive);
  color: var(--linen);
}
.section--olive h2,
.section--olive h3,
.section--olive h4 { color: var(--linen); }
.section--olive p { color: rgba(248, 243, 237, 0.75); }
.section--olive .section-label { color: var(--terra-light); }

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 243, 237, 0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(213, 203, 189, 0.4);
  transition: box-shadow var(--t-base), background var(--t-base);
}

.header--scrolled {
  background: rgba(248, 243, 237, 0.98);
  box-shadow: 0 4px 20px rgba(30, 30, 28, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-md) var(--s-xl);
  max-width: 1240px;
  margin: 0 auto;
}

.header__logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--olive);
  letter-spacing: -0.01em;
}

.header__logo span {
  font-weight: 400;
  font-style: italic;
  color: var(--terra);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--s-xl);
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terra);
  transition: width var(--t-base);
}

.nav__link:hover { color: var(--olive); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  background: var(--olive);
  color: var(--linen);
  padding: var(--s-xs) var(--s-lg);
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all var(--t-fast);
}

.nav__cta:hover {
  background: var(--olive-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(61, 79, 61, 0.25);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: var(--s-xs);
  background: none;
  border: none;
}

.nav__toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all var(--t-fast);
  transform-origin: center;
}

/* ─── Language Switcher ─── */
.lang-switcher {
  position: relative;
  margin-left: var(--s-xs);
}

.lang-switcher__current {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1.5px solid var(--stone);
  border-radius: var(--r-pill);
  padding: 4px 10px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-soft);
  cursor: pointer;
  transition: all var(--t-fast);
}

.lang-switcher__current:hover {
  border-color: var(--olive);
  color: var(--olive);
}

.lang-switcher__arrow {
  transition: transform var(--t-fast);
  flex-shrink: 0;
}

.lang-switcher.is-open .lang-switcher__arrow {
  transform: rotate(180deg);
}

.lang-switcher__menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--cream);
  border: 1px solid var(--parchment);
  border-radius: var(--r-md);
  box-shadow: var(--sh-card);
  list-style: none;
  min-width: 130px;
  padding: var(--s-xs) 0;
  z-index: 100;
}

.lang-switcher.is-open .lang-switcher__menu {
  display: block;
}

.lang-switcher__menu button {
  display: block;
  width: 100%;
  padding: var(--s-xs) var(--s-md);
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-soft);
  cursor: pointer;
  text-align: left;
  transition: all var(--t-fast);
}

.lang-switcher__menu button:hover {
  background: var(--linen);
  color: var(--olive);
}

.lang-switcher__menu button.is-active {
  color: var(--olive);
  font-weight: 600;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
  background: var(--espresso);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 30, 28, 0.35) 0%,
    rgba(30, 30, 28, 0.2) 40%,
    rgba(30, 30, 28, 0.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: var(--s-2xl);
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-xs);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--linen);
  padding: var(--s-xs) var(--s-lg);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--s-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__title {
  color: var(--cream);
  margin-bottom: var(--s-lg);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-size: 1.2rem;
  color: rgba(248, 243, 237, 0.85);
  margin-bottom: var(--s-2xl);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--s-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-xs);
  padding: 0.85rem var(--s-xl);
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--t-fast);
  letter-spacing: 0.01em;
}

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

.btn--primary:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(193, 122, 80, 0.3);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline {
  background: transparent;
  color: var(--olive);
  border: 1.5px solid var(--olive);
}

.btn--outline:hover {
  background: var(--olive);
  color: var(--cream);
}

/* ─── Section Headers ─── */
.section-label {
  display: block;
  font-family: var(--font-sans);
  color: var(--terra);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--s-sm);
}

.section-heading {
  margin-bottom: var(--s-md);
}

.section-desc {
  color: var(--text-faded);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--s-3xl);
}

.section-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ─── Asymmetric Image Showcase ─── */
.showcase {
  display: grid;
  gap: var(--s-lg);
}

.showcase--trio {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
}

.showcase--duo {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.showcase--duo-reverse {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.showcase__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-photo);
}

.showcase__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.showcase__img:hover img {
  transform: scale(1.04);
}

.showcase__img--tall { aspect-ratio: 3/4; }
.showcase__img--wide { aspect-ratio: 16/10; }
.showcase__img--square { aspect-ratio: 1; }
.showcase__img--hero { aspect-ratio: 4/3; }

/* Offset effect */
.showcase__img--offset {
  margin-top: var(--s-3xl);
}

/* ─── Feature Cards ─── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
}

.feature-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: var(--s-2xl);
  transition: all var(--t-base);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terra), var(--olive-pale));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lifted);
  border-color: var(--stone);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  background: var(--olive);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-lg);
  color: var(--linen);
}

.feature-card__icon svg {
  flex-shrink: 0;
}

.feature-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: var(--s-sm);
}

.feature-card__text {
  color: var(--text-faded);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ─── Gallery (Masonry-style) ─── */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--s-md);
}

.gallery__item {
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-soft);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 30, 28, 0.25) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--t-base);
}

.gallery__item:hover::after { opacity: 1; }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

/* ─── Menu Section ─── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s-lg);
}

.menu-category {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: var(--s-2xl);
  border: 1px solid var(--parchment);
  transition: box-shadow var(--t-base);
}

.menu-category:hover {
  box-shadow: var(--sh-card);
}

.menu-category__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: var(--s-lg);
  padding-bottom: var(--s-sm);
  border-bottom: 2px solid var(--olive);
  color: var(--olive);
  display: inline-block;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--s-xs) 0;
}

.menu-item + .menu-item { border-top: 1px dashed var(--parchment); }

.menu-item__name {
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
}

.menu-item__price {
  font-weight: 600;
  color: var(--terra);
  white-space: nowrap;
  margin-left: var(--s-md);
  font-variant-numeric: tabular-nums;
}

.menu-item__desc {
  font-size: 0.82rem;
  color: var(--text-faded);
  margin-top: 2px;
  font-style: italic;
}

/* ─── Contact Grid ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2xl);
  align-items: start;
}

.contact-info {
  background: var(--cream);
  padding: var(--s-2xl);
  border-radius: var(--r-lg);
  border: 1px solid var(--parchment);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-md);
  margin-bottom: var(--s-lg);
}

.contact-info__item:last-child { margin-bottom: 0; }

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--olive);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--linen);
}

.contact-info__icon svg {
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.8rem;
  color: var(--text-faded);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.contact-info__value {
  font-weight: 500;
  color: var(--text);
}

.contact-info__value a:hover { color: var(--terra); }

.contact-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--sh-card);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: none;
}

/* ─── Founders (Concept page) ─── */
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2xl);
  max-width: 700px;
  margin: 0 auto;
}

.founder {
  text-align: center;
}

.founder__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--s-md);
  border: 3px solid var(--stone);
}

.founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

/* ─── Footer ─── */
.footer {
  background: var(--espresso);
  color: var(--stone);
  padding: var(--s-4xl) 0 var(--s-xl);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--terra), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-2xl);
  margin-bottom: var(--s-2xl);
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--linen);
  margin-bottom: var(--s-md);
}

.footer__brand span {
  font-weight: 400;
  font-style: italic;
  color: var(--terra-light);
}

.footer__text {
  color: rgba(248, 243, 237, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer__title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--linen);
  margin-bottom: var(--s-lg);
}

.footer__links { list-style: none; }
.footer__links li { margin-bottom: var(--s-xs); }

.footer__links a {
  color: rgba(248, 243, 237, 0.5);
  font-size: 0.92rem;
  transition: color var(--t-fast);
}

.footer__links a:hover { color: var(--terra-light); }

.footer__social {
  display: flex;
  gap: var(--s-sm);
}

.footer__social a {
  width: 40px;
  height: 40px;
  background: rgba(248, 243, 237, 0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
  color: var(--stone);
}

.footer__social a svg {
  flex-shrink: 0;
}

.footer__social a:hover {
  background: var(--terra);
  color: white;
  transform: translateY(-2px);
}

.contact-info .footer__social a {
  background: var(--linen);
  color: var(--olive);
}

.contact-info .footer__social a:hover {
  background: var(--terra);
  color: white;
}

.footer__bottom {
  padding-top: var(--s-xl);
  border-top: 1px solid rgba(248, 243, 237, 0.08);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(248, 243, 237, 0.35);
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal--delay-4 { transition-delay: 400ms; }

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.stagger--visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: none; }
.stagger--visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: none; }
.stagger--visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: none; }
.stagger--visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: none; }
.stagger--visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: none; }
.stagger--visible > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: none; }

/* ─── Decorative Divider ─── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-md);
  margin: var(--s-3xl) auto;
  max-width: 300px;
  color: var(--stone);
}

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

/* ─── Horizontal Scrolling Photo Strip ─── */
.photo-strip {
  display: flex;
  gap: var(--s-md);
  overflow-x: auto;
  padding: var(--s-md) var(--s-xl);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.photo-strip::-webkit-scrollbar { display: none; }

.photo-strip__item {
  flex: 0 0 280px;
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--sh-photo);
}

.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.photo-strip__item:hover img { transform: scale(1.05); }

/* ─── CTA Banner ─── */
.cta-banner {
  background: var(--olive);
  border-radius: var(--r-xl);
  padding: var(--s-3xl) var(--s-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(193, 122, 80, 0.15) 0%, transparent 70%);
}

.cta-banner h2 { color: var(--cream); position: relative; }
.cta-banner p { color: rgba(248, 243, 237, 0.7); position: relative; max-width: 500px; margin: var(--s-md) auto var(--s-xl); }

/* ─── Hours Card ─── */
.hours-card {
  background: var(--cream);
  padding: var(--s-2xl);
  border-radius: var(--r-lg);
  border: 1px solid var(--parchment);
  margin-bottom: var(--s-lg);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: var(--s-xs) 0;
}

.hours-item + .hours-item { border-top: 1px dashed var(--parchment); }

.hours-day { font-weight: 500; color: var(--text); }
.hours-time { color: var(--olive); font-weight: 600; }
.hours-closed { color: var(--text-faded); font-style: italic; }

/* ─── Form ─── */
.contact-form {
  background: var(--cream);
  padding: var(--s-2xl);
  border-radius: var(--r-lg);
  border: 1px solid var(--parchment);
}

.form-group { margin-bottom: var(--s-lg); }

.form-label {
  display: block;
  font-weight: 500;
  font-size: 0.88rem;
  margin-bottom: var(--s-xs);
  color: var(--text);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem var(--s-md);
  border: 1.5px solid var(--parchment);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  background: var(--linen);
  color: var(--text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(61, 79, 61, 0.12);
}

.form-textarea { min-height: 140px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-md);
}

/* Form success / error states */
.form-success {
  text-align: center;
  padding: var(--s-3xl) var(--s-xl);
}

.form-success__icon {
  color: var(--olive);
  margin-bottom: var(--s-lg);
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: var(--s-sm);
  color: var(--olive);
}

.form-success p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--r-md);
  padding: var(--s-md) var(--s-lg);
  margin-top: var(--s-md);
}

.form-error p {
  color: #991b1b;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Loading state */
.btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .showcase--trio { grid-template-columns: 1fr 1fr; }
  .showcase--trio > :last-child { grid-column: span 2; }
  .showcase--duo,
  .showcase--duo-reverse { grid-template-columns: 1fr; }
  .showcase__img--offset { margin-top: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: var(--s-xl);
    box-shadow: var(--sh-lifted);
    border-top: 1px solid var(--parchment);
  }

  .nav.is-active { display: flex; }
  .nav__toggle { display: flex; }

  .lang-switcher { order: -1; margin-left: 0; margin-right: var(--s-xs); }

  .hero { min-height: 85vh; }
  .hero__actions { flex-direction: column; align-items: center; }
  .section { padding: var(--s-3xl) 0; }
  .features { grid-template-columns: 1fr; }
  .showcase--trio { grid-template-columns: 1fr; }
  .showcase--trio > :last-child { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .founders { grid-template-columns: 1fr; }
  .photo-strip__item { flex: 0 0 240px; }
}

/* ─── FAQ Accordion ─── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
}

.faq-item {
  background: var(--linen);
  border: 1px solid var(--parchment);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.faq-item[open] {
  border-color: var(--olive-pale);
  box-shadow: var(--sh-soft);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-lg) var(--s-xl);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color var(--t-fast);
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--olive);
  border-bottom: 2px solid var(--olive);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-left: var(--s-lg);
  transition: transform var(--t-fast);
}

.faq-item[open] .faq-question::after {
  transform: rotate(-135deg);
}

.faq-question:hover { color: var(--olive); }

.faq-answer {
  padding: 0 var(--s-xl) var(--s-lg);
}

.faq-answer p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--s-sm);
}

.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer ol {
  padding-left: var(--s-lg);
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-answer ol li {
  margin-bottom: var(--s-xs);
  padding-left: var(--s-xs);
}

.faq-answer ol li::marker {
  color: var(--terra);
  font-weight: 600;
}

/* ─── Menu du Jour (public page) ─── */
.mdj__loading {
  text-align: center;
  color: rgba(248, 243, 237, 0.6);
  font-size: 0.92rem;
  padding: var(--s-2xl) 0;
}

.mdj__card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: var(--s-2xl) var(--s-3xl);
  box-shadow: var(--sh-lifted);
}

.mdj__date {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-faded);
  text-transform: capitalize;
  margin-bottom: var(--s-lg);
}

.mdj__pricing {
  border: 1.5px solid var(--parchment);
  border-radius: var(--r-md);
  padding: var(--s-md) var(--s-lg);
  margin-bottom: var(--s-xl);
  background: var(--linen);
}

.mdj__formula {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-xs) 0;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.mdj__formula + .mdj__formula {
  border-top: 1px solid var(--parchment);
}

.mdj__formula strong {
  color: var(--olive);
  font-weight: 700;
}

.mdj__section {
  margin-bottom: var(--s-lg);
}

.mdj__section:last-child {
  margin-bottom: 0;
}

.mdj__section-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--olive);
  padding-bottom: var(--s-xs);
  border-bottom: 2px solid var(--olive);
  margin-bottom: var(--s-sm);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.mdj__section-title span {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--terra);
}

.mdj__items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mdj__items li {
  padding: var(--s-xs) 0;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--parchment);
  display: flex;
  align-items: center;
  gap: var(--s-xs);
}

.mdj__items li:last-child {
  border-bottom: none;
}

.mdj__leaf {
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .mdj__card {
    padding: var(--s-xl) var(--s-lg);
  }
}

/* ─── Testimonials / Avis ─── */
.avis-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-md);
  margin-bottom: var(--s-xs);
}

.avis-rating {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--olive);
  line-height: 1;
}

.avis-stars {
  display: flex;
  gap: 2px;
  color: #F5A623;
}

.avis-count {
  font-size: 0.92rem;
  color: var(--text-faded);
  margin-bottom: var(--s-3xl);
}

.avis-count a {
  color: var(--terra);
  font-weight: 500;
}

.avis-count a:hover {
  text-decoration: underline;
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
}

.avis-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: var(--s-xl) var(--s-2xl);
  border: 1px solid var(--parchment);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}

.avis-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-card);
  border-color: var(--stone);
}

.avis-card__stars {
  display: flex;
  gap: 2px;
  color: #F5A623;
  margin-bottom: var(--s-sm);
}

.avis-card__text {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.avis-card__author {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  margin-top: var(--s-lg);
  padding-top: var(--s-md);
  border-top: 1px solid var(--parchment);
}

.avis-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.avis-card__name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}

.avis-card__source {
  font-size: 0.75rem;
  color: var(--text-faded);
  display: flex;
  align-items: center;
  gap: 4px;
}

.avis-card__source svg {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .avis-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .avis-grid { grid-template-columns: 1fr; }
}

/* ─── Legal Page ─── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: var(--s-2xl);
  margin-bottom: var(--s-md);
  color: var(--olive);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--s-md);
}

.legal-content ul li {
  padding: var(--s-xs) 0;
  font-size: 0.95rem;
  color: var(--text-soft);
  border-bottom: 1px dashed var(--parchment);
}

.legal-content ul li:last-child {
  border-bottom: none;
}

.legal-content a {
  color: var(--terra);
  font-weight: 500;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* ─── Cookie Banner ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--espresso);
  color: rgba(248, 243, 237, 0.85);
  padding: var(--s-lg) var(--s-xl);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--s-xl);
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 280px;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(248, 243, 237, 0.7);
}

.cookie-banner__text a {
  color: var(--terra-light);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--s-sm);
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: var(--s-xs) var(--s-lg);
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--t-fast);
}

.cookie-banner__btn--accept {
  background: var(--terra);
  color: white;
}

.cookie-banner__btn--accept:hover {
  background: var(--terra-dark);
}

.cookie-banner__btn--decline {
  background: transparent;
  color: rgba(248, 243, 237, 0.6);
  border: 1px solid rgba(248, 243, 237, 0.2);
}

.cookie-banner__btn--decline:hover {
  border-color: rgba(248, 243, 237, 0.4);
  color: rgba(248, 243, 237, 0.9);
}

@media (max-width: 768px) {
  .cookie-banner__inner { flex-direction: column; text-align: center; }
  .cookie-banner__actions { width: 100%; justify-content: center; }
}

/* ─── Utilities ─── */
.text-center { text-align: center; }
.mt-1 { margin-top: var(--s-md); }
.mt-2 { margin-top: var(--s-xl); }
.mt-3 { margin-top: var(--s-2xl); }
.mb-1 { margin-bottom: var(--s-md); }
.mb-2 { margin-bottom: var(--s-xl); }
.mb-3 { margin-bottom: var(--s-2xl); }

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .stagger > * { opacity: 1; transform: none; }
}
