/* ─────────────────────────────────────────────
   Station Franco-Suisse — modernisé MACH 12
   ───────────────────────────────────────────── */

:root {
	--bg: #faf7f2;
	--bg-alt: #f1ece3;
	--ink: #1a1814;
	--ink-soft: #5a544b;
	--ink-mute: #8a8377;
	--line: rgba(26, 24, 20, 0.08);
	--accent: #c8102e;
	--accent-dark: #9b0a23;
	--accent-soft: rgba(200, 16, 46, 0.08);
	--cream: #fffaf0;
	--shadow-sm: 0 2px 8px rgba(26, 24, 20, 0.04);
	--shadow-md: 0 12px 40px rgba(26, 24, 20, 0.08);
	--shadow-lg: 0 30px 80px rgba(26, 24, 20, 0.12);
	--radius: 18px;
	--radius-lg: 28px;
	--ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	background: var(--bg);
	color: var(--ink);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* ── Typo helpers ── */
.kicker {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--accent);
	margin-bottom: 1rem;
	position: relative;
	padding-left: 1.75rem;
}
.kicker::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 1.25rem;
	height: 1px;
	background: var(--accent);
}

h1, h2, h3, h4 {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.05;
	color: var(--ink);
}
h2 em, h1 em {
	font-style: italic;
	font-weight: 500;
	color: var(--accent);
}

.lead {
	font-size: 1.05rem;
	color: var(--ink-soft);
	max-width: 56ch;
	line-height: 1.65;
}

/* ── Header / Nav ── */
#header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(250, 247, 242, 0);
	transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
#header.scrolled {
	background: rgba(250, 247, 242, 0.92);
	backdrop-filter: saturate(180%) blur(14px);
	box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 76px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	font-weight: 800;
	letter-spacing: -0.01em;
}
.brand-logo {
	display: block;
	width: 42px;
	height: 42px;
	background-color: var(--cream);
	-webkit-mask: url('images/logo.svg') center / contain no-repeat;
	mask: url('images/logo.svg') center / contain no-repeat;
	flex-shrink: 0;
	transition: background-color 0.3s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease);
}
#header.scrolled .brand-logo {
	background-color: var(--accent);
	width: 38px;
	height: 38px;
}
.brand:hover .brand-logo {
	opacity: 0.85;
}
#header.scrolled .brand:hover .brand-logo {
	background-color: var(--accent-dark);
	opacity: 1;
}
.brand-text {
	font-size: 1rem;
	font-weight: 700;
	color: var(--cream);
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
	transition: color 0.3s var(--ease), text-shadow 0.3s var(--ease);
}
#header.scrolled .brand-text {
	color: var(--ink);
	text-shadow: none;
}

.nav-links {
	display: flex;
	gap: 0.5rem;
}
.nav-links a {
	padding: 0.55rem 1rem;
	font-size: 0.85rem;
	font-weight: 500;
	color: rgba(255, 250, 240, 0.88);
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
	border-radius: 9999px;
	transition: all 0.25s var(--ease);
	position: relative;
}
.nav-links a:hover {
	color: white;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
}
#header.scrolled .nav-links a {
	color: var(--ink-soft);
	text-shadow: none;
	backdrop-filter: none;
}
#header.scrolled .nav-links a:hover {
	color: var(--ink);
	background: var(--accent-soft);
}

