/*
Theme Name: F1
Theme URI: https://andrei.xyz/
Author: andrei.xyz
Author URI: https://andrei.xyz/
Description: andrei.xyz
Version: 1.0
Tags: hashtag
Text Domain: f1

Yah, whatever
*/

/* ============================================
	 CSS CUSTOM PROPERTIES
	 WordPress: paste into theme's style.css
	 or Customizer > Additional CSS
============================================ */
:root {
	--c-red:		#E8001D;
	--c-red-dk: #A8001A;
	--c-black:	#0A0A0B;
	--c-dark:	 #111114;
	--c-surface:#1A1A1F;
	--c-border: rgba(255,255,255,0.08);
	--c-muted:	rgba(255,255,255,0.45);
	--c-text:	 rgba(255,255,255,0.92);
	--c-white:	#ffffff;

	--font-display: 'Barlow Condensed', sans-serif;
	--font-body:		'Barlow', sans-serif;
	--font-mono:		'Space Mono', monospace;

	--radius:	 4px;
	--radius-lg:8px;

	--container:1280px;
	--gap:			 24px;
}

/* ============================================
	 RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	background: var(--c-black);
	color: var(--c-text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ============================================
	 UTILITY
============================================ */
.container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 24px;
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }

.tag {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 2px;
	background: var(--c-red);
	color: var(--c-white);
}
.tag.tag-dark {
	background: transparent;
	border: 1px solid var(--c-border);
	color: var(--c-muted);
}
.tag.tag-live {
	background: var(--c-red);
	animation: pulse-tag 1.2s ease-in-out infinite;
}
@keyframes pulse-tag {
	0%,100% { opacity:1; } 50% { opacity:.6; }
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 800;
	letter-spacing: -.01em;
	text-transform: uppercase;
	line-height: 1;
}
.section-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 28px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--c-border);
}
.see-all {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--c-red);
	transition: opacity .2s;
}
.see-all:hover { opacity: .7; }

section { padding-block: 60px; }

/* ============================================
	 AD UNIT
============================================ */
.ad-unit {
	background: var(--c-surface);
	border: 1px dashed rgba(255,255,255,0.12);
	border-radius: var(--radius);
	overflow: hidden;
	position: relative;
}
.ad-unit::after {
	content: 'ADVERTISEMENT';
	position: absolute;
	top: 8px; right: 10px;
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: .1em;
	color: rgba(255,255,255,0.2);
}
.ad-unit img {
	width: 100%; height: 100%;
	object-fit: cover;
	opacity: .85;
}
.ad-leaderboard { height: 90px; }
.ad-rectangle	{ height: 250px; }
.ad-sidebar		{ height: 600px; }

/* ============================================
	 TOP BAR
============================================ */
.topbar {
	background: var(--c-dark);
	border-bottom: 1px solid var(--c-border);
	padding-block: 8px;
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--c-muted);
	letter-spacing: .05em;
}
.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.topbar-ticker {
	display: flex;
	align-items: center;
	gap: 8px;
	overflow: hidden;
	flex: 1;
}
.topbar-ticker span.live-dot {
	width: 6px; height: 6px;
	background: var(--c-red);
	border-radius: 50%;
	animation: pulse-tag .8s ease-in-out infinite;
	flex-shrink: 0;
}
.ticker-text {
	overflow: hidden;
	white-space: nowrap;
}
.ticker-text span {
	display: inline-block;
	animation: ticker-scroll 50s linear infinite;
}
.ticker-text a:hover {
	color: var(--c-white);
}
@keyframes ticker-scroll {
	0%	 { transform: translateX(100%); }
	100% { transform: translateX(-100%); }
}
.topbar-links { display: flex; gap: 20px; }
.topbar-links a:hover { color: var(--c-white); }

/* ============================================
	 NAVIGATION
============================================ */
.nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(10,10,11,0.96);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--c-border);
}
.nav-inner {
	display: flex;
	align-items: center;
	height: 64px;
	gap: 40px;
}
.logo {
	font-family: var(--font-display);
	font-size: 32px;
	font-weight: 900;
	letter-spacing: -.02em;
	text-transform: uppercase;
	color: var(--c-white);
	white-space: nowrap;
	line-height: 1;
}
.logo span { color: var(--c-red); }

.nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
	flex: 1;
}
.nav-links a {
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--c-muted);
	transition: color .2s;
	position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--c-white); }
.nav-links a.active::after {
	content: '';
	position: absolute;
	bottom: -22px;
	left: 0; right: 0;
	height: 2px;
	background: var(--c-red);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 18px;
	border-radius: var(--radius);
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all .2s;
	border: none;
}
.btn-primary {
	background: var(--c-red);
	color: var(--c-white);
}
.btn-primary:hover { background: var(--c-red-dk); }
.btn-ghost {
	background: transparent;
	border: 1px solid var(--c-border);
	color: var(--c-muted);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); color: var(--c-white); }

/* ============================================
	 HERO / FEATURED
============================================ */
.hero {
	padding-top: 0;
	padding-bottom: 0;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 2px;
	min-height: 540px;
}
.hero-main {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.hero-main img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.hero-main:hover img { transform: scale(1.03); }
.hero-main-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.3) 50%, transparent 100%);
}
.hero-main-content {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	padding: 32px;
}
.hero-main-title {
	font-family: var(--font-display);
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: -.02em;
	margin: 10px 0 12px;
}
.hero-main-meta {
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--c-muted);
	letter-spacing: .06em;
}
.hero-sidebar {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.hero-card {
	position: relative;
	flex: 1;
	overflow: hidden;
	cursor: pointer;
}
.hero-card img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}
.hero-card:hover img { transform: scale(1.05); }
.hero-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 60%);
}
.hero-card-content {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	padding: 20px;
}
.hero-card-title {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.1;
	text-transform: uppercase;
	letter-spacing: -.01em;
	margin: 8px 0 6px;
}
.hero-card-meta {
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--c-muted);
	letter-spacing: .06em;
}

/* ============================================
	 AD LEADERBOARD STRIP
============================================ */
.ad-strip {
	padding-block: 16px;
	border-top: 1px solid var(--c-border);
	border-bottom: 1px solid var(--c-border);
}

/* ============================================
	 LATEST NEWS + SIDEBAR LAYOUT
============================================ */
.content-with-sidebar {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 48px;
	padding-block: 60px;
}

/* ---- News Card ---- */
.news-list { display: flex; flex-direction: column; gap: 24px; }
.news-card {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 20px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--c-border);
	cursor: pointer;
	transition: opacity .2s;
}
.news-card:hover { opacity: .8; }
.news-card:last-child { border-bottom: none; }
.news-card-img {
	aspect-ratio: 16/10;
	overflow: hidden;
	border-radius: var(--radius);
}
.news-card-img img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .4s;
}
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-card-body { display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.news-card-title {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.15;
	text-transform: uppercase;
	letter-spacing: -.01em;
}
.news-card-excerpt {
	font-size: 14px;
	color: var(--c-muted);
	line-height: 1.55;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.news-card-meta {
	font-family: var(--font-mono);
	font-size: 10px;
	color: rgba(255,255,255,0.3);
	letter-spacing: .06em;
}

/* ---- Sidebar ---- */
.sidebar { display: flex; flex-direction: column; gap: 40px; }
.sidebar-block {}
.sidebar-block .section-header { margin-bottom: 16px; }

.most-read-list { display: flex; flex-direction: column; gap: 0; }
.most-read-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--c-border);
	cursor: pointer;
	transition: opacity .2s;
}
.most-read-item:hover { opacity: .7; }
.most-read-item:last-child { border-bottom: none; }
.most-read-num {
	font-family: var(--font-display);
	font-size: 36px;
	font-weight: 900;
	color: rgba(255,255,255,0.08);
	line-height: 1;
	flex-shrink: 0;
	width: 36px;
}
.most-read-title {
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -.01em;
	line-height: 1.2;
}

