/*
 * Chez Félicien — surcouche sur mesure (themes/custom-chez-felicien).
 * CSS autonome : les classes Tailwind absentes du build bistrot n'existeraient pas en prod.
 *
 * Direction : une maison de famille provençale. Papier crème, bronze, vert olive profond,
 * capitales gravées (Marcellus), voix manuscrite élégante (Cormorant Garamond italique),
 * arches de portes de village, branche d'olivier et monogramme F de l'ancienne identité.
 */
:root {
    --fe-bronze: #80662d;
    --fe-bronze-deep: #5c4819;
    --fe-copper: #c4935a;
    --fe-gold-soft: #d9bf8f;
    --fe-cream: #f5eee2;
    --fe-paper: #faf6ef;
    --fe-sand: #e9dcc8;
    --fe-green: #1c2826;
    --fe-ink: #1c2826;
    --fe-muted: #5d625b;
    --fe-line: color-mix(in srgb, var(--fe-bronze) 24%, transparent);
    --fe-line-light: color-mix(in srgb, var(--fe-cream) 16%, transparent);
    --fe-display: 'Marcellus', 'Cormorant Garamond', Georgia, serif;
    --fe-script: 'Cormorant Garamond', Georgia, serif;
    --fe-sans: 'Manrope', system-ui, sans-serif;
    --fe-max: 1400px;
    --fe-gutter: clamp(20px, 4.5vw, 72px);
    --fe-edge: max(var(--fe-gutter), calc((100vw - var(--fe-max)) / 2));
    --fe-ease: cubic-bezier(.16, 1, .3, 1);
}

