/**
 * Fuji Sushi — Premium urbain / néon contemporain
 */

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
	--fuji-black: #0f0f0f;
	--fuji-black-rich: #0f0f0f;
	--fuji-black-soft: #161616;
	--fuji-black-card: #1a1a1a;
	--fuji-black-elevated: #222222;
	--fuji-light: #f2ede6;
	--fuji-light-warm: #f7f3ed;
	--fuji-light-card: #faf7f2;
	--fuji-light-text: #121212;
	--fuji-light-muted: #6b6560;
	--fuji-red-neon: #e8223a;
	--fuji-red-soft: rgba(232, 34, 58, 0.12);
	--fuji-red-glow: rgba(232, 34, 58, 0.38);
	--fuji-magenta: #a830c8;
	--fuji-violet: #7c3aed;
	--fuji-magenta-soft: rgba(168, 48, 200, 0.14);
	--fuji-magenta-glow: rgba(168, 48, 200, 0.35);
	--fuji-neon: var(--fuji-red-neon);
	--fuji-neon-soft: var(--fuji-red-soft);
	--fuji-neon-glow: var(--fuji-red-glow);
	--fuji-gradient: linear-gradient(135deg, #e8223a 0%, #c41830 55%, #a830c8 100%);
	--fuji-gradient-hover: linear-gradient(135deg, #f02842 0%, #d41c34 55%, #b838d0 100%);
	--fuji-gradient-glow: radial-gradient(ellipse 80% 60% at 0% 100%, rgba(232, 34, 58, 0.32) 0%, rgba(168, 48, 200, 0.14) 45%, transparent 72%);
	--fuji-white: #f2ede6;
	--fuji-gray: #8a8580;
	--fuji-gray-dark: #2a2a2e;
	--fuji-font-body: 'DM Sans', sans-serif;
	--fuji-font-display: 'Syne', 'Zen Kaku Gothic New', sans-serif;
	--fuji-font-menu-hero: 'Space Grotesk', sans-serif;
	--fuji-font-sign: 'Zen Kaku Gothic New', sans-serif;
	--fuji-font-kanji: 'Zen Kaku Gothic New', sans-serif;
	--fuji-sign-red: #e8223a;
	--fuji-sign-magenta: #a830c8;
	--fuji-sign-violet: #7c3aed;
	--fuji-header-height: 88px;
	--fuji-header-height-scrolled: 64px;
	--fuji-transition: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Base
   ========================================================================== */

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--fuji-font-body);
	background-color: var(--fuji-black);
	color: var(--fuji-white);
	line-height: 1.6;
	overflow-x: hidden;
}

a {
	color: var(--fuji-neon);
	text-decoration: none;
	transition: color var(--fuji-transition);
}

a:hover {
	color: #f04858;
}

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

::selection {
	background: var(--fuji-neon);
	color: var(--fuji-black);
}

/* ==========================================================================
   Bootstrap overrides
   ========================================================================== */

.btn-fuji-primary {
	background: var(--fuji-gradient);
	border: none;
	color: var(--fuji-white);
	font-family: var(--fuji-font-display);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border-radius: 0;
	padding: 1rem 2.75rem;
	transition: all var(--fuji-transition);
	box-shadow: 0 4px 24px rgba(232, 34, 58, 0.32);
}

.btn-fuji-primary.btn-lg {
	padding: 1.35rem 3.75rem;
	font-size: 1.05rem;
	letter-spacing: 0.1em;
}

.btn-fuji-primary.btn-sm,
.btn-fuji-outline.btn-sm {
	padding: 0.8rem 2rem;
}

.btn-fuji-primary:hover,
.btn-fuji-primary:focus {
	background: var(--fuji-gradient-hover);
	color: var(--fuji-white);
	box-shadow: 0 6px 32px rgba(232, 34, 58, 0.42);
	transform: translateY(-2px);
}

.btn-fuji-outline {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--fuji-white);
	font-family: var(--fuji-font-display);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border-radius: 0;
	padding: 1rem 2.75rem;
	transition: all var(--fuji-transition);
}

.btn-fuji-outline:hover,
.btn-fuji-outline:focus {
	border-color: rgba(232, 34, 58, 0.7);
	color: #ffffff;
	box-shadow: 0 0 28px rgba(232, 34, 58, 0.35), inset 0 0 16px rgba(232, 34, 58, 0.06);
}

.fuji-section--light .btn-fuji-outline {
	border-color: rgba(20, 20, 20, 0.2);
	color: var(--fuji-light-text);
}

.fuji-section--light .btn-fuji-outline:hover {
	border-color: var(--fuji-neon);
	color: var(--fuji-neon);
}

/* ==========================================================================
   Header — barre PC en haut → burger compact au scroll
   ========================================================================== */

.fuji-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1030;
	pointer-events: none;
	background: transparent;
}

.fuji-header__bar,
.fuji-header__brand,
.fuji-header__burger,
.fuji-nav-drawer,
.fuji-nav-backdrop {
	pointer-events: auto;
}

/* --- Barre PC (haut de page) --- */
.fuji-header__bar {
	width: 100%;
	padding: 1.1rem 0;
	transition:
		opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
		visibility 0.45s;
}

.fuji-header__bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.fuji-header__inline {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-left: auto;
}

.fuji-header__actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

.fuji-inline-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.15rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fuji-inline-nav__link,
.fuji-inline-nav a {
	display: block;
	padding: 0.5rem 0.75rem;
	font-family: var(--fuji-font-display);
	font-size: 0.78rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--fuji-white) !important;
	text-decoration: none;
	transition: color var(--fuji-transition);
}

.fuji-inline-nav__link:hover,
.fuji-inline-nav__link:focus,
.fuji-inline-nav a:hover,
.fuji-inline-nav a:focus {
	background: var(--fuji-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent !important;
}

.fuji-header__brand--bar {
	display: block;
	flex-shrink: 0;
	transition:
		opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
		visibility 0.45s,
		width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo header masqué en haut de page (doublon avec le hero) */
.fuji-header:not(.is-scrolled) .fuji-header__brand--bar {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	width: 0;
	min-width: 0;
	overflow: hidden;
	transform: translateY(-8px);
}

/* --- Mode compact (logo + burger) — visible au scroll uniquement --- */
.fuji-header__brand--compact {
	position: fixed;
	top: 1.25rem;
	left: clamp(1rem, 3vw, 2rem);
	z-index: 1032;
	display: block;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-10px);
	transition:
		opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
		visibility 0.45s,
		top var(--fuji-transition);
}

.fuji-header.is-scrolled .fuji-header__brand--compact {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
	top: 1rem;
}

.fuji-logo {
	height: 52px;
	width: auto;
	filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.45));
	transition: height var(--fuji-transition), filter var(--fuji-transition);
}

