/*
 * CRYOFAST PLUNGE — layout.css
 * Header, hero, sections génériques, footer.
 */

/* NAV */
header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 500;
	height: var(--header-height);
	padding: 0 var(--header-pad-x);
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(247, 244, 240, .94);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--bsand);
}
.logo img { height: 30px; width: auto; display: block; }

nav { display: flex; align-items: center; gap: 1px; }

.ni { position: relative; }

.nl {
	display: flex;
	align-items: center;
	gap: 3px;
	padding: 6px 12px;
	border-radius: var(--btn-radius);
	font-size: 13px;
	font-weight: 600;
	color: var(--charcoal);
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--font-body);
	transition: color .15s, background .15s;
	white-space: nowrap;
}
.nl:hover,
.ni:hover > .nl { color: var(--navy); background: rgba(27, 63, 114, .06); }
.nl svg { width: 8px; height: 8px; opacity: .45; transition: transform .18s; }
.ni:hover > .nl svg { transform: rotate(180deg); }

.cart {
	margin-left: 6px;
	width: 34px; height: 34px;
	border-radius: var(--btn-radius);
	border: 1px solid var(--bsand);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--charcoal);
	position: relative;
	transition: border-color .15s;
}
.cart:hover { border-color: var(--charcoal); }

.cc {
	position: absolute;
	top: -5px;
	right: -5px;
	background: var(--navy);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	width: 14px; height: 14px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* HERO */
.hero {
	height: 82vh;
	min-height: 500px;
	display: flex;
	overflow: hidden;
	background: var(--sand);
}
.hl {
	flex: 1;
	min-width: 0;
	background: var(--sand);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 72px 52px 40px 64px;
	position: relative;
	z-index: 2;
}
.hl::after {
	content: '';
	position: absolute;
	top: 0;
	right: -90px;
	bottom: 0;
	width: 130px;
	background: linear-gradient(to right, #EDE8E1, rgba(237, 232, 225, 0));
	z-index: 10;
	pointer-events: none;
}
.hr {
	width: 50%;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
}
.hr video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 5%;
	display: block;
}
.hr-ov {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(to top, rgba(26, 24, 21, .3) 0%, transparent 35%);
	pointer-events: none;
}
.htag {
	font-size: 10px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--taupe);
	margin-bottom: 16px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 8px;
}
.htag::before { content: ''; width: 18px; height: 1px; background: var(--taupe); }
.hsub {
	font-size: 13px;
	font-weight: 300;
	color: var(--warm-gray);
	line-height: 1.7;
	margin-bottom: 24px;
	max-width: 400px;
}
.hbtns { display: flex; gap: 8px; flex-wrap: wrap; }
.hstats {
	display: flex;
	gap: 24px;
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid var(--bsand);
}
.hsn {
	font-family: var(--font-titles);
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
}
.hsl {
	font-size: 9px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--taupe);
	margin-top: 2px;
}

/* MARQUEE */
.mq {
	background: var(--sand);
	border-bottom: 1px solid var(--bsand);
	padding: 9px 0;
	overflow: hidden;
}
.mq-t {
	display: flex;
	width: max-content;
	animation: mq 32s linear infinite;
}
@keyframes mq {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
.mi {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 0 14px;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--warm-gray);
	white-space: nowrap;
}
.md { width: 3px; height: 3px; border-radius: 50%; background: var(--taupe); }

/* SECTIONS génériques */
.sec { padding: var(--sec-pad-y) var(--sec-pad-x); }
.sw  { background: var(--white); }
.sc  { background: var(--cream); }
.ss  { background: var(--stone); }

/* FOOTER */
footer {
	background: var(--cream);
	border-top: 1px solid var(--bsand);
	padding: 28px var(--sec-pad-x) 16px;
}
.fg {
	display: grid;
	grid-template-columns: 200px 1fr 1fr 130px;
	gap: 36px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--bsand);
	margin-bottom: 12px;
	align-items: start;
}
.flogo img { height: 22px; opacity: .75; display: block; margin-bottom: 7px; }
.ftag { font-size: 10px; color: var(--taupe); line-height: 1.55; max-width: 170px; }
.fct {
	font-size: 9px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--taupe);
	margin-bottom: 8px;
}
.flinks { display: flex; flex-direction: column; gap: 5px; }
.flinks a { font-size: 12px; color: var(--warm-gray); transition: color .13s; }
.flinks a:hover { color: var(--charcoal); }
.fsoc { display: flex; gap: 6px; flex-wrap: wrap; }
.fs {
	width: 28px; height: 28px;
	border-radius: 5px;
	border: 1px solid var(--bsand);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--taupe);
	transition: border-color .13s, color .13s;
}
.fs:hover { border-color: var(--charcoal); color: var(--charcoal); }
.fbot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 10px;
	color: var(--taupe);
}