html { scroll-behavior: smooth; }
body.fe { background: var(--fe-paper); color: var(--fe-ink); font-family: var(--fe-sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
/* Grain papier très léger */
body.fe::before {
    content: ''; position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: .045; mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.fe h1, .fe h2, .fe h3, .fe h4 { font-weight: 400; }
.fe ::selection { background: var(--fe-bronze); color: #fff; }
.fe-wrap { width: 100%; max-width: calc(var(--fe-max) + 2 * var(--fe-gutter)); margin: 0 auto; padding-left: var(--fe-gutter); padding-right: var(--fe-gutter); }

/* ------------------------------------------------------------ Typo */
.fe-eyebrow { display: inline-flex; align-items: center; gap: 14px; font-family: var(--fe-sans); font-size: .72rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--fe-bronze); }
.fe-eyebrow b { font-family: var(--fe-script); font-style: italic; font-weight: 600; font-size: 1.25rem; letter-spacing: .02em; color: var(--fe-copper); text-transform: none; }
.fe-eyebrow b::after { content: '.'; }
.fe-eyebrow::after { content: ''; width: 44px; height: 1px; background: currentColor; opacity: .6; }
.fe-dark .fe-eyebrow { color: var(--fe-gold-soft); }
.fe-h2 { font-family: var(--fe-display); font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: 1.02; letter-spacing: -.005em; margin: 22px 0 0; color: var(--fe-ink); }
.fe-h2 em, .fe-hero h1 em { font-family: var(--fe-script); font-style: italic; font-weight: 500; color: var(--fe-bronze); letter-spacing: -.01em; }
.fe-dark .fe-h2 { color: var(--fe-cream); }
@media (min-width: 700px) { .fe-h2 em { white-space: nowrap; } }
.fe-dark .fe-h2 em { color: var(--fe-gold-soft); }
.fe-lead { font-size: clamp(1.02rem, 1.2vw, 1.15rem); line-height: 1.8; color: var(--fe-muted); max-width: 58ch; margin: 24px 0 0; }
.fe-dark .fe-lead { color: color-mix(in srgb, var(--fe-cream) 74%, transparent); }

/* Ornement : filet — branche — filet */
.fe-ornament { display: flex; align-items: center; justify-content: center; gap: 18px; color: var(--fe-bronze); }
.fe-ornament::before, .fe-ornament::after { content: ''; height: 1px; width: min(120px, 18vw); background: currentColor; opacity: .45; }
.fe-ornament img { width: 38px; height: auto; }

/* ------------------------------------------------------------ Boutons */
.fe-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 17px 30px; border-radius: 999px; font-family: var(--fe-sans); font-weight: 700; font-size: .92rem; letter-spacing: .04em; text-decoration: none; white-space: nowrap; border: 1px solid transparent; transition: background-color .35s var(--fe-ease), color .35s var(--fe-ease), border-color .35s var(--fe-ease), transform .35s var(--fe-ease); }
.fe-btn svg { width: 17px; height: 17px; flex: none; }
.fe-btn:hover { transform: translateY(-2px); }
.fe-btn-primary { background: var(--fe-bronze); color: #fff; box-shadow: 0 14px 30px -14px color-mix(in srgb, var(--fe-bronze) 80%, transparent); }
.fe-btn-primary:hover { background: var(--fe-bronze-deep); color: #fff; }
.fe-btn-ghost { border-color: color-mix(in srgb, var(--fe-ink) 22%, transparent); color: var(--fe-ink); }
.fe-btn-ghost:hover { border-color: var(--fe-bronze); color: var(--fe-bronze-deep); }
.fe-dark .fe-btn-ghost { border-color: color-mix(in srgb, var(--fe-cream) 35%, transparent); color: var(--fe-cream); }
.fe-dark .fe-btn-ghost:hover { border-color: var(--fe-gold-soft); color: var(--fe-gold-soft); }
.fe-link { display: inline-flex; align-items: center; gap: 10px; color: var(--fe-bronze-deep); font-weight: 700; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; }
.fe-link::after { content: '→'; transition: transform .35s var(--fe-ease); }
.fe-link:hover::after { transform: translateX(5px); }
.fe-dark .fe-link { color: var(--fe-gold-soft); }

/* Logo : PNG blanc d'origine, teinté par masque */
.fe-logo { display: block; width: 132px; aspect-ratio: 352 / 208; background: var(--fe-bronze); -webkit-mask: url('logo-felicien-light.png') center / contain no-repeat; mask: url('logo-felicien-light.png') center / contain no-repeat; }
.fe-logo.is-light { background: var(--fe-cream); }

/* ------------------------------------------------------------ Barre haute + header */
.fe-topbar { background: var(--fe-green); color: color-mix(in srgb, var(--fe-cream) 82%, transparent); font-size: .78rem; letter-spacing: .03em; position: relative; z-index: 51; }
.fe-topbar .fe-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 40px; }
.fe-topbar a { color: inherit; text-decoration: none; }
.fe-topbar a:hover { color: var(--fe-gold-soft); }
.fe-status { display: inline-flex; align-items: center; gap: 10px; }
.fe-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--fe-copper); box-shadow: 0 0 0 4px color-mix(in srgb, var(--fe-copper) 22%, transparent); flex: none; }
.fe-dot.is-open { background: #93bb7c; box-shadow: 0 0 0 4px color-mix(in srgb, #93bb7c 22%, transparent); }
.fe-topbar__right { display: flex; gap: 26px; align-items: center; }
.fe-lang { display: inline-flex; gap: 4px; font-weight: 700; letter-spacing: .14em; font-size: .7rem; }
.fe-lang a { padding: 3px 6px; opacity: .6; }
.fe-lang a.is-active { opacity: 1; color: var(--fe-gold-soft); }
@media (max-width: 760px) { .fe-topbar__addr { display: none; } .fe-topbar .fe-wrap { min-height: 36px; font-size: .72rem; } }

.fe-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--fe-paper) 92%, transparent); backdrop-filter: blur(14px) saturate(1.2); border-bottom: 1px solid transparent; transition: border-color .4s, box-shadow .4s; }
.fe-header.is-scrolled { border-bottom-color: var(--fe-line); box-shadow: 0 10px 40px -20px color-mix(in srgb, var(--fe-green) 25%, transparent); }
.fe-header__bar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; min-height: 96px; transition: min-height .4s var(--fe-ease); }
.fe-header.is-scrolled .fe-header__bar { min-height: 76px; }
.fe-header .fe-logo { width: 118px; transition: width .4s var(--fe-ease); }
.fe-header.is-scrolled .fe-logo { width: 98px; }
.fe-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 40px); }
.fe-nav a { position: relative; color: var(--fe-ink); text-decoration: none; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: 8px 0; white-space: nowrap; }
.fe-nav a::after { content: ''; position: absolute; left: 50%; bottom: -4px; width: 5px; height: 5px; border-radius: 50%; background: var(--fe-bronze); transform: translateX(-50%) scale(0); transition: transform .4s var(--fe-ease); }
.fe-nav a:hover::after, .fe-nav a.is-active::after { transform: translateX(-50%) scale(1); }
.fe-nav a.is-active { color: var(--fe-bronze-deep); }
.fe-subnav { background: var(--fe-paper); border: 1px solid var(--fe-line); border-radius: 14px; padding: 10px 0; box-shadow: 0 24px 50px -24px color-mix(in srgb, var(--fe-green) 35%, transparent); }
.fe-nav .fe-subnav a.fe-subnav__link { display: block; padding: 10px 22px; letter-spacing: .14em; font-size: .72rem; }
.fe-nav .fe-subnav a.fe-subnav__link::after { display: none; }
.fe-nav .fe-subnav a.fe-subnav__link:hover, .fe-nav .fe-subnav a.fe-subnav__link.is-active { color: var(--fe-bronze-deep); background: color-mix(in srgb, var(--fe-bronze) 8%, transparent); }
.fe-header__cta { justify-self: end; display: flex; align-items: center; gap: 22px; }
.fe-header__phone { text-align: right; text-decoration: none; line-height: 1.15; }
.fe-header__phone small { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--fe-muted); }
.fe-header__phone span { font-family: var(--fe-display); font-size: 1.28rem; color: var(--fe-bronze-deep); white-space: nowrap; }
.fe-burger { display: none; background: none; border: 0; padding: 8px; color: var(--fe-ink); cursor: pointer; }
.fe-burger svg { width: 30px; height: 30px; }
.fe-mobile { border-top: 1px solid var(--fe-line); background: var(--fe-paper); padding: 10px var(--fe-gutter) 30px; }
.fe-mobile a { display: block; padding: 16px 0; font-family: var(--fe-display); font-size: 1.6rem; color: var(--fe-ink); text-decoration: none; border-bottom: 1px solid var(--fe-line); }
.fe-mobile a.fe-mobile__sub { padding: 10px 0 10px 22px; font-size: 1.15rem; color: var(--fe-muted); }
.fe-mobile a.fe-btn { display: flex; margin-top: 24px; border: 0; font-family: var(--fe-sans); font-size: 1rem; color: #fff; }
@media (max-width: 1240px) { .fe-header__phone { display: none; } }
@media (max-width: 1060px) {
    .fe-nav { display: none; }
    .fe-burger { display: inline-flex; }
    .fe-header__bar { grid-template-columns: 1fr auto; min-height: 80px; }
    .fe-header .fe-logo { width: 100px; }
    .fe-header__cta { gap: 8px; }
    .fe-header__cta .fe-btn { padding: 12px 18px; font-size: .85rem; }
}
@media (max-width: 440px) { .fe-header__cta .fe-btn span { display: none; } .fe-header__cta .fe-btn { padding: 13px; } }

/* ------------------------------------------------------------ Hero */
.fe-hero { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); min-height: min(calc(100vh - 136px), 920px); overflow: hidden; }
.fe-hero__text { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 6vw, 100px) clamp(28px, 5vw, 100px) clamp(48px, 6vw, 90px) var(--fe-edge); }
.fe-hero h1 { font-family: var(--fe-display); font-size: clamp(3rem, 6.2vw, 6.8rem); line-height: .98; letter-spacing: -.012em; margin: 30px 0 0; color: var(--fe-ink); }
.fe-hero h1 em { display: block; font-size: .8em; line-height: 1.08; margin-top: .06em; }
.fe-hero__lead { margin: 30px 0 0; font-size: clamp(1.05rem, 1.25vw, 1.2rem); line-height: 1.75; color: var(--fe-muted); max-width: 46ch; }
.fe-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 42px; }
.fe-hero__meta { display: flex; flex-wrap: wrap; gap: 18px 44px; margin-top: 60px; padding-top: 28px; border-top: 1px solid var(--fe-line); }
.fe-hero__meta div { display: flex; flex-direction: column; gap: 6px; }
.fe-hero__meta small { font-size: .64rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--fe-muted); }
.fe-hero__meta span { font-family: var(--fe-display); font-size: 1.15rem; color: var(--fe-ink); }
.fe-hero__meta .fe-stars { font-size: .85rem; }
.fe-hero__pattern { position: absolute; inset: 0; opacity: .05; background: url('lgo-brown.svg') 0 0 / 150px repeat; pointer-events: none; -webkit-mask-image: linear-gradient(90deg, #000 10%, transparent 75%); mask-image: linear-gradient(90deg, #000 10%, transparent 75%); }
.fe-hero__media { position: relative; min-height: 560px; }
.fe-hero__frame { position: absolute; inset: 0; overflow: hidden; border-top-left-radius: 46vw 36vw; }
.fe-hero__frame img { width: 100%; height: 100%; object-fit: cover; animation: fe-settle 2s var(--fe-ease) both; filter: saturate(1.05) contrast(1.02); }
.fe-hero__frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, color-mix(in srgb, var(--fe-green) 38%, transparent)); }
@keyframes fe-settle { from { transform: scale(1.08); } to { transform: none; } }
.fe-seal { position: absolute; z-index: 3; left: -80px; bottom: 11%; width: 160px; height: 160px; border-radius: 50%; background: var(--fe-green); display: grid; place-items: center; box-shadow: 0 30px 60px -24px color-mix(in srgb, var(--fe-green) 70%, transparent); }
.fe-seal svg { position: absolute; inset: 9px; width: calc(100% - 18px); height: calc(100% - 18px); animation: fe-spin 40s linear infinite; overflow: visible; }
.fe-seal text { font-family: var(--fe-sans); font-size: 10.6px; font-weight: 700; letter-spacing: 2.9px; text-transform: uppercase; fill: var(--fe-gold-soft); }
.fe-seal img { width: 50px; filter: brightness(0) invert(.88) sepia(.5); }
@keyframes fe-spin { to { transform: rotate(360deg); } }
.fe-hero__caption { position: absolute; z-index: 3; right: var(--fe-edge); bottom: 30px; font-family: var(--fe-script); font-style: italic; font-size: 1.2rem; color: var(--fe-cream); text-shadow: 0 2px 20px rgba(0,0,0,.35); }
@media (max-width: 960px) {
    .fe-hero { grid-template-columns: 1fr; min-height: 0; }
    .fe-hero__text { padding: 44px var(--fe-gutter) 40px; }
    .fe-hero__media { min-height: 0; aspect-ratio: 1 / 1.05; margin: 0 var(--fe-gutter) 48px; }
    .fe-hero__frame { border-radius: 999px 999px 4px 4px; }
    .fe-seal { left: auto; right: -6px; bottom: -30px; width: 120px; height: 120px; }
    .fe-seal img { width: 38px; }
    .fe-hero__meta { margin-top: 38px; gap: 18px 28px; }
    .fe-hero__caption { display: none; }
}