.fuji-header__bar .fuji-logo {
	height: 58px;
}

.fuji-header.is-scrolled .fuji-header__brand--compact .fuji-logo {
	height: 44px;
}

.fuji-logo--footer {
	height: 50px;
	opacity: 0.9;
	filter: none;
}

/* Desktop : bascule barre ↔ burger */
@media (min-width: 992px) {
	.fuji-header__burger {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-10px);
	}

	.fuji-header.is-scrolled .fuji-header__bar {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-14px);
	}

	.fuji-header.is-scrolled .fuji-header__burger {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}
}

/* Mobile : burger toujours visible */
@media (max-width: 991.98px) {
	.fuji-header__bar {
		display: none;
	}
}

/* Burger — carré fixe haut-droit */
.fuji-header__burger {
	position: fixed;
	top: 1.25rem;
	right: clamp(1rem, 3vw, 2rem);
	z-index: 1033;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 4px;
	background: rgba(15, 15, 15, 0.28);
	cursor: pointer;
	transition:
		opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
		visibility 0.45s,
		background var(--fuji-transition),
		border-color var(--fuji-transition),
		box-shadow var(--fuji-transition),
		top var(--fuji-transition);
}

.fuji-header__burger:hover {
	border-color: rgba(232, 34, 58, 0.65);
	background: rgba(15, 15, 15, 0.45);
	box-shadow: 0 0 24px rgba(232, 34, 58, 0.25);
}

.fuji-header.is-scrolled .fuji-header__burger {
	top: 1rem;
	background: rgba(15, 15, 15, 0.55);
	border-color: rgba(255, 255, 255, 0.25);
}

.fuji-header.is-nav-open .fuji-header__burger {
	border-color: rgba(232, 34, 58, 0.7);
	background: rgba(15, 15, 15, 0.85);
}

/* 3 barres → croix */
.fuji-burger {
	position: relative;
	display: block;
	width: 22px;
	height: 16px;
}

.fuji-burger__line {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #ffffff;
	border-radius: 2px;
	transition:
		transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		opacity 0.25s ease,
		top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.fuji-burger__line:nth-child(1) { top: 0; }
.fuji-burger__line:nth-child(2) { top: 7px; }
.fuji-burger__line:nth-child(3) { top: 14px; }

.fuji-header.is-nav-open .fuji-burger__line:nth-child(1) {
	top: 7px;
	transform: rotate(45deg);
}

.fuji-header.is-nav-open .fuji-burger__line:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.fuji-header.is-nav-open .fuji-burger__line:nth-child(3) {
	top: 7px;
	transform: rotate(-45deg);
}

/* Backdrop */
.fuji-nav-backdrop {
	position: fixed;
	inset: 0;
	z-index: 1031;
	background: rgba(15, 15, 15, 0.78);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.fuji-header.is-nav-open .fuji-nav-backdrop {
	opacity: 1;
	visibility: visible;
}

.fuji-nav-backdrop[hidden] {
	display: block;
}

/* Drawer latéral */
.fuji-nav-drawer {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1032;
	width: min(100%, 380px);
	height: 100vh;
	height: 100dvh;
	background: rgba(8, 8, 10, 0.98);
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: -16px 0 48px rgba(0, 0, 0, 0.45);
	transform: translate3d(100%, 0, 0);
	transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
	overflow-y: auto;
	contain: layout style paint;
	-webkit-overflow-scrolling: touch;
}

.fuji-header.is-nav-open .fuji-nav-drawer {
	transform: translate3d(0, 0, 0);
}

.fuji-nav-drawer__inner {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: calc(5.5rem + env(safe-area-inset-top, 0)) 2rem calc(2rem + env(safe-area-inset-bottom, 0));
}

.fuji-nav-list {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}

.fuji-nav-list li {
	opacity: 0;
	transform: translate3d(16px, 0, 0);
	transition:
		opacity 0.22s ease,
		transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: calc(var(--nav-i, 0) * 0.04s);
}

.fuji-header.is-nav-open .fuji-nav-list li {
	opacity: 1;
	transform: translateX(0);
}

.fuji-nav-list a {
	display: block;
	padding: 0.85rem 0;
	font-family: var(--fuji-font-display);
	font-size: clamp(1.1rem, 4vw, 1.35rem);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--fuji-white);
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	transition: color var(--fuji-transition), padding-left var(--fuji-transition);
}

.fuji-nav-list a:hover,
.fuji-nav-list a:focus {
	color: var(--fuji-neon);
	padding-left: 0.5rem;
}

.fuji-nav-drawer__actions {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	opacity: 0;
	transform: translate3d(0, 8px, 0);
	transition: opacity 0.22s ease 0.12s, transform 0.22s ease 0.12s;
}

.fuji-header.is-nav-open .fuji-nav-drawer__actions {
	opacity: 1;
	transform: translateY(0);
}

body.is-nav-locked {
	overflow: hidden;
	touch-action: none;
}

body.is-nav-open .fuji-sign,
body.is-nav-open .fuji-float-wrap {
	animation-play-state: paused;
}

body.is-nav-open .fuji-hero-swiper {
	animation-play-state: paused;
}

body.is-nav-open .fuji-hero-swiper .swiper-slide-active {
	transition: none !important;
}

@media (max-width: 575.98px) {
	.fuji-header__burger {
		width: 48px;
		height: 48px;
	}

	.fuji-logo {
		height: 46px;
	}

	.fuji-header.is-scrolled .fuji-logo {
		height: 40px;
	}
}

/* ==========================================================================
   Panels — structure full-width / full-height (PayPal-style)
   ========================================================================== */

.fuji-panel {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.fuji-panel--hero,
.fuji-panel--center {
	min-height: 100vh;
}

.fuji-panel--split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 100vh;
}

.fuji-panel--split-reverse {
	direction: rtl;
}

.fuji-panel--split-reverse > * {
	direction: ltr;
}

.fuji-panel--dark {
	background-color: var(--fuji-black);
	color: var(--fuji-white);
}

.fuji-panel__media {
	position: relative;
	min-height: 50vh;
	overflow: hidden;
}

.fuji-panel__media-bg {
	position: absolute;
	inset: -18% 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.fuji-panel__media--map {
	min-height: 100%;
}

.fuji-panel__media--map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.fuji-panel__body {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50vh;
	padding: clamp(3rem, 8vh, 6rem) clamp(1.5rem, 6vw, 5rem);
}

.fuji-panel__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 560px;
}

.fuji-panel__inner--center {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: clamp(5rem, 12vh, 8rem) clamp(1.5rem, 5vw, 3rem);
}

.fuji-panel__head {
	position: relative;
	z-index: 1;
	padding: clamp(4rem, 10vh, 7rem) clamp(1.5rem, 6vw, 5rem) clamp(2rem, 5vh, 3rem);
}

.fuji-panel__content {
	position: relative;
	z-index: 1;
	padding: 0 clamp(1.5rem, 6vw, 5rem) clamp(4rem, 10vh, 7rem);
	max-width: 1400px;
	margin: 0 auto;
}

.fuji-panel__title {
	font-family: var(--fuji-font-display);
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 700;
	text-transform: none;
	letter-spacing: -0.02em;
	line-height: 1.05;
	margin: 0 0 1.25rem;
}

.fuji-panel__title--display {
	font-size: clamp(3.5rem, 12vw, 9rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	text-transform: none;
	line-height: 0.92;
	margin-bottom: 0;
}

.fuji-section--light .fuji-panel__title {
	color: var(--fuji-light-text);
}

.fuji-section--dark .fuji-panel__title,
.fuji-panel--dark .fuji-panel__title {
	color: var(--fuji-white);
}

@media (max-width: 991.98px) {
	.fuji-panel--split {
		grid-template-columns: 1fr;
	}

	.fuji-panel__media {
		min-height: 45vh;
	}

	.fuji-panel--split .fuji-panel__media {
		order: -1;
	}

	.fuji-contact .fuji-panel__media {
		order: 1;
	}

	.fuji-panel__body {
		min-height: auto;
	}

	.fuji-panel__inner--center {
		min-height: 85vh;
	}

	.fuji-panel__media--map {
		min-height: 50vh;
	}
}

/* Legacy section helper (footer etc.) */
.fuji-section {
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
}

/* ==========================================================================
   Hero / Slider
   ========================================================================== */

.fuji-hero {
	margin-top: 0;
	position: relative;
	overflow: hidden;
}

.fuji-hero-swiper {
	width: 100%;
	height: 100vh;
	min-height: 600px;
}

.fuji-hero-slide {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
}

.fuji-hero-slide-bg {
	position: absolute;
	inset: -10% 0;
	z-index: 0;
	overflow: hidden;
}

.fuji-hero-slide-bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.fuji-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		var(--fuji-gradient-glow),
		linear-gradient(
			to bottom,
			rgba(15, 15, 15, 0.45) 0%,
			rgba(15, 15, 15, 0.15) 45%,
			rgba(15, 15, 15, 0.72) 100%
		);
}

.fuji-hero-glow {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		radial-gradient(ellipse 55% 45% at 88% 12%, rgba(168, 48, 200, 0.07) 0%, transparent 58%),
		radial-gradient(ellipse 50% 40% at 8% 88%, rgba(232, 34, 58, 0.1) 0%, transparent 62%);
}

.fuji-hero-layout {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: flex-end;
	height: 100vh;
	min-height: 600px;
	padding: clamp(5rem, 12vh, 8rem) clamp(1.5rem, 6vw, 5rem) clamp(3rem, 8vh, 5rem);
}

.fuji-hero-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	max-width: 900px;
}