.nav-toggle {
	display: none;
	background: transparent;
	border: 0;
	padding: 0.5rem;
	cursor: pointer;
	flex-direction: column;
	gap: 5px;
}
.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--cream);
	border-radius: 2px;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
	transition: all 0.3s var(--ease);
}
#header.scrolled .nav-toggle span,
body.nav-open .nav-toggle span {
	background: var(--ink);
	box-shadow: none;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: var(--cream);
	padding-top: 76px;
}
.hero-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}
.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.06);
	animation: heroZoom 14s ease-in-out infinite alternate;
	filter: saturate(0.85) contrast(1.05);
}
@keyframes heroZoom {
	from { transform: scale(1.02); }
	to { transform: scale(1.12); }
}
.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(26, 24, 20, 0.78) 0%, rgba(26, 24, 20, 0.55) 50%, rgba(155, 10, 35, 0.45) 100%);
}
.hero-logo {
	position: absolute;
	right: -8%;
	top: 50%;
	transform: translateY(-50%);
	width: 60vmin;
	height: 60vmin;
	max-width: 720px;
	max-height: 720px;
	background-color: white;
	-webkit-mask: url('images/logo.svg') center / contain no-repeat;
	mask: url('images/logo.svg') center / contain no-repeat;
	opacity: 0.06;
	pointer-events: none;
	z-index: 1;
}
@media (max-width: 900px) {
	.hero-logo {
		right: -25%;
		opacity: 0.05;
	}
}
.hero-inner {
	position: relative;
	z-index: 2;
	padding: 5rem 1.5rem 6rem;
	max-width: 900px;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.55rem 1rem;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 9999px;
	margin-bottom: 1.75rem;
	animation: fadeInUp 0.8s var(--ease) both;
}
.hero-eyebrow .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #4ade80;
	box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
	animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
	0%, 100% { box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2); }
	50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.hero-title {
	font-family: 'Fraunces', Georgia, serif;
	font-size: clamp(2.5rem, 6.5vw, 5.5rem);
	font-weight: 900;
	letter-spacing: -0.035em;
	line-height: 0.98;
	color: white;
	margin-bottom: 1.5rem;
	animation: fadeInUp 0.8s var(--ease) 0.1s both;
}
.hero-title em {
	font-style: italic;
	font-weight: 500;
	color: #fcd34d;
}

.hero-sub {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.85);
	max-width: 560px;
	margin-bottom: 2.25rem;
	line-height: 1.55;
	animation: fadeInUp 0.8s var(--ease) 0.2s both;
}

.hero-cta {
	display: flex;
	gap: 0.85rem;
	flex-wrap: wrap;
	margin-bottom: 3.5rem;
	animation: fadeInUp 0.8s var(--ease) 0.3s both;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.95rem 1.85rem;
	font-family: 'Inter', sans-serif;
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	border-radius: 9999px;
	border: 0;
	cursor: pointer;
	transition: all 0.25s var(--ease);
	white-space: nowrap;
}
.btn-primary {
	background: var(--accent);
	color: white;
	box-shadow: 0 6px 24px rgba(200, 16, 46, 0.35);
}
.btn-primary:hover {
	background: var(--accent-dark);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(200, 16, 46, 0.45);
}
.btn-ghost {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.18);
	transform: translateY(-2px);
}

.hero-stats {
	display: flex;
	gap: 2.5rem;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s var(--ease) 0.4s both;
}
.stat {
	border-left: 2px solid rgba(255, 255, 255, 0.25);
	padding-left: 1rem;
}
.stat-num {
	font-family: 'Fraunces', serif;
	font-size: 1.85rem;
	font-weight: 700;
	color: white;
	letter-spacing: -0.02em;
}
.stat-num span {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 500;
	margin-left: 0.15rem;
}
.stat-num--word {
	font-style: italic;
	font-weight: 500;
	color: #fcd34d;
	font-size: 1.65rem;
}
.stat-label {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 0.25rem;
}

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(28px); }
	to { opacity: 1; transform: translateY(0); }
}