/* ------------------------------------------------------------ Bandeau défilant */
.fe-marquee { background: var(--fe-green); color: var(--fe-gold-soft); overflow: hidden; }
.fe-marquee__track { display: flex; width: max-content; animation: fe-marquee 50s linear infinite; }
.fe-marquee__track span { display: inline-flex; align-items: center; gap: 36px; padding: 24px 18px; font-family: var(--fe-script); font-style: italic; font-size: clamp(1.4rem, 2.3vw, 2.1rem); white-space: nowrap; }
.fe-marquee__track span::after { content: '✦'; font-style: normal; font-size: .55em; color: var(--fe-copper); }
@keyframes fe-marquee { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------ Sections */
.fe-section { position: relative; padding: clamp(88px, 11vw, 170px) 0; }
.fe-section.is-cream { background: var(--fe-cream); }
.fe-section.is-sand { background: var(--fe-sand); }
.fe-dark { background: var(--fe-green); color: var(--fe-cream); }
.fe-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 28px 60px; }
.fe-head--center { flex-direction: column; align-items: center; text-align: center; }
.fe-head--center .fe-lead { margin-left: auto; margin-right: auto; }

/* I. La maison */
.fe-story { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(48px, 8vw, 140px); align-items: center; }
.fe-story__visual { position: relative; padding-bottom: 96px; }
.fe-story__main { aspect-ratio: 4 / 5; width: 80%; overflow: hidden; border-radius: 999px 999px 4px 4px; }
.fe-story__main img, .fe-story__second img { width: 100%; height: 100%; object-fit: cover; }
.fe-story__second { position: absolute; right: 0; bottom: 0; width: 44%; aspect-ratio: 3 / 4; overflow: hidden; border: 10px solid var(--fe-paper); border-radius: 4px; box-shadow: 0 30px 60px -30px color-mix(in srgb, var(--fe-green) 50%, transparent); }
.fe-story__caption { position: absolute; left: 4px; bottom: 26px; font-family: var(--fe-script); font-style: italic; font-size: 1.2rem; color: var(--fe-muted); max-width: 48%; }
.fe-story__text p { font-size: 1.06rem; line-height: 1.85; color: var(--fe-muted); margin: 22px 0 0; max-width: 56ch; }
.fe-story__text p.fe-dropcap::first-letter { float: left; font-family: var(--fe-display); font-size: 4.4em; line-height: .8; padding: 8px 14px 0 0; color: var(--fe-bronze); }
.fe-pullquote { margin: 48px 0 0; font-family: var(--fe-script); font-style: italic; font-weight: 500; font-size: clamp(1.8rem, 2.8vw, 2.5rem); line-height: 1.22; color: var(--fe-ink); position: relative; padding-left: 40px; }
.fe-pullquote::before { content: '“'; position: absolute; left: -4px; top: -20px; font-family: var(--fe-display); font-style: normal; font-size: 4.4rem; color: var(--fe-copper); line-height: 1; }
.fe-namesake { display: grid; grid-template-columns: 58px 1fr; gap: 22px; align-items: center; margin-top: 48px; padding: 24px 28px; border: 1px solid var(--fe-line); border-radius: 4px; }
.fe-namesake img { width: 58px; }
.fe-namesake p { margin: 0 !important; font-size: .95rem !important; line-height: 1.65 !important; }
.fe-namesake strong { display: block; font-family: var(--fe-display); font-weight: 400; font-size: 1.15rem; color: var(--fe-ink); margin-bottom: 2px; }
@media (max-width: 960px) { .fe-story { grid-template-columns: 1fr; } .fe-story__visual { max-width: 560px; } }

