/* Butler : fichier unique T+L */
@font-face {
	font-family: "Butler";
	src: url("../fonts/butler.woff2") format("woff2");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

/* Roboto Flex variable font (copiez roboto-flex.woff2 dans ce dossier) */
@font-face {
	font-family: "Roboto Flex";
	src: url("../fonts/roboto-flex.woff2") format("woff2");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

/* Roboto Condensed Bold (copiez roboto-condensed-700.woff2 dans ce dossier) */
@font-face {
	font-family: "Roboto Condensed";
	src: url("../fonts/roboto-condensed-700.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--ephemera-bg: #ffffff;
	--ephemera-surface: #ffffff;
	--ephemera-surface-strong: #f5f5f2;
	--ephemera-cream: #f5f2ea;
	--ephemera-text: #111111;
	--ephemera-text-soft: #5b5b57;
	--ephemera-border: #ddddda;
	--ephemera-primary: #11309c;
	--ephemera-gold: #af8f4e;
	--ephemera-accent: #11309c;
	--ephemera-inverse: #ffffff;
	--ephemera-shadow: none;
	--ephemera-shell: min(1376px, calc(100vw - 40px));
	--ephemera-shell-narrow: min(1120px, calc(100vw - 40px));
	--ephemera-shell-article: min(1240px, calc(100vw - 40px));
}


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

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	margin: 0;
	background: var(--ephemera-bg);
	color: var(--ephemera-text);
	font-family: "Roboto Flex", tahoma, sans-serif;
	line-height: 1.5;
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.shell {
	width: var(--ephemera-shell);
	margin-inline: auto;
}

.shell--narrow {
	width: var(--ephemera-shell-narrow);
}

.shell--article {
	width: var(--ephemera-shell-article);
}

.site-main {
	padding-bottom: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid var(--ephemera-border);
	background: var(--ephemera-bg);
}

.site-header__inner {
	width: var(--ephemera-shell);
	margin-inline: auto;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	min-height: 74px;
}

.site-header__brand {
	display: flex;
	align-items: center;
	gap: 14px;
}

.site-header__logo img {
	max-height: 42px;
	width: auto;
}

.site-header__title,
.site-footer__title {
	font-family: "Butler", Baskerville, Times, serif;
	font-size: clamp(2rem, 2.2vw, 2.85rem);
	letter-spacing: -0.03em;
}

.site-header__menu,
.site-panel__menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-header__menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	font-family: "Roboto Flex", tahoma, sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.site-header__tools {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Bouton loupe desktop */
.site-header__search-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: none;
	color: var(--ephemera-text);
	cursor: pointer;
}

.site-header__search-toggle svg {
	width: 18px;
	height: 18px;
}

/* Barre de recherche collapsible sous le header */
.site-header__search-bar {
	overflow: hidden;
	max-height: 0;
	transition: max-height 280ms ease;
	border-top: 1px solid transparent;
}

.site-header__search-bar.is-open {
	max-height: 80px;
	border-top-color: var(--ephemera-border);
}

.site-header__search-bar-inner {
	width: var(--ephemera-shell);
	margin-inline: auto;
	padding: 10px 0;
}

/* Form dans la barre de recherche (desktop) + drawer (mobile) — même design */
.site-header__search {
	display: flex;
	align-items: center;
	border: 1px solid var(--ephemera-border);
	max-width: 480px;
}

.site-header__search-input {
	flex: 1;
	min-width: 0;
	border: none;
	padding: 0.65rem 0.9rem;
	background: #fff;
	color: var(--ephemera-text);
	font-size: 0.8rem;
	letter-spacing: 0.02em;
	outline: none;
}

.site-header__search-btn {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: var(--ephemera-primary);
	color: #fff;
	cursor: pointer;
}

.site-header__search-btn svg {
	width: 16px;
	height: 16px;
}

.site-header__toggle {
	border: none;
	background: none;
	color: var(--ephemera-text);
	cursor: pointer;
}

.site-header__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
}

.site-header__toggle span {
	display: block;
	width: 18px;
	height: 1px;
	background: currentColor;
	margin-inline: auto;
}

/* === Overlay backdrop === */
.site-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 49;
	opacity: 0;
	pointer-events: none;
	transition: opacity 280ms ease;
}

.site-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}

/* === Mobile drawer plein écran (slide depuis la gauche) === */
.site-panel {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100dvh;
	overflow-y: auto;
	overflow-x: hidden;
	background: #fff;
	z-index: 100;
	transform: translateX(-100%);
	transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-panel.is-open {
	transform: translateX(0);
}

/* Top bar : × close + title */
.site-panel__top {
	display: grid;
	grid-template-columns: 44px 1fr 44px;
	align-items: center;
	padding: 0 12px;
	min-height: 60px;
	border-bottom: 1px solid var(--ephemera-border);
}

.site-panel__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: none;
	color: var(--ephemera-text);
	cursor: pointer;
}

.site-panel__close svg {
	width: 20px;
	height: 20px;
}

.site-panel__site-title {
	font-family: "Butler", Baskerville, Times, serif;
	font-size: 1.3rem;
	letter-spacing: -0.02em;
	color: var(--ephemera-text);
	text-align: center;
}

/* Search section */
.site-panel__search-section {
	padding: 18px 16px 16px;
	border-bottom: 1px solid var(--ephemera-border);
}