.scroll-hint {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	width: 26px;
	height: 42px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 14px;
	z-index: 2;
}
.scroll-hint span {
	position: absolute;
	top: 8px;
	left: 50%;
	width: 3px;
	height: 8px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 2px;
	transform: translateX(-50%);
	animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
	0% { opacity: 1; transform: translateX(-50%) translateY(0); }
	100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ── Sections base ── */
.section {
	padding: 7rem 0;
	position: relative;
}
.section-head {
	max-width: 720px;
	margin: 0 auto 4rem;
	text-align: center;
}
.section-head h2 {
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	margin-bottom: 1.25rem;
}
.section-head .lead {
	margin: 0 auto;
}

/* Reveal animation */
.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ── Horaires ── */
.section-horaires {
	background: var(--bg-alt);
}
.horaires-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	max-width: 980px;
	margin: 0 auto;
}
.horaires-card {
	background: var(--cream);
	padding: 2.25rem 2rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--line);
	transition: all 0.3s var(--ease);
	position: relative;
}
.horaires-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
}
.horaires-day {
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-mute);
	margin-bottom: 0.85rem;
}
.horaires-time {
	font-family: 'Fraunces', serif;
	font-size: 1.85rem;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: -0.01em;
	line-height: 1.3;
}
.horaires-card--accent {
	background: linear-gradient(135deg, var(--ink) 0%, #2a2620 100%);
	color: var(--cream);
	border: 0;
	box-shadow: var(--shadow-md);
}
.horaires-card--accent .horaires-day { color: rgba(255, 250, 240, 0.6); }
.horaires-card--accent .horaires-time { color: #fcd34d; }
.horaires-badge {
	display: inline-block;
	padding: 0.3rem 0.75rem;
	background: var(--accent);
	color: white;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 9999px;
	margin-bottom: 0.85rem;
}
.horaires-note {
	font-size: 0.82rem;
	color: rgba(255, 250, 240, 0.65);
	margin-top: 0.85rem;
	line-height: 1.5;
}

/* ── Services ── */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}
.service-card {
	background: var(--cream);
	padding: 2.25rem 2rem;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	transition: all 0.35s var(--ease);
	position: relative;
	overflow: hidden;
}
.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s var(--ease);
}
.service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-md);
	border-color: transparent;
}
.service-card:hover::before {
	transform: scaleX(1);
}
.service-icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-soft);
	color: var(--accent);
	border-radius: 14px;
	margin-bottom: 1.25rem;
	transition: all 0.3s var(--ease);
}
.service-icon svg {
	width: 26px;
	height: 26px;
}
.service-card:hover .service-icon {
	background: var(--accent);
	color: white;
	transform: scale(1.05) rotate(-3deg);
}
.service-card h3 {
	font-size: 1.35rem;
	margin-bottom: 0.5rem;
}
.service-card p {
	color: var(--ink-soft);
	font-size: 0.92rem;
	line-height: 1.6;
}

/* ── Shop ── */
.section-shop {
	background: var(--bg);
	padding-top: 6rem;
	padding-bottom: 6rem;
}
.shop-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 4rem;
	align-items: center;
}
.shop-text h2 {
	font-size: clamp(1.85rem, 3.8vw, 2.85rem);
	margin-bottom: 1.25rem;
	line-height: 1.1;
}
.shop-text h2 sup {
	font-size: 0.55em;
	font-weight: 500;
	vertical-align: super;
	line-height: 0;
}
.shop-text .lead {
	margin-bottom: 2rem;
}
.shop-stat {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.5rem 1.75rem;
	background: linear-gradient(135deg, var(--accent-soft), rgba(252, 211, 77, 0.12));
	border: 1px solid rgba(200, 16, 46, 0.2);
	border-radius: var(--radius);
}
.shop-stat-num {
	font-family: 'Fraunces', serif;
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 1;
	color: var(--accent);
	letter-spacing: -0.03em;
}
.shop-stat-num sup {
	font-size: 0.45em;
	vertical-align: super;
	font-weight: 700;
	margin-left: 0.05em;
}
.shop-stat-text {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}
.shop-stat-text strong {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.25;
}
.shop-stat-text span {
	font-size: 0.78rem;
	color: var(--ink-mute);
	font-weight: 500;
}