/* ============================================
	 STANDINGS WIDGET
============================================ */
.standings-widget {
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.standings-tabs {
	display: flex;
	border-bottom: 1px solid var(--c-border);
}
.standings-tab {
	flex: 1;
	padding: 12px;
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--c-muted);
	cursor: pointer;
	transition: all .2s;
	border: none;
	background: none;
}
.standings-tab.active {
	color: var(--c-white);
	border-bottom: 2px solid var(--c-red);
}
.standings-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 16px;
	border-bottom: 1px solid var(--c-border);
	font-size: 13px;
	cursor: pointer;
	transition: background .15s;
}
.standings-row:hover { background: rgba(255,255,255,0.03); }
.standings-row:last-child { border-bottom: none; }
.standings-pos {
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--c-muted);
	width: 16px;
	flex-shrink: 0;
}
.standings-flag {
	font-size: 16px;
	flex-shrink: 0;
}
.standings-name {
	flex: 1;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .02em;
}
.standings-team {
	font-size: 11px;
	color: var(--c-muted);
	font-family: var(--font-mono);
}
.standings-pts {
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--c-red);
	font-weight: 700;
}

/* ============================================
	 RACE CALENDAR SECTION
============================================ */
.calendar-section { background: var(--c-dark); }
.race-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.race-card {
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	padding: 20px;
	cursor: pointer;
	transition: border-color .2s, transform .2s;
	position: relative;
	overflow: hidden;
}
.race-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--c-red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s;
}
.race-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.race-card:hover::before { transform: scaleX(1); }
.race-card.race-next { border-color: rgba(232,0,29,0.4); }
.race-card.race-next::before { transform: scaleX(1); }
.race-round {
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--c-muted);
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.race-flag { font-size: 28px; margin-bottom: 8px; }
.race-name {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -.01em;
	line-height: 1.1;
	margin-bottom: 4px;
}
.race-circuit {
	font-size: 12px;
	color: var(--c-muted);
	margin-bottom: 12px;
}
.race-date {
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--c-red);
	letter-spacing: .04em;
}
.race-status {
	margin-top: 8px;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: .08em;
}
.race-status.done { color: rgba(255,255,255,0.25); }
.race-status.next { color: var(--c-red); }

/* ============================================
	 FEATURES / ANALYSIS GRID
============================================ */
.features-section {}
.features-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: var(--gap);
}
.feature-card {
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	cursor: pointer;
	transition: transform .25s, border-color .25s;
}
.feature-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.18); }
.feature-card-img {
	aspect-ratio: 16/9;
	overflow: hidden;
}
.feature-card-img img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .4s;
}
.feature-card:hover .feature-card-img img { transform: scale(1.06); }
.feature-card-body { padding: 20px; }
.feature-card-label {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--c-red);
	margin-bottom: 8px;
}
.feature-card-title {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -.01em;
	line-height: 1.1;
	margin-bottom: 10px;
}
.feature-card-excerpt {
	font-size: 13px;
	color: var(--c-muted);
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.feature-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--c-border);
	font-family: var(--font-mono);
	font-size: 10px;
	color: rgba(255,255,255,0.3);
	letter-spacing: .05em;
}

/* ============================================
	 VIDEO SECTION
============================================ */
.video-section { background: var(--c-dark); }
.video-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: var(--gap);
}
.video-card {
	position: relative;
	cursor: pointer;
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.video-card-thumb {
	aspect-ratio: 16/9;
	overflow: hidden;
}
.video-card-thumb img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .4s;
}
.video-card:hover .video-card-thumb img { transform: scale(1.06); }
.video-play {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	width: 52px; height: 52px;
	background: rgba(232,0,29,0.85);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	transition: transform .2s, background .2s;
}
.video-card:hover .video-play { transform: translate(-50%,-50%) scale(1.1); background: var(--c-red); }
.video-play::after {
	content: '';
	border: 0 solid transparent;
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	border-left: 16px solid white;
	margin-left: 3px;
}
.video-card-info {
	padding: 14px 0 0;
}
.video-duration {
	position: absolute;
	bottom: 70px; right: 10px;
	background: rgba(0,0,0,0.75);
	font-family: var(--font-mono);
	font-size: 11px;
	padding: 2px 6px;
	border-radius: 2px;
}
.video-title {
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -.01em;
	line-height: 1.15;
	margin-bottom: 6px;
}
.video-meta {
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--c-muted);
	letter-spacing: .05em;
}