.fuji-hero-logo {
	filter: drop-shadow(0 0 24px rgba(232, 34, 58, 0.35));
}

.fuji-hero-title {
	font-family: var(--fuji-font-display);
	font-size: clamp(4rem, 14vw, 11rem);
	font-weight: 800;
	text-transform: none;
	letter-spacing: -0.04em;
	line-height: 0.9;
	margin-bottom: 0.85rem;
	color: var(--fuji-white);
	text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
}

.fuji-hero-content .btn-fuji-primary.btn-lg {
	margin-top: 1.75rem;
	padding: 1.45rem 4.25rem;
	font-size: 1.1rem;
}

.fuji-hero-subtitle {
	font-family: var(--fuji-font-sign);
	font-size: clamp(0.85rem, 2vw, 1.05rem);
	font-weight: 500;
	color: rgba(242, 237, 230, 0.72);
	text-transform: uppercase;
	letter-spacing: 0.18em;
	max-width: 520px;
}

.fuji-hero-pagination .swiper-pagination-bullet {
	background: var(--fuji-white);
	opacity: 0.4;
	width: 10px;
	height: 10px;
	transition: all var(--fuji-transition);
}

.fuji-hero-pagination .swiper-pagination-bullet-active {
	background: var(--fuji-gradient);
	opacity: 1;
	box-shadow: 0 0 14px rgba(232, 34, 58, 0.7);
}

.fuji-hero-prev,
.fuji-hero-next {
	color: var(--fuji-neon) !important;
}

.fuji-hero-prev::after,
.fuji-hero-next::after {
	font-size: 1.5rem !important;
}

@media (max-width: 767.98px) {
	.fuji-hero-layout {
		align-items: flex-end;
		padding-bottom: clamp(4rem, 10vh, 6rem);
	}

	.fuji-hero-title {
		font-size: clamp(3.5rem, 18vw, 6.5rem);
		line-height: 0.92;
	}

	.fuji-hero-content .btn-fuji-primary.btn-lg {
		padding: 1.25rem 3rem;
		font-size: 1rem;
		width: 100%;
		max-width: 320px;
		text-align: center;
	}
}

/* ==========================================================================
   Decorative layer — néon restaurant + silhouettes flottantes
   ========================================================================== */

.fuji-decor {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}

.fuji-decor--dark {
	--fuji-sign-fill: rgba(15, 15, 15, 0.88);
	--fuji-sign-text: #f2ede6;
	--fuji-neon-red: #e8223a;
	--fuji-neon-magenta: #a830c8;
	--fuji-neon-violet: #7c3aed;
}

.fuji-decor--light {
	--fuji-sign-fill: rgba(247, 243, 237, 0.35);
	--fuji-sign-text: #b81428;
	--fuji-neon-red: #c41830;
	--fuji-neon-magenta: #9333a8;
	--fuji-neon-violet: #6d28d9;
}

.fuji-sign-wrap,
.fuji-float-wrap {
	position: absolute;
	z-index: 0;
}

/* --- Silhouettes flottantes (sushi / baguettes) --- */
.fuji-float-wrap {
	width: clamp(76px, 11vw, 128px);
}

.fuji-float-wrap--slot-g {
	bottom: 10%;
	left: 3%;
}

.fuji-float-wrap--slot-h {
	top: 14%;
	right: 4%;
	width: clamp(68px, 9vw, 108px);
}