/* II. La carte — cartes façon menus imprimés */
.fe-menus { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 3vw, 48px); margin-top: clamp(56px, 6vw, 90px); }
.fe-menu { position: relative; background: var(--fe-paper); padding: 14px; box-shadow: 0 40px 80px -50px color-mix(in srgb, var(--fe-green) 60%, transparent); transition: transform .7s var(--fe-ease); }
.fe-menu:hover { transform: translateY(-6px); }
.fe-menu__inner { border: 1px solid var(--fe-line); outline: 1px solid var(--fe-line); outline-offset: -7px; padding: clamp(28px, 3.4vw, 54px); height: 100%; display: flex; flex-direction: column; }
.fe-menu__img { aspect-ratio: 16 / 10; overflow: hidden; border-radius: 999px 999px 0 0; margin-bottom: 38px; }
.fe-menu__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--fe-ease); }
.fe-menu:hover .fe-menu__img img { transform: scale(1.05); }
.fe-menu__title { text-align: center; }
.fe-menu__title small { font-family: var(--fe-script); font-style: italic; font-size: 1.3rem; color: var(--fe-bronze); }
.fe-menu__title h3 { font-family: var(--fe-display); font-size: clamp(2.1rem, 3vw, 2.9rem); margin: 2px 0 0; color: var(--fe-ink); }
.fe-menu__intro { text-align: center; color: var(--fe-muted); line-height: 1.75; margin: 16px auto 0; max-width: 46ch; font-size: .97rem; }
.fe-menu .fe-ornament { margin: 28px 0 6px; }
.fe-menu__list { list-style: none; padding: 0; margin: 12px 0 0; }
.fe-menu__list li { display: flex; align-items: baseline; gap: 12px; padding: 12px 0; }
.fe-menu__list li span { font-family: var(--fe-display); font-size: 1.14rem; color: var(--fe-ink); }
.fe-menu__list li i { flex: 1; border-bottom: 1px dotted color-mix(in srgb, var(--fe-bronze) 55%, transparent); transform: translateY(-4px); }
.fe-menu__list li b { font-family: var(--fe-script); font-style: italic; font-weight: 600; font-size: 1.2rem; color: var(--fe-bronze-deep); white-space: nowrap; }
.fe-menu__foot { margin-top: auto; padding-top: 36px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.fe-menu__count { font-family: var(--fe-script); font-style: italic; font-size: 1.15rem; color: var(--fe-muted); }
@media (max-width: 900px) { .fe-menus { grid-template-columns: 1fr; } }

/* III. Feu de bois */
.fe-fire { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr); min-height: 860px; }
.fe-fire__media { position: relative; overflow: hidden; }
.fe-fire__media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fe-fire__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 62%, var(--fe-green)); }
.fe-fire__inset { position: absolute; z-index: 2; left: var(--fe-edge); bottom: 56px; width: clamp(150px, 16vw, 240px); aspect-ratio: 3 / 4; overflow: hidden; border: 8px solid var(--fe-green); border-radius: 999px 999px 4px 4px; }
.fe-fire__inset img { width: 100%; height: 100%; object-fit: cover; }
.fe-fire__content { padding: clamp(72px, 8vw, 130px) var(--fe-edge) clamp(72px, 8vw, 130px) clamp(40px, 5vw, 96px); display: flex; flex-direction: column; justify-content: center; }
.fe-pizzas { list-style: none; margin: 44px 0 0; padding: 0; }
.fe-pizzas li { padding: 22px 0; border-top: 1px solid var(--fe-line-light); }
.fe-pizzas li:last-child { border-bottom: 1px solid var(--fe-line-light); }
.fe-pizzas__head { display: flex; align-items: baseline; gap: 14px; }
.fe-pizzas__head h3 { margin: 0; font-family: var(--fe-display); font-size: clamp(1.5rem, 2vw, 1.95rem); color: var(--fe-cream); }
.fe-pizzas__head i { flex: 1; border-bottom: 1px dotted var(--fe-line-light); transform: translateY(-5px); }
.fe-pizzas__head b { font-family: var(--fe-script); font-style: italic; font-weight: 500; font-size: 1.55rem; color: var(--fe-gold-soft); white-space: nowrap; }
.fe-pizzas p { margin: 8px 0 0; font-size: .93rem; line-height: 1.65; color: color-mix(in srgb, var(--fe-cream) 66%, transparent); max-width: 54ch; }
.fe-fire__note { margin: 30px 0 0; font-family: var(--fe-script); font-style: italic; font-size: 1.3rem; color: var(--fe-gold-soft); }
@media (max-width: 960px) {
    .fe-fire { grid-template-columns: 1fr; min-height: 0; }
    .fe-fire__media { min-height: 480px; }
    .fe-fire__media::after { background: linear-gradient(180deg, transparent 55%, var(--fe-green)); }
    .fe-fire__content { padding: 40px var(--fe-gutter) 90px; }
    .fe-fire__inset { width: 130px; bottom: 30px; left: var(--fe-gutter); }
}

