/* ======================
FLOWLINE – THEME BRUTAL
Design only (no structure)
Vibe: brutal / contrasté / typé "print"
====================== */

#flowline {
	--bg: #ffffff;
	--text: #0b0b0b;
	--muted: #2f2f2f;
	--line: #0b0b0b;
	--soft: #f2f2f2;
	--shadow: 8px 8px 0 rgba(0, 0, 0, 1);
	--shadow-soft: 6px 6px 0 rgba(0, 0, 0, 0.22);
	--radius: 0px;
	--logo-url: url("https://www.francescosun.com/assets/images/logo.svg");

	background: var(--bg);
	color: var(--text);
}

/* HEADER */
#flowline header {
	background: #ffffff;
	border-bottom: 2px solid var(--line);
}

#flowline nav {
	padding: 18px 0;
}

#flowline .logo {
	letter-spacing: 0;
	text-transform: uppercase;
}

#flowline .logo-badge {
	background-image: var(--logo-url);
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 0;
	font-weight: 900;
}

/* HERO */
#flowline .hero {
	padding: 110px 0 90px;
	background: #ffffff;
}

#flowline .hero h1 {
	font-size: clamp(34px, 6vw, 76px);
	line-height: 0.98;
	letter-spacing: -0.04em;
	margin-bottom: 16px;
	text-transform: uppercase;
}

#flowline .hero p {
	color: var(--muted);
	font-size: 18px;
	line-height: 1.7;
	max-width: 65ch;
	margin-top: 0;
}

/* Buttons */
#flowline .btn {
	padding: 14px 18px;
	border-radius: 0;
	border: 2px solid var(--line);
	background: #ffffff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	transition: transform 0.12s ease;
}

#flowline .btn:hover {
	text-decoration: none;
	transform: translate(-2px, -2px);
}

#flowline .btn:active {
	transform: translate(0, 0);
}

#flowline .btn-primary {
	background: #0b0b0b;
	color: #ffffff;
}

#flowline .btn-primary:hover {
	transform: translate(-2px, -2px);
}

/* MAIN */
#flowline main {
	padding: 80px 0;
}

#flowline .section-title {
	font-size: 12px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--text);
	margin-bottom: 14px;
}

#flowline .section-description {
	color: var(--muted);
	font-size: 16px;
	line-height: 1.85;
	max-width: 86ch;
	margin-top: 0;
	padding-left: 0;
}

#flowline .section-description::before {
	display: none;
}

#flowline .section-description-title {
	font-weight: 900;
	text-transform: uppercase;
}

#flowline .section-description-link {
	font-weight: 900;
	text-decoration: underline;
	text-underline-offset: 3px;
}

#flowline .section-description-link:hover {
	text-decoration-thickness: 3px;
}

/* GRID / CARDS */
#flowline .grid {
	gap: 18px;
	margin-top: 34px;
}

#flowline .card {
	padding: 22px;
	border-radius: 0;
	border: 2px solid var(--line);
	background: #ffffff;
	box-shadow: var(--shadow-soft);
	transition: transform 0.12s ease;
}

#flowline .card:hover {
	transform: translate(-2px, -2px);
}

#flowline .card h3 {
	font-size: 18px;
	letter-spacing: 0;
	text-transform: uppercase;
	margin-bottom: 10px;
}

#flowline .card p {
	color: var(--muted);
	margin-top: 0;
}

/* CTA SECTION */
#flowline .cta-section {
	padding: 28px;
	border-radius: 0;
	border: 2px solid var(--line);
	background: #ffffff;
	box-shadow: var(--shadow);
	margin-top: 48px;
}

#flowline .cta-title {
	font-size: clamp(22px, 3vw, 40px);
	line-height: 1.05;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

#flowline .cta-text {
	color: var(--muted);
	font-size: 16px;
	line-height: 1.85;
	max-width: 72ch;
	margin-top: 0;
}

#flowline .cta-section .cta {
	margin-top: 18px;
}

/* FOOTER */
#flowline footer {
	margin-top: 90px;
	background: #ffffff;
	border-top: 2px solid var(--line);
}

#flowline .footer-inner {
	padding: 44px 0;
	gap: 28px;
}

#flowline footer h4 {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.24em;
	margin-bottom: 14px;
}

#flowline .footer-links a {
	color: var(--text);
	text-decoration: underline;
	text-underline-offset: 3px;
}

#flowline .footer-links a:hover {
	text-decoration-thickness: 3px;
}

#flowline .social {
	gap: 10px;
}

#flowline .icon {
	border-radius: 0;
	border: 2px solid var(--line);
	background: #ffffff;
	font-weight: 900;
	color: var(--text);
	transition: transform 0.12s ease;
}

#flowline .icon:hover {
	text-decoration: none;
	transform: translate(-2px, -2px);
}

/* COPYRIGHT */
#flowline .copyright {
	border-top: 2px solid var(--line);
	color: var(--text);
	padding: 14px 0;
}

/* RESPONSIVE (visual only) */
@media (max-width: 900px) {
	#flowline .hero {
		padding: 90px 0 70px;
	}

	#flowline main {
		padding: 64px 0;
	}

	#flowline .cta-section {
		padding: 22px;
	}

	#flowline footer {
		margin-top: 70px;
	}

	#flowline .footer-inner {
		padding: 34px 0;
	}
}