.fuji-float-wrap--slot-i {
	bottom: 22%;
	right: 6%;
	width: clamp(64px, 8vw, 96px);
}

.fuji-float-ghost img {
	display: block;
	width: 100%;
	height: auto;
}

.fuji-decor--dark .fuji-float-ghost img {
	opacity: 0.28;
	filter:
		grayscale(1)
		brightness(0.55)
		sepia(1)
		hue-rotate(308deg)
		saturate(3.5)
		drop-shadow(0 0 14px rgba(232, 34, 58, 0.55))
		drop-shadow(0 0 28px rgba(168, 48, 200, 0.28));
}

.fuji-decor--light .fuji-float-ghost img {
	opacity: 0.2;
	filter:
		grayscale(1)
		brightness(0.95)
		sepia(1)
		hue-rotate(318deg)
		saturate(2.8)
		drop-shadow(0 0 10px rgba(196, 24, 48, 0.35))
		drop-shadow(0 0 22px rgba(147, 51, 168, 0.18));
}

.fuji-float--drift-a {
	animation: fujiSignFloat 10s ease-in-out infinite;
}

.fuji-float--drift-soft {
	animation: fujiSignFloatSoft 12s ease-in-out infinite;
	animation-delay: -2s;
}

.fuji-sign--drift-a {
	animation: fujiSignFloat 9s ease-in-out infinite;
}

.fuji-sign--drift-b {
	animation: fujiSignFloatReverse 9.5s ease-in-out infinite;
	animation-delay: -2s;
}

.fuji-sign--drift-c {
	animation: fujiSignFloat 11s ease-in-out infinite;
	animation-delay: -4s;
}

.fuji-sign--drift-d {
	animation: fujiSignFloatReverse 7.5s ease-in-out infinite;
	animation-delay: -1s;
}

.fuji-decor--light .fuji-sign--drift-a {
	animation: fujiSignFloatSoft 10s ease-in-out infinite;
}

.fuji-decor--light .fuji-sign--drift-b {
	animation: fujiSignFloatSoftReverse 11.5s ease-in-out infinite;
	animation-delay: -3s;
}

.fuji-decor--light .fuji-sign--drift-c {
	animation: fujiSignFloatSoft 12s ease-in-out infinite;
	animation-delay: -5s;
}

.fuji-decor--light .fuji-sign--drift-d {
	animation: fujiSignFloatSoftReverse 9s ease-in-out infinite;
	animation-delay: -1.5s;
}

.fuji-sign svg {
	width: 100%;
	height: auto;
	display: block;
}

.fuji-decor--dark .fuji-sign {
	opacity: 0.88;
	filter:
		drop-shadow(0 0 2px rgba(232, 34, 58, 0.65))
		drop-shadow(0 0 14px rgba(232, 34, 58, 0.38))
		drop-shadow(0 0 26px rgba(168, 48, 200, 0.22));
	animation: fujiNeonGlow 5s ease-in-out infinite;
}

.fuji-decor--light .fuji-sign {
	opacity: 0.52;
	filter:
		drop-shadow(0 0 1px rgba(196, 24, 48, 0.5))
		drop-shadow(0 0 10px rgba(196, 24, 48, 0.28))
		drop-shadow(0 0 18px rgba(147, 51, 168, 0.16));
	animation: fujiNeonGlowSoft 6s ease-in-out infinite;
}

@keyframes fujiNeonGlow {
	0%, 100% {
		filter:
			drop-shadow(0 0 2px rgba(232, 34, 58, 0.6))
			drop-shadow(0 0 14px rgba(232, 34, 58, 0.34))
			drop-shadow(0 0 26px rgba(168, 48, 200, 0.2));
	}
	50% {
		filter:
			drop-shadow(0 0 3px rgba(232, 34, 58, 0.75))
			drop-shadow(0 0 18px rgba(232, 34, 58, 0.48))
			drop-shadow(0 0 32px rgba(168, 48, 200, 0.3));
	}
}

@keyframes fujiNeonGlowSoft {
	0%, 100% {
		filter:
			drop-shadow(0 0 1px rgba(196, 24, 48, 0.45))
			drop-shadow(0 0 10px rgba(196, 24, 48, 0.24))
			drop-shadow(0 0 18px rgba(147, 51, 168, 0.14));
	}
	50% {
		filter:
			drop-shadow(0 0 2px rgba(196, 24, 48, 0.58))
			drop-shadow(0 0 14px rgba(196, 24, 48, 0.32))
			drop-shadow(0 0 24px rgba(147, 51, 168, 0.2));
	}
}

/* Emplacements aléatoires — bords, loin du centre */
.fuji-sign-wrap[class*='--slot-'] {
	width: clamp(58px, 7vw, 96px);
}

.fuji-sign-wrap--slot-a { top: 6%;  left: 1%; }
.fuji-sign-wrap--slot-b { top: 12%; right: 1%; }
.fuji-sign-wrap--slot-c { bottom: 14%; left: 2%; }
.fuji-sign-wrap--slot-d { bottom: 8%;  right: 3%; }
.fuji-sign-wrap--slot-e { top: 48%;  left: 0;   width: clamp(52px, 6vw, 78px); }
.fuji-sign-wrap--slot-f { top: 40%;  right: 0;  width: clamp(52px, 6vw, 78px); }

.fuji-sign-wrap--1 { width: clamp(88px, 10vw, 130px); }
.fuji-sign-wrap--3 { width: clamp(92px, 10vw, 140px); }
.fuji-sign-wrap--2 { width: clamp(58px, 6.5vw, 88px); }
.fuji-sign-wrap--4 { width: clamp(72px, 8vw, 108px); }
.fuji-sign-wrap--5 { width: clamp(58px, 6.5vw, 86px); }
.fuji-sign-wrap--6 { width: clamp(56px, 6.5vw, 84px); }

.fuji-sign-wrap--6.fuji-sign-wrap--slot-c,
.fuji-sign-wrap--6.fuji-sign-wrap--slot-d {
	width: clamp(52px, 6vw, 76px);
}

/* Legacy positions (fallback sans slot) */
.fuji-sign-wrap--1:not([class*='--slot-']) {
	top: 4%;
	right: 2%;
	width: clamp(96px, 11vw, 150px);
}

.fuji-sign-wrap--2:not([class*='--slot-']) {
	top: 10%;
	left: 1%;
	width: clamp(64px, 7vw, 100px);
}

.fuji-sign-wrap--3:not([class*='--slot-']) {
	bottom: 12%;
	right: 6%;
	width: clamp(100px, 12vw, 165px);
}