/* Engagements */
.fe-pillars { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(28px, 4vw, 64px); margin-top: clamp(56px, 6vw, 90px); }
.fe-pillar { text-align: center; }
.fe-pillar__icon { width: 88px; height: 88px; margin: 0 auto; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--fe-line); color: var(--fe-bronze); position: relative; }
.fe-pillar__icon::after { content: ''; position: absolute; inset: 7px; border-radius: 50%; border: 1px dashed color-mix(in srgb, var(--fe-bronze) 28%, transparent); }
.fe-pillar__icon svg { width: 34px; height: 34px; }
.fe-pillar h3 { font-family: var(--fe-display); font-size: 1.5rem; margin: 28px 0 0; color: var(--fe-ink); }
.fe-pillar p { margin: 12px auto 0; font-size: .95rem; line-height: 1.72; color: var(--fe-muted); max-width: 30ch; }
@media (max-width: 960px) { .fe-pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .fe-pillars { grid-template-columns: 1fr; } }

/* Terrasse & groupes */
.fe-terrace { position: relative; min-height: min(94vh, 880px); display: flex; align-items: center; overflow: hidden; }
.fe-terrace > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fe-terrace::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, color-mix(in srgb, var(--fe-green) 45%, transparent), transparent 65%); z-index: 1; }
.fe-terrace .fe-wrap { position: relative; z-index: 2; }
.fe-terrace__card { max-width: 580px; background: var(--fe-paper); padding: clamp(56px, 6vw, 88px) clamp(36px, 5vw, 72px) clamp(40px, 5vw, 64px); border-radius: 999px 999px 4px 4px; text-align: center; box-shadow: 0 50px 100px -40px color-mix(in srgb, var(--fe-green) 70%, transparent); }
.fe-terrace__card .fe-h2 { font-size: clamp(2.2rem, 3.8vw, 3.6rem); }
.fe-terrace__card p { color: var(--fe-muted); line-height: 1.8; margin: 22px auto 0; max-width: 42ch; }
.fe-terrace__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }
@media (max-width: 700px) { .fe-terrace { align-items: flex-end; padding: 240px 0 var(--fe-gutter); } .fe-terrace__card { border-radius: 220px 220px 4px 4px; } }