/* ============================================
	 NEWSLETTER
============================================ */
.newsletter-section {
	background: var(--c-red);
	padding-block: 64px;
}
.newsletter-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.newsletter-eyebrow {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: .12em;
	text-transform: uppercase;
	opacity: .7;
	margin-bottom: 10px;
}
.newsletter-title {
	font-family: var(--font-display);
	font-size: clamp(36px, 4vw, 56px);
	font-weight: 900;
	text-transform: uppercase;
	line-height: .95;
	letter-spacing: -.02em;
}
.newsletter-body {
	font-size: 15px;
	opacity: .85;
	margin-top: 14px;
	line-height: 1.6;
}
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-options {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 4px;
}
.newsletter-option {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	cursor: pointer;
}
.newsletter-option input[type="checkbox"] {
	accent-color: var(--c-white);
	width: 16px; height: 16px;
}
.newsletter-input-row {
	display: flex;
	gap: 8px;
}
.newsletter-input {
	flex: 1;
	background: rgba(255,255,255,0.15);
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: var(--radius);
	padding: 12px 16px;
	color: var(--c-white);
	font-family: var(--font-body);
	font-size: 14px;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-input:focus { outline: none; border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.2); }
.btn-white {
	background: var(--c-white);
	color: var(--c-red);
	white-space: nowrap;
}
.btn-white:hover { background: rgba(255,255,255,0.9); }
.newsletter-legal {
	font-size: 11px;
	opacity: .55;
	line-height: 1.5;
}

/* ============================================
	 TEAM TRACKER
============================================ */
.teams-section {}
.teams-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
}
.team-card {
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	padding: 20px 16px;
	text-align: center;
	cursor: pointer;
	transition: border-color .2s, transform .2s;
	position: relative;
	overflow: hidden;
}
.team-card::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 3px;
	background: var(--team-color, #444);
}
.team-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.team-logo {
	font-size: 32px;
	margin-bottom: 8px;
}
.team-name {
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	margin-bottom: 4px;
}
.team-pts {
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--c-muted);
}

/* ============================================
	 OPINION / COLUMNS
============================================ */
.opinion-section { background: var(--c-dark); }
.opinion-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--gap);
}
.opinion-card {
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	padding: 28px;
	cursor: pointer;
	transition: border-color .2s, transform .2s;
	position: relative;
}
.opinion-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.opinion-quote {
	font-family: var(--font-display);
	font-size: 72px;
	font-weight: 900;
	color: var(--c-red);
	line-height: .7;
	margin-bottom: 12px;
	opacity: .4;
}
.opinion-text {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: -.01em;
	margin-bottom: 20px;
}
.opinion-author {
	display: flex;
	align-items: center;
	gap: 12px;
}
.opinion-avatar {
	width: 40px; height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 800;
	color: var(--c-red);
	flex-shrink: 0;
}
.opinion-author-name {
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
}
.opinion-author-role {
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--c-muted);
	letter-spacing: .06em;
}

/* ============================================
	 SOCIAL MEDIA STRIP
============================================ */
.social-strip {
	padding-block: 32px;
	border-top: 1px solid var(--c-border);
}
.social-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.social-label {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 800;
	text-transform: uppercase;
	white-space: nowrap;
}
.social-links {
	display: flex;
	gap: 12px;
}
.social-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	border-radius: var(--radius);
	border: 1px solid var(--c-border);
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	transition: border-color .2s, background .2s;
}
.social-btn:hover { background: var(--c-surface); border-color: rgba(255,255,255,0.2); }
.social-icon { font-size: 16px; }

/* ============================================
	 FOOTER
============================================ */
footer {
	background: var(--c-dark);
	border-top: 1px solid var(--c-border);
	padding-top: 56px;
	padding-bottom: 32px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid var(--c-border);
}
.footer-brand-tagline {
	font-size: 14px;
	color: var(--c-muted);
	margin-top: 12px;
	line-height: 1.6;
	max-width: 280px;
}
.footer-col-title {
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 16px;
	color: var(--c-muted);
}
.footer-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-links a {
	font-size: 14px;
	color: rgba(255,255,255,0.55);
	transition: color .2s;
}
.footer-links a:hover { color: var(--c-white); }
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 24px;
	font-family: var(--font-mono);
	font-size: 11px;
	color: rgba(255,255,255,0.25);
	letter-spacing: .05em;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--c-muted); }

/* ============================================
	 PLACEHOLDER IMAGE HELPER
	 (remove when using real images)
============================================ */
.ph {
	background: linear-gradient(135deg, #1A1A1F 0%, #222228 50%, #1A1A1F 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.12);
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
	width: 100%; height: 100%;
}