.fuji-sign-wrap--5:not([class*='--slot-']) {
	top: 42%;
	right: 0;
	width: clamp(72px, 8vw, 110px);
}

@keyframes fujiSignFloat {
	0%, 100% {
		transform: rotate(var(--sign-rot, 0deg)) translateY(0);
	}
	50% {
		transform: rotate(var(--sign-rot, 0deg)) translateY(-7px);
	}
}

@keyframes fujiSignFloatReverse {
	0%, 100% {
		transform: rotate(var(--sign-rot, 0deg)) translateY(-3px);
	}
	50% {
		transform: rotate(var(--sign-rot, 0deg)) translateY(6px);
	}
}

@keyframes fujiSignFloatSoft {
	0%, 100% {
		transform: rotate(var(--sign-rot, 0deg)) translate3d(0, 0, 0);
	}
	50% {
		transform: rotate(var(--sign-rot, 0deg)) translate3d(0, -5px, 0);
	}
}

@keyframes fujiSignFloatSoftReverse {
	0%, 100% {
		transform: rotate(var(--sign-rot, 0deg)) translate3d(0, -2px, 0);
	}
	50% {
		transform: rotate(var(--sign-rot, 0deg)) translate3d(0, 4px, 0);
	}
}

.fuji-sign--1 { --sign-rot: 4deg; }
.fuji-sign--2 { --sign-rot: -5deg; }
.fuji-sign--3 { --sign-rot: 2deg; }
.fuji-sign--4 { --sign-rot: -4deg; }
.fuji-sign--5 { --sign-rot: 6deg; }
.fuji-sign--6 { --sign-rot: -7deg; }

.fuji-commander,
.fuji-menu__content,
.fuji-contact .fuji-panel__body,
.fuji-experience {
	position: relative;
	overflow: hidden;
}

.fuji-commander .fuji-decor .fuji-sign,
.fuji-menu__content .fuji-decor .fuji-sign,
.fuji-contact .fuji-decor .fuji-sign {
	opacity: 0.34;
}

@media (max-width: 991.98px) {
	.fuji-decor--dark .fuji-sign {
		opacity: 0.55;
	}

	.fuji-sign-wrap--slot-e,
	.fuji-sign-wrap--slot-f {
		display: none;
	}
}

@media (max-width: 575.98px) {
	.fuji-sign-wrap--3 {
		width: clamp(80px, 22vw, 110px);
		bottom: 8%;
		right: 2%;
	}

	.fuji-sign-wrap--1 {
		width: clamp(72px, 20vw, 96px);
		top: 2%;
	}
}

/* ==========================================================================
   Sections — shared tokens
   ========================================================================== */

/* Dark premium — noir uni */
.fuji-section--dark {
	background-color: var(--fuji-black);
	color: var(--fuji-white);
}

/* Light luxury */
.fuji-section--light {
	background-color: var(--fuji-light-warm);
	color: var(--fuji-light-text);
}

.fuji-section--light::before,
.fuji-panel__body.fuji-section--light::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(232, 34, 58, 0.35), transparent);
	z-index: 0;
}

.fuji-section--dark::before,
.fuji-panel__body.fuji-section--dark::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(232, 34, 58, 0.2), transparent);
	z-index: 0;
}

.fuji-panel--dark::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(232, 34, 58, 0.2), transparent);
	z-index: 2;
}

.fuji-section-header {
	margin-bottom: 3rem;
}

.fuji-section-label {
	display: block;
	font-family: var(--fuji-font-sign);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.28em;
	color: var(--fuji-red-neon);
	margin-bottom: 0.75rem;
}

.fuji-section--light .fuji-section-label {
	color: var(--fuji-red-neon);
	opacity: 0.85;
}

.fuji-section-title {
	font-family: var(--fuji-font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 1rem;
}

.fuji-section--light .fuji-section-title {
	color: var(--fuji-light-text);
}

.fuji-divider {
	width: 60px;
	height: 2px;
	background: var(--fuji-gradient);
	margin: 0 auto;
	border-radius: 2px;
	box-shadow: 0 0 16px rgba(232, 34, 58, 0.5);
}

.fuji-divider--left {
	margin: 0;
}

/* ==========================================================================
   Reveal animations — titres & fades
   ========================================================================== */

.fuji-reveal-title {
	overflow: hidden;
	will-change: transform;
}

.fuji-reveal-word {
	display: inline-block;
	opacity: 0;
	transform: translate3d(0, 110%, 0);
	transition:
		opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: calc(var(--reveal-i, 0) * 0.09s);
}

.fuji-reveal-title.is-revealed .fuji-reveal-word {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.fuji-panel__title--display .fuji-reveal-word {
	transition-duration: 1s;
	transition-delay: calc(var(--reveal-i, 0) * 0.12s);
}

.fuji-reveal-fade {
	opacity: 0;
	transform: translate3d(0, 28px, 0);
	transition:
		opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0.15s;
}

.fuji-reveal-fade.is-revealed {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.fuji-hero-content .fuji-reveal-fade:nth-child(1) { transition-delay: 0.2s; }
.fuji-hero-content .fuji-reveal-title + .fuji-reveal-fade { transition-delay: 0.55s; }
.fuji-hero-content .fuji-reveal-fade:last-child { transition-delay: 0.75s; }

.fuji-section-label.fuji-reveal-fade.is-revealed {
	transition-delay: 0s;
}

.fuji-reveal-title.is-revealed + .fuji-divider,
.fuji-reveal-title.is-revealed + .fuji-divider--left {
	animation: fujiDividerGrow 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: 0.25s;
}

.fuji-divider,
.fuji-divider--left {
	transform-origin: center center;
}

.fuji-divider--left {
	transform-origin: left center;
}

@keyframes fujiDividerGrow {
	from {
		transform: scaleX(0);
		opacity: 0;
	}
	to {
		transform: scaleX(1);
		opacity: 1;
	}
}

/* ==========================================================================
   Presentation
   ========================================================================== */

.fuji-presentation .fuji-panel__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, transparent 60%, var(--fuji-light-warm) 100%);
	pointer-events: none;
}

@media (max-width: 991.98px) {
	.fuji-presentation .fuji-panel__media::after {
		background: linear-gradient(to bottom, transparent 50%, rgba(15, 15, 15, 0.35) 100%);
	}
}

.fuji-section--light .fuji-presentation-text {
	color: var(--fuji-light-muted);
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	line-height: 1.75;
}

.fuji-presentation-text p {
	margin-bottom: 1.25rem;
}

.fuji-presentation-text p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   Story — texte gauche / image droite
   ========================================================================== */

.fuji-story .fuji-panel__inner--wide {
	max-width: 640px;
}

.fuji-story-text {
	color: var(--fuji-light-muted);
	font-size: clamp(1rem, 1.5vw, 1.12rem);
	line-height: 1.8;
}

.fuji-story-text p {
	margin-bottom: 1.35rem;
}

.fuji-story-text p:last-child {
	margin-bottom: 0;
}

.fuji-story .fuji-panel__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to left, transparent 55%, var(--fuji-light-warm) 100%);
	pointer-events: none;
	z-index: 1;
}