.shop-products {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.85rem;
}
.shop-card {
	background: var(--cream);
	padding: 1.4rem 1.35rem;
	border-radius: 14px;
	border: 1px solid var(--line);
	transition: all 0.3s var(--ease);
}
.shop-card:hover {
	transform: translateY(-4px);
	border-color: rgba(200, 16, 46, 0.25);
	box-shadow: var(--shadow-md);
}
.shop-icon {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-soft);
	color: var(--accent);
	border-radius: 10px;
	margin-bottom: 0.85rem;
	transition: all 0.3s var(--ease);
}
.shop-icon svg {
	width: 20px;
	height: 20px;
}
.shop-card:hover .shop-icon {
	background: var(--accent);
	color: white;
}
.shop-card h4 {
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 0.3rem;
	letter-spacing: -0.005em;
}
.shop-card p {
	font-size: 0.78rem;
	color: var(--ink-soft);
	line-height: 1.45;
}

/* ── Lieu ── */
.section-lieu {
	background: var(--bg-alt);
}
.lieu-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 4rem;
	align-items: center;
}
.lieu-text h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 1.5rem;
}
.lieu-text p {
	color: var(--ink-soft);
	font-size: 1.02rem;
	line-height: 1.7;
	margin-bottom: 1.75rem;
}
.lieu-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}
.lieu-tags span {
	padding: 0.5rem 1rem;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 9999px;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--ink-soft);
}
.lieu-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 200px 200px;
	gap: 1rem;
	height: 100%;
}
.g {
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: transform 0.5s var(--ease);
}
.g img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.6s var(--ease);
}
.g:hover { transform: scale(1.02); }
.g:hover img { transform: scale(1.05); }
.g-1 { grid-column: 1; grid-row: 1 / 3; }
.g-2 { grid-column: 2; grid-row: 1; }
.g-3 { grid-column: 2; grid-row: 2; }

/* ── Équipe ── */
.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	max-width: 880px;
	margin: 0 auto;
}
.team-card {
	background: var(--cream);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--line);
	transition: all 0.35s var(--ease);
}
.team-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}
.team-photo {
	height: 320px;
	background-color: var(--bg-alt);
	overflow: hidden;
}
.team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
	transition: transform 0.6s var(--ease);
}
.team-card:hover .team-photo img {
	transform: scale(1.04);
}
.team-info {
	padding: 1.75rem 2rem 2rem;
}
.team-info h3 {
	font-size: 1.55rem;
	margin-bottom: 0.35rem;
}
.team-role {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--accent);
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.team-meta {
	list-style: none;
	border-top: 1px solid var(--line);
	padding-top: 1rem;
}
.team-meta li {
	font-size: 0.85rem;
	color: var(--ink-soft);
	padding: 0.25rem 0;
}

/* ── Paiements ── */
.section-pay {
	padding: 5rem 0;
}
.pay-card {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 3rem;
	align-items: center;
	padding: 3.5rem;
	background: linear-gradient(135deg, var(--ink) 0%, #2a2620 100%);
	color: var(--cream);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}
.pay-text .kicker { color: #fcd34d; }
.pay-text .kicker::before { background: #fcd34d; }
.pay-text h2 {
	color: var(--cream);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	margin-bottom: 1rem;
}
.pay-text h2 em { color: #fcd34d; }
.pay-text p {
	color: rgba(255, 250, 240, 0.7);
	line-height: 1.7;
}
.pay-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}
.pay-chip {
	padding: 0.7rem 1.15rem;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	font-size: 0.8rem;
	font-weight: 600;
	color: rgba(255, 250, 240, 0.85);
	transition: all 0.25s var(--ease);
}
.pay-chip:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
}

/* ── Contact ── */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 3.5rem;
	align-items: stretch;
}
.contact-info h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 2rem;
}
.contact-address {
	font-style: normal;
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--ink);
	font-weight: 500;
	padding-bottom: 1.75rem;
	margin-bottom: 1.75rem;
	border-bottom: 1px solid var(--line);
}
.contact-row {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 1rem;
	padding: 0.75rem 0;
	align-items: baseline;
}
.contact-label {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-mute);
}
.contact-value {
	font-size: 0.98rem;
	font-weight: 500;
	color: var(--ink);
	transition: color 0.2s var(--ease);
}
a.contact-value:hover { color: var(--accent); }
.contact-btn {
	margin-top: 1.75rem;
}
.contact-map {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	min-height: 460px;
	background: var(--bg-alt);
	border: 1px solid var(--line);
}
.contact-map iframe {
	width: 100%;
	height: 100%;
	min-height: 460px;
	border: 0;
	display: block;
}