/* Avis */
.fe-reviews { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: clamp(40px, 7vw, 120px); align-items: start; margin-top: clamp(52px, 6vw, 84px); }
.fe-review-main { margin: 0; }
.fe-review-main blockquote { margin: 0; font-family: var(--fe-script); font-style: italic; font-weight: 500; font-size: clamp(1.9rem, 3vw, 2.8rem); line-height: 1.26; color: var(--fe-ink); }
.fe-review-main figcaption, .fe-review figcaption { margin-top: 26px; font-size: .74rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--fe-bronze-deep); }
.fe-stars { color: var(--fe-copper); letter-spacing: .14em; }
.fe-review-side { display: grid; gap: 22px; }
.fe-review { margin: 0; padding: 32px 34px; background: var(--fe-paper); border-radius: 4px; }
.fe-review blockquote { margin: 14px 0 0; line-height: 1.75; color: var(--fe-ink); font-size: .98rem; }
.fe-score { display: flex; align-items: center; gap: 22px; }
.fe-score__num { font-family: var(--fe-display); font-size: clamp(4rem, 7vw, 6rem); line-height: .9; color: var(--fe-bronze-deep); }
.fe-score__txt { font-size: .9rem; line-height: 1.6; color: var(--fe-muted); }
@media (max-width: 960px) { .fe-reviews { grid-template-columns: 1fr; } }