@media (max-width: 991.98px) {
	.fuji-story.fuji-panel--split .fuji-panel__body {
		order: 2;
	}

	.fuji-story.fuji-panel--split .fuji-panel__media {
		order: 1;
		min-height: 42vh;
	}

	.fuji-story .fuji-panel__media::after {
		background: linear-gradient(to bottom, transparent 45%, var(--fuji-light-warm) 100%);
	}
}

/* ==========================================================================
   Expérience Fuji — 3 piliers
   ========================================================================== */

.fuji-experience {
	position: relative;
	padding: clamp(4rem, 10vh, 7rem) clamp(1.5rem, 6vw, 5rem);
	overflow: hidden;
}

.fuji-experience__header {
	position: relative;
	z-index: 1;
	max-width: 640px;
	margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.fuji-experience__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1rem, 2vw, 1.5rem);
	max-width: 1400px;
	margin: 0 auto;
}

.fuji-experience-card {
	position: relative;
	min-height: clamp(360px, 52vh, 520px);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: transform var(--fuji-transition), border-color var(--fuji-transition), box-shadow var(--fuji-transition);
}

.fuji-experience-card:hover {
	transform: translateY(-6px);
	border-color: rgba(232, 34, 58, 0.45);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 32px rgba(232, 34, 58, 0.12);
}

.fuji-experience-card__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fuji-experience-card:hover .fuji-experience-card__bg {
	transform: scale(1.06);
}

.fuji-experience-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(15, 15, 15, 0.92) 0%,
		rgba(15, 15, 15, 0.35) 45%,
		rgba(15, 15, 15, 0.15) 100%
	);
}

.fuji-experience-card__content {
	position: absolute;
	inset: auto 0 0;
	padding: clamp(1.5rem, 3vw, 2rem);
	z-index: 1;
}

.fuji-experience-card__index {
	display: block;
	font-family: var(--fuji-font-sign);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.28em;
	color: var(--fuji-red-neon);
	margin-bottom: 0.5rem;
}

.fuji-experience-card__title {
	font-family: var(--fuji-font-display);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: var(--fuji-white);
	letter-spacing: -0.02em;
}

.fuji-experience-card__text {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: rgba(242, 237, 230, 0.72);
	max-width: 28ch;
}

.fuji-reveal-fade[style*='--exp-i'] {
	transition-delay: calc(var(--exp-i, 0) * 0.12s + 0.1s);
}

@media (max-width: 991.98px) {
	.fuji-experience__grid {
		grid-template-columns: 1fr;
	}

	.fuji-experience-card {
		min-height: 320px;
	}
}

/* ==========================================================================
   Galerie immersive
   ========================================================================== */

.fuji-gallery {
	position: relative;
	padding: clamp(4rem, 10vh, 6rem) 0 clamp(4rem, 8vh, 6rem);
	overflow: hidden;
}

.fuji-gallery__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto clamp(2rem, 4vh, 3rem);
	padding: 0 clamp(1.5rem, 6vw, 5rem);
}

.fuji-gallery__header .fuji-divider {
	margin: 1rem auto 0;
}

.fuji-gallery-swiper {
	width: 100%;
	padding: 0 clamp(1.5rem, 6vw, 5rem) 3rem;
}

.fuji-gallery-slide {
	position: relative;
	height: clamp(280px, 55vh, 560px);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.fuji-gallery-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fuji-gallery-slide:hover img {
	transform: scale(1.03);
}

.fuji-gallery-pagination {
	position: relative !important;
	margin-top: 1.5rem;
}

.fuji-gallery-pagination .swiper-pagination-bullet {
	background: var(--fuji-white);
	opacity: 0.35;
}

.fuji-gallery-pagination .swiper-pagination-bullet-active {
	background: var(--fuji-gradient);
	opacity: 1;
}

.fuji-gallery-prev,
.fuji-gallery-next {
	color: var(--fuji-red-neon) !important;
}

.fuji-gallery-prev::after,
.fuji-gallery-next::after {
	font-size: 1.25rem !important;
}

/* ==========================================================================
   Menu
   ========================================================================== */

.fuji-menu {
	position: relative;
}

/* Split hero — image gauche pleine hauteur, titre droite centré */
.fuji-menu-hero.fuji-panel--split {
	min-height: clamp(440px, 52vh, 600px);
	align-items: stretch;
}

.fuji-menu-hero .fuji-panel__media {
	min-height: 100%;
	height: 100%;
	align-self: stretch;
}

.fuji-menu-hero .fuji-panel__media-bg {
	inset: 0;
	height: 100%;
	min-height: 100%;
	background-position: center center;
}

.fuji-menu-hero .fuji-panel__media::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to right,
		rgba(15, 15, 15, 0.05) 0%,
		rgba(15, 15, 15, 0.35) 45%,
		var(--fuji-black) 78%
	);
	pointer-events: none;
}

.fuji-menu-hero__body {
	background-color: var(--fuji-black);
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-height: 100%;
	height: 100%;
	align-self: stretch;
	padding: clamp(1.25rem, 3vh, 2rem) clamp(1.5rem, 5vw, 4rem);
}

.fuji-menu-hero__inner {
	max-width: 680px;
}

.fuji-menu-hero__body .fuji-panel__title--display {
	font-family: var(--fuji-font-menu-hero);
	font-size: clamp(3rem, 10vw, 7.5rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	line-height: 0.95;
	color: var(--fuji-white);
	text-shadow: 0 2px 40px rgba(0, 0, 0, 0.55);
}

.fuji-menu-hero__body .fuji-section-label {
	position: relative;
	z-index: 1;
}

.fuji-menu__content {
	position: relative;
	padding: clamp(1rem, 3vh, 2rem) 0 clamp(4rem, 10vh, 7rem);
	overflow: hidden;
}

.fuji-menu__content-inner {
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 6vw, 5rem);
}