.site-panel__search-label {
	margin: 0 0 8px;
	font-family: "Roboto Flex", tahoma, sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ephemera-text);
}

.site-panel__search {
	display: flex;
	border: 1px solid var(--ephemera-border);
}

.site-panel__search-input {
	flex: 1;
	min-width: 0;
	border: none;
	padding: 0.65rem 0.9rem;
	background: #fff;
	color: var(--ephemera-text);
	font-size: 0.85rem;
	outline: none;
}

.site-panel__search-btn {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: var(--ephemera-primary);
	color: #fff;
	cursor: pointer;
}

.site-panel__search-btn svg {
	width: 18px;
	height: 18px;
}

/* Menu items avec séparateurs et flèche › */
.site-panel__menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-panel__menu li {
	border-bottom: 1px solid var(--ephemera-border);
}

.site-panel__menu li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 16px;
	font-family: "Roboto Flex", tahoma, sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ephemera-text);
}

.site-panel__menu li a::after {
	content: '›';
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1;
	color: var(--ephemera-text-soft);
}

/* ============================================================
   FOOTER — style T+L, fond beige
   ============================================================ */
.site-footer {
	border-top: 2px solid var(--ephemera-text);
	padding: 48px 0 56px;
	background: var(--ephemera-cream);
	color: var(--ephemera-text);
}

.site-footer__inner {
	width: var(--ephemera-shell);
	margin-inline: auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2.4fr);
	gap: 56px;
	align-items: start;
}

/* Colonne gauche : titre + tagline */
.site-footer__brand-col {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.site-footer__title {
	font-family: "Butler", Baskerville, Times, serif;
	font-size: clamp(2rem, 2.5vw, 2.8rem);
	font-weight: 400;
	letter-spacing: -0.03em;
	line-height: 1.05;
	color: var(--ephemera-text);
	display: block;
}

.site-footer__logo img {
	max-height: 56px;
	width: auto;
}

.site-footer__tagline {
	margin: 0;
	color: var(--ephemera-text-soft);
	font-size: 0.9rem;
	line-height: 1.6;
	max-width: 340px;
}

/* Zone droite : colonnes nav */
.site-footer__nav-area {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	align-items: start;
}

.site-footer__nav-col {
	flex: 1 1 120px;
}

.site-footer__col-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.site-footer__col-menu a {
	font-family: "Roboto Flex", tahoma, sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ephemera-text);
	line-height: 1.4;
}

.site-footer__col-menu a:hover {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.12em;
}

/* Section title: "FROM THE HOTEL DESK →" style */
.section-heading {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	padding: 0 0 1.5rem;
	border-bottom: 2px solid var(--ephemera-text);
	margin-bottom: 2rem;
}

.section-heading__title {
	margin: 0;
	font-family: "Roboto Flex", tahoma, sans-serif;
	font-size: 3.625rem;
	font-weight: 500;
	letter-spacing: 5px;
	line-height: 1.1;
	text-transform: uppercase;
}

.archive-head {
	padding: 52px 0 32px;
}

.archive-head__inner {
	text-align: center;
}

.archive-head__title {
	margin: 0;
	font-family: "Butler", Baskerville, Times, serif;
	font-size: clamp(2.5rem, 4vw, 4rem);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -0.03em;
}

/* ---- Fil d'ariane ---- */
.breadcrumb {
	margin-bottom: 16px;
}

.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: "Roboto Flex", tahoma, sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.03em;
	color: var(--ephemera-text-soft);
}

.breadcrumb__item + .breadcrumb__item::before {
	content: '›';
	padding: 0 5px;
	opacity: 0.55;
}

.breadcrumb__link {
	color: var(--ephemera-text-soft);
}

.breadcrumb__link:hover {
	color: var(--ephemera-primary);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.12em;
}

.breadcrumb__item--current {
	color: var(--ephemera-text);
}

.archive-head__description {
	max-width: 760px;
	margin: 18px auto 0;
	color: var(--ephemera-text-soft);
	font-size: 1.05rem;
	line-height: 1.65;
}

.ephemera-meta {
	font-family: "Roboto Flex", tahoma, sans-serif;
	color: rgba(0, 0, 0, 0.65);
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: normal;
	text-transform: none;
	line-height: 1.4;
}

.ephemera-meta__sep {
	padding: 0 4px;
	opacity: 0.7;
}

.ephemera-byline {
	font-family: "Roboto Flex", tahoma, sans-serif;
	color: rgba(0, 0, 0, 0.65);
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 1.4;
}

@media (max-width: 1100px) {
	/* 44px | brand centré | 44px */
	.site-header__inner {
		grid-template-columns: 44px 1fr 44px;
	}

	.site-header__nav {
		display: none;
	}

	.site-header__search-toggle,
	.site-header__search-bar {
		display: none;
	}

	.site-header__toggle {
		display: inline-flex;
	}
}

@media (max-width: 720px) {
	:root {
		--ephemera-shell: min(100vw - 28px, 1376px);
		--ephemera-shell-narrow: min(100vw - 28px, 1120px);
		--ephemera-shell-article: min(100vw - 28px, 1240px);
	}

	.site-header__inner {
		min-height: 70px;
		gap: 14px;
	}

	.site-header__theme-switch {
		padding: 0.72rem 0.8rem;
		font-size: 0.68rem;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.site-footer__nav-area {
		gap: 24px;
	}

}

iframe,
embed,
object,
video {
  max-width: 100%;
}