/* Galerie pleine largeur */
.fe-strip { display: grid; grid-template-columns: 1.25fr 1fr 1.1fr 1fr 1.25fr; gap: 14px; padding: 0 14px; margin-top: clamp(52px, 6vw, 84px); align-items: start; }
.fe-strip figure { margin: 0; overflow: hidden; border-radius: 3px; }
.fe-strip figure:nth-child(odd) { aspect-ratio: 3 / 4; }
.fe-strip figure:nth-child(even) { aspect-ratio: 3 / 4.4; margin-top: 70px; }
.fe-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--fe-ease); }
.fe-strip figure:hover img { transform: scale(1.06); }
@media (max-width: 900px) { .fe-strip { grid-template-columns: repeat(2, 1fr); } .fe-strip figure:nth-child(5) { display: none; } .fe-strip figure:nth-child(even) { margin-top: 40px; } }

/* Venir */
.fe-visit { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(48px, 8vw, 140px); align-items: center; }
.fe-hours { margin-top: 42px; border-top: 1px solid var(--fe-line); }
.fe-hours p { display: grid; grid-template-columns: minmax(120px, 190px) 1fr; gap: 20px; margin: 0; padding: 16px 4px; border-bottom: 1px solid var(--fe-line); font-size: 1rem; transition: background-color .3s, padding .3s; }
.fe-hours p span:first-child { font-family: var(--fe-display); font-size: 1.15rem; text-transform: capitalize; color: var(--fe-ink); }
.fe-hours p span:last-child { color: var(--fe-muted); }
.fe-hours p.is-closed span { opacity: .5; }
.fe-hours p.is-today { background: color-mix(in srgb, var(--fe-bronze) 9%, transparent); padding-left: 18px; }
.fe-hours p.is-today span:last-child { color: var(--fe-bronze-deep); font-weight: 600; }
.fe-hours em { font-family: var(--fe-script); font-size: 1.05rem; color: var(--fe-bronze); text-transform: none; margin-left: 6px; }
.fe-visit__addr { margin-top: 34px; font-family: var(--fe-display); font-size: 1.45rem; line-height: 1.4; color: var(--fe-ink); }
.fe-visit__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.fe-visit__media { position: relative; }
.fe-visit__arch { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 999px 999px 4px 4px; }
.fe-visit__arch img { width: 100%; height: 100%; object-fit: cover; }
.fe-visit__olive { position: absolute; left: -54px; top: 10%; width: 130px; transform: rotate(-24deg); pointer-events: none; }
@media (max-width: 960px) { .fe-visit { grid-template-columns: 1fr; } .fe-visit__media { max-width: 520px; } .fe-visit__olive { left: auto; right: -8px; width: 90px; } }