@media (max-width: 991.98px) {
	.fuji-menu-hero.fuji-panel--split {
		min-height: auto;
	}

	.fuji-menu-hero .fuji-panel__media {
		min-height: 42vh;
		height: auto;
	}

	.fuji-menu-hero .fuji-panel__media-bg {
		inset: -12% 0;
		height: auto;
		min-height: 124%;
	}

	.fuji-menu-hero .fuji-panel__media::after {
		background: linear-gradient(
			to bottom,
			rgba(15, 15, 15, 0.1) 0%,
			rgba(15, 15, 15, 0.55) 55%,
			var(--fuji-black) 100%
		);
	}

	.fuji-menu-hero__body {
		align-items: flex-start;
		justify-content: flex-start;
		min-height: auto;
		height: auto;
		padding: clamp(1.5rem, 4vh, 2.5rem) clamp(1.5rem, 5vw, 2rem);
	}

	.fuji-menu-hero__inner {
		max-width: 100%;
	}

	.fuji-menu-hero__body .fuji-panel__title--display {
		font-size: clamp(2.75rem, 14vw, 4.5rem);
	}
}

.fuji-menu-tabs .nav-link {
	background: var(--fuji-black-card);
	border: 1px solid var(--fuji-gray-dark) !important;
	color: var(--fuji-gray) !important;
	font-family: var(--fuji-font-display);
	font-size: 0.82rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border-radius: 0 !important;
	padding: 0.9rem 2rem;
	transition: all var(--fuji-transition);
}

.fuji-menu-tabs .nav-link:hover {
	border-color: rgba(232, 34, 58, 0.5) !important;
	color: var(--fuji-neon) !important;
	box-shadow: 0 0 16px rgba(232, 34, 58, 0.15);
}

.fuji-menu-tabs .nav-link.active {
	background: var(--fuji-gradient) !important;
	border-color: transparent !important;
	color: #ffffff !important;
	box-shadow: 0 4px 24px rgba(232, 34, 58, 0.4);
}

.fuji-menu-card {
	background: var(--fuji-black-elevated);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 14px;
	padding: 1.5rem;
	transition: all var(--fuji-transition);
	backdrop-filter: blur(4px);
}

.fuji-menu-card:hover {
	border-color: rgba(232, 34, 58, 0.45);
	box-shadow: 0 8px 40px rgba(232, 34, 58, 0.15), inset 0 0 24px rgba(232, 34, 58, 0.03);
	transform: translateY(-3px);
}

.fuji-menu-item-name {
	font-family: var(--fuji-font-display);
	font-size: 1.05rem;
	font-weight: 600;
	margin: 0;
	letter-spacing: 0.02em;
}

.fuji-menu-item-price {
	font-family: var(--fuji-font-display);
	font-weight: 600;
	background: var(--fuji-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	white-space: nowrap;
}

.fuji-menu-item-desc {
	color: var(--fuji-gray);
	font-size: 0.88rem;
	margin: 0.5rem 0 0;
	line-height: 1.5;
}

/* Menu PDF */
.fuji-menu-pdf {
	max-width: 960px;
	margin: 0 auto;
}

.fuji-menu-pdf__viewer {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.35);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.fuji-menu-pdf__iframe {
	display: block;
	width: 100%;
	min-height: clamp(420px, 70vh, 820px);
	border: 0;
	background: #1a1a1a;
}

.fuji-menu-pdf__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.75rem;
}

.fuji-menu-pdf--empty .fuji-menu-pdf__notice {
	color: var(--fuji-gray);
	font-size: 1rem;
	margin: 0;
	padding: 3rem 1rem;
}

/* ==========================================================================
   Instagram
   ========================================================================== */

.fuji-instagram {
	position: relative;
	padding: clamp(4rem, 10vh, 7rem) 0;
	overflow: hidden;
}

.fuji-instagram__header {
	margin-bottom: clamp(2rem, 5vh, 3rem);
}

.fuji-instagram__profile {
	display: inline-block;
	margin-top: 1rem;
	color: var(--fuji-neon);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	transition: color var(--fuji-transition), text-shadow var(--fuji-transition);
}

.fuji-instagram__profile:hover {
	color: var(--fuji-white);
	text-shadow: 0 0 18px var(--fuji-neon-soft);
}

.fuji-instagram__widget {
	display: flex;
	justify-content: center;
	max-width: 100%;
	overflow: hidden;
}

.fuji-instagram__widget iframe {
	max-width: 100%;
	border: 0;
	border-radius: 4px;
}

.fuji-instagram-swiper {
	padding-bottom: 3rem;
}

.fuji-instagram-card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: var(--fuji-black);
	aspect-ratio: 1 / 1;
	text-decoration: none;
	transition: transform var(--fuji-transition), box-shadow var(--fuji-transition);
}

.fuji-instagram-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(232, 34, 58, 0.18);
}

.fuji-instagram-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fuji-instagram-card__caption {
	position: absolute;
	inset: auto 0 0;
	padding: 1rem;
	background: linear-gradient(to top, rgba(15, 15, 15, 0.92), transparent);
	color: var(--fuji-white);
	font-size: 0.82rem;
	line-height: 1.4;
}

.fuji-instagram-pagination .swiper-pagination-bullet {
	background: var(--fuji-gray);
	opacity: 0.55;
}

.fuji-instagram-pagination .swiper-pagination-bullet-active {
	background: var(--fuji-neon);
	opacity: 1;
}

.fuji-instagram-prev,
.fuji-instagram-next {
	color: var(--fuji-white);
}

.fuji-instagram-prev::after,
.fuji-instagram-next::after {
	font-size: 1.25rem;
}

/* ==========================================================================
   Commander — pictos compacts
   ========================================================================== */

.fuji-delivery-grid {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: clamp(1.5rem, 4vw, 3rem);
	max-width: 720px;
	margin: 2.5rem auto 0;
}

.fuji-commander .fuji-divider {
	margin-bottom: 0.5rem;
}

.fuji-delivery-picto {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2rem 1.5rem 1.75rem;
	min-width: 0;
	border-radius: 0;
	background: transparent;
	border: 1px solid rgba(232, 34, 58, 0.12);
	color: var(--fuji-light-text);
	text-decoration: none;
	transition: border-color var(--fuji-transition), transform var(--fuji-transition), box-shadow var(--fuji-transition);
}

.fuji-delivery-picto:hover {
	border-color: rgba(232, 34, 58, 0.55);
	color: var(--fuji-light-text);
	transform: translateY(-4px);
	box-shadow: 0 0 32px rgba(232, 34, 58, 0.22), inset 0 0 24px rgba(232, 34, 58, 0.04);
}