/* ── Footer ── */
.footer {
	background: var(--ink);
	color: rgba(255, 250, 240, 0.7);
	padding: 5rem 0 2rem;
	margin-top: 0;
}
.footer-inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 3.5rem;
	border-bottom: 1px solid rgba(255, 250, 240, 0.1);
	align-items: center;
}
.footer-brand {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.footer-logo {
	display: block;
	width: 160px;
	height: 160px;
	background-color: var(--cream);
	-webkit-mask: url('images/logo.svg') center / contain no-repeat;
	        mask: url('images/logo.svg') center / contain no-repeat;
}
.footer-col h4 {
	font-family: 'Inter', sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cream);
	margin-bottom: 1.25rem;
}
.footer-col p {
	font-size: 0.88rem;
	margin-bottom: 0.4rem;
}
.footer-col p strong {
	color: #fcd34d;
}
.footer-bottom {
	padding-top: 2rem;
	font-size: 0.78rem;
	text-align: center;
	color: rgba(255, 250, 240, 0.4);
}

/* ── Responsive ── */
@media (max-width: 900px) {
	.lieu-grid,
	.contact-grid,
	.pay-card,
	.shop-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.shop-stat-num { font-size: 2.75rem; }
	.pay-card { padding: 2.5rem 2rem; }
	.lieu-gallery { grid-template-rows: 180px 180px; }
	.section { padding: 5rem 0; }
	.contact-map { min-height: 360px; }
	.contact-map iframe { min-height: 360px; }
	.footer-inner {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.footer-brand { justify-content: center; }
	.footer-logo { width: 140px; height: 140px; }
}

@media (max-width: 720px) {
	.nav-links {
		position: fixed;
		top: 76px;
		left: 0;
		right: 0;
		flex-direction: column;
		gap: 0;
		background: rgba(250, 247, 242, 0.98);
		backdrop-filter: blur(14px);
		padding: 1rem 1.5rem 2rem;
		border-bottom: 1px solid var(--line);
		transform: translateY(calc(-100% - 76px));
		transition: transform 0.35s var(--ease);
		box-shadow: var(--shadow-md);
	}
	.nav-links a {
		color: var(--ink-soft);
		text-shadow: none;
	}
	.nav-links a:hover {
		color: var(--ink);
		background: var(--accent-soft);
	}
	body.nav-open .nav-links {
		transform: translateY(0);
	}
	.nav-links a {
		padding: 1rem 0.5rem;
		border-bottom: 1px solid var(--line);
		border-radius: 0;
		font-size: 0.95rem;
	}
	.nav-links a:last-child { border-bottom: 0; }
	.nav-toggle { display: flex; }

	.hero-inner { padding: 4rem 1.5rem 5rem; }
	.hero-stats { gap: 1.5rem; }
	.stat-num { font-size: 1.5rem; }

	.section-head { margin-bottom: 3rem; }
	.section-head h2 { font-size: 2rem; }

	.horaires-card { padding: 1.75rem 1.5rem; }
	.horaires-time { font-size: 1.6rem; }
	.service-card { padding: 1.85rem 1.5rem; }

	.lieu-gallery { grid-template-rows: 160px 160px; }
	.team-photo { height: 280px; }
}