/* ------------------------------------------------------------ Footer */
.fe-footer { position: relative; overflow: hidden; background: var(--fe-green); color: var(--fe-cream); padding: clamp(84px, 9vw, 136px) 0 34px; }
.fe-footer__hello { text-align: center; padding-bottom: clamp(60px, 6vw, 96px); border-bottom: 1px solid var(--fe-line-light); }
.fe-footer__hello p { margin: 0 !important; font-family: var(--fe-script) !important; font-style: italic; font-weight: 500; font-size: clamp(2.4rem, 5.4vw, 4.8rem) !important; line-height: 1.08 !important; color: var(--fe-gold-soft) !important; }
.fe-footer__hello .fe-btn { margin-top: 34px; }
.fe-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-top: clamp(56px, 6vw, 84px); }
.fe-footer h4 { font-family: var(--fe-sans); font-size: .66rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--fe-copper); margin: 0 0 18px; }
.fe-footer p, .fe-footer li, .fe-footer a { font-size: .95rem; line-height: 1.85; color: color-mix(in srgb, var(--fe-cream) 78%, transparent); text-decoration: none; margin: 0; }
.fe-footer a:hover { color: var(--fe-gold-soft); }
.fe-footer a.fe-btn-primary { color: #fff; }
.fe-footer ul { list-style: none; margin: 0; padding: 0; }
.fe-footer .fe-logo { width: 170px; }
.fe-footer__tag { margin-top: 22px !important; max-width: 32ch; }
.fe-footer__social { display: flex; gap: 10px; margin-top: 24px; }
.fe-footer__bottom { margin-top: 68px; padding-top: 26px; border-top: 1px solid var(--fe-line-light); display: flex; flex-wrap: wrap; gap: 14px 30px; justify-content: space-between; align-items: center; }
.fe-footer__bottom, .fe-footer__bottom a, .fe-footer__bottom p { font-size: .8rem !important; color: color-mix(in srgb, var(--fe-cream) 52%, transparent) !important; }
.fe-footer__legal { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.fe-footer__olive { position: absolute; right: -80px; top: 40px; width: 360px; opacity: .06; filter: brightness(0) invert(1); pointer-events: none; }
@media (max-width: 960px) { .fe-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .fe-footer__grid { grid-template-columns: 1fr; } }

/* Appel flottant mobile */
.fe-call-float { position: fixed; right: 16px; bottom: 16px; z-index: 45; display: none; }
@media (max-width: 960px) { .fe-call-float { display: inline-flex; } }

/* Révélations (reveal.js ajoute .is-visible) */
.fe .reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s var(--fe-ease), transform 1.1s var(--fe-ease); }
.fe .reveal.is-visible { opacity: 1; transform: none; }
.fe .reveal.fe-d1 { transition-delay: .12s; }
.fe .reveal.fe-d2 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
    .fe .reveal { opacity: 1; transform: none; transition: none; }
    .fe-marquee__track, .fe-seal svg, .fe-hero__frame img { animation: none; }
    html { scroll-behavior: auto; }
}

/* Pages internes héritées de bistrot : titres et accents à la marque */
body.fe .font-display { font-family: var(--fe-display) !important; font-weight: 400 !important; }