.fuji-delivery-picto-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: var(--fuji-gradient);
	color: #ffffff;
	margin-bottom: 1.25rem;
	box-shadow: 0 4px 24px rgba(232, 34, 58, 0.35);
	animation: fujiPictoPulse 3s ease-in-out infinite;
	transition: transform var(--fuji-transition), box-shadow var(--fuji-transition);
}

.fuji-delivery-picto-icon svg {
	width: 46px;
	height: 46px;
}

.fuji-delivery-picto-icon--dood {
	animation-delay: -1.5s;
}

.fuji-delivery-picto:hover .fuji-delivery-picto-icon {
	transform: scale(1.08);
	box-shadow: 0 0 24px rgba(232, 34, 58, 0.45);
	animation: none;
}

.fuji-delivery-picto-name {
	font-family: var(--fuji-font-display);
	font-size: 1.15rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.35rem;
}

.fuji-delivery-picto-desc {
	font-size: 0.9rem;
	color: var(--fuji-light-muted);
	line-height: 1.4;
}

.fuji-delivery-picto-arrow {
	position: absolute;
	top: 0.75rem;
	right: 0.85rem;
	font-size: 0.9rem;
	color: var(--fuji-neon);
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity var(--fuji-transition), transform var(--fuji-transition);
}

.fuji-delivery-picto:hover .fuji-delivery-picto-arrow {
	opacity: 1;
	transform: translateX(0);
}

@keyframes fujiPictoPulse {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(232, 34, 58, 0.25);
	}
	50% {
		box-shadow: 0 0 20px 4px rgba(232, 34, 58, 0.2);
	}
}

@media (max-width: 575.98px) {
	.fuji-delivery-grid {
		flex-direction: column;
		gap: 1.5rem;
		max-width: 360px;
		margin-top: 2rem;
	}

	.fuji-delivery-picto {
		padding: 1.75rem 1.25rem 1.5rem;
		border-radius: 0;
	}

	.fuji-delivery-picto-icon {
		width: 80px;
		height: 80px;
		margin-bottom: 1rem;
	}

	.fuji-delivery-picto-icon svg {
		width: 40px;
		height: 40px;
	}

	.fuji-delivery-picto-name {
		font-size: 1.05rem;
	}

	.fuji-delivery-picto-desc {
		font-size: 0.85rem;
	}

	.fuji-delivery-picto-arrow {
		top: 1rem;
		right: 1.25rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fuji-delivery-picto-icon {
		animation: none;
	}
}

/* ==========================================================================
   Contact & Maps
   ========================================================================== */

.fuji-contact-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.fuji-contact-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.fuji-contact-icon {
	font-size: 1.25rem;
	flex-shrink: 0;
	width: 2rem;
	text-align: center;
}

.fuji-contact-item strong {
	display: block;
	font-family: var(--fuji-font-display);
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	background: var(--fuji-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 0.25rem;
}

.fuji-contact-item p {
	margin: 0;
	color: var(--fuji-gray);
}

.fuji-section--light .fuji-contact-item p {
	color: var(--fuji-light-muted);
}

.fuji-contact-item a {
	color: var(--fuji-white);
}

.fuji-section--light .fuji-contact-item a {
	color: var(--fuji-light-text);
}

.fuji-contact-item a:hover {
	color: var(--fuji-neon);
}

.fuji-contact .fuji-panel__body {
	align-items: flex-start;
	padding-top: clamp(5rem, 12vh, 8rem);
}

.fuji-map-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100%;
	height: 100%;
	background: var(--fuji-black-elevated);
	padding: 2rem;
	text-align: center;
}

.fuji-map-placeholder p {
	color: var(--fuji-gray);
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.fuji-map-placeholder span {
	font-family: var(--fuji-font-display);
	color: var(--fuji-neon);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.fuji-footer {
	background: var(--fuji-black);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 3rem 0 1.5rem;
}

.fuji-footer-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
}

.fuji-footer-nav a {
	color: var(--fuji-gray);
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.fuji-footer-nav a:hover {
	color: var(--fuji-neon);
}

.fuji-social-links {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

@media (min-width: 768px) {
	.fuji-social-links {
		justify-content: flex-end;
	}
}

.fuji-social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--fuji-gray-dark);
	color: var(--fuji-gray);
	transition: all var(--fuji-transition);
}

.fuji-social-links a:hover {
	border-color: var(--fuji-neon);
	color: var(--fuji-neon);
	box-shadow: 0 0 16px var(--fuji-neon-soft);
}

.fuji-footer-bottom {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fuji-footer-bottom p {
	color: var(--fuji-gray);
	font-size: 0.78rem;
	margin: 0;
	letter-spacing: 0.04em;
}

/* ==========================================================================
   Floating CTA
   ========================================================================== */

.fuji-floating-cta {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 1020;
	background: var(--fuji-gradient);
	color: #ffffff;
	font-family: var(--fuji-font-display);
	font-weight: 600;
	font-size: 0.92rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 1.15rem 2.75rem;
	border-radius: 0;
	box-shadow: 0 4px 28px rgba(232, 34, 58, 0.45);
	opacity: 0;
	visibility: hidden;
	transform: translateY(1rem);
	pointer-events: none;
	transition: opacity var(--fuji-transition), transform var(--fuji-transition), visibility var(--fuji-transition), box-shadow var(--fuji-transition);
}

.fuji-floating-cta.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.fuji-floating-cta:hover {
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 36px rgba(232, 34, 58, 0.55);
}

.fuji-floating-cta.is-visible:hover {
	transform: translateY(-2px);
}

@media (max-width: 575.98px) {
	.fuji-floating-cta {
		bottom: 1rem;
		right: 1rem;
		left: 1rem;
		text-align: center;
	}
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	.fuji-sign,
	.fuji-float-wrap,
	.fuji-sign--drift-a,
	.fuji-sign--drift-b,
	.fuji-sign--drift-c,
	.fuji-sign--drift-d {
		animation: none !important;
	}

	.fuji-nav-drawer,
	.fuji-nav-backdrop,
	.fuji-burger__line,
	.fuji-nav-list li,
	.fuji-nav-drawer__actions {
		transition: none;
	}

	.fuji-nav-list li {
		opacity: 1;
		transform: none;
	}

	.fuji-header.is-nav-open .fuji-nav-drawer__actions {
		opacity: 1;
		transform: none;
	}

	.fuji-reveal-word,
	.fuji-reveal-fade {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.fuji-panel__media-bg,
	.fuji-hero-slide-bg,
	[data-parallax] {
		transform: none !important;
	}

	html {
		scroll-behavior: auto;
	}
}
