/* ==========================================================================
   Águilas Racing — layout.css
   Estructura y estilos de cada sección, réplica fiel del diseño original.
   ========================================================================== */

.ar-site {
	position: relative;
	min-height: 100vh;
}

/* ---------- Progress bar ---------- */
.ar-progress-bar {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 0%;
	background: linear-gradient(90deg, var(--ar-gold), var(--ar-gold-light));
	z-index: 1001;
	transition: width 0.1s linear;
}

/* ---------- Header ---------- */
.ar-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 900;
	border-bottom: 1px solid transparent;
	transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.ar-header--glass {
	background: rgba(10, 10, 11, 0.15);
}
.ar-header--glass.is-scrolled {
	background: rgba(10, 10, 11, 0.85);
	backdrop-filter: blur(14px);
	border-bottom-color: var(--ar-border);
}
.ar-header--solid {
	background: #0a0a0bf2;
	backdrop-filter: blur(14px);
	border-bottom-color: var(--ar-border);
}

.ar-header-inner {
	max-width: var(--ar-max-width);
	margin: 0 auto;
	padding: 0 32px;
	height: var(--ar-header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ar-logo {
	display: flex;
	align-items: center;
	gap: 12px;
}
.ar-logo img {
	height: 56px;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.ar-desktop-nav {
	display: flex;
}
.ar-menu {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.ar-menu-link {
	color: #e8e7e2;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.03em;
	white-space: nowrap;
}
.ar-menu-link:hover,
.ar-menu-link[aria-current="page"] {
	color: var(--ar-gold);
}
.ar-sub-menu {
	list-style: none;
	margin: 0;
	padding: 12px 0;
	position: absolute;
	background: var(--ar-card);
	border: 1px solid var(--ar-border);
	min-width: 200px;
}
.ar-sub-menu .ar-menu-link {
	display: block;
	padding: 8px 20px;
}

.ar-header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.ar-cart-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border: 2px solid #e8e7e2;
	border-radius: 50%;
}
.ar-cart-count,
.ar-cart-icon .count {
	position: absolute;
	top: -10px;
	right: -12px;
	background: var(--ar-gold);
	color: var(--ar-black);
	font-size: 10px;
	font-weight: 800;
	min-width: 18px;
	height: 18px;
	line-height: 18px;
	text-align: center;
	border-radius: 50%;
	padding: 0 4px;
}
.ar-cart-icon .count:empty { display:none; }

.ar-mobile-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 28px;
	height: 22px;
	cursor: pointer;
	background: transparent;
	border: none;
	padding: 0;
}
.ar-mobile-toggle span {
	width: 100%;
	height: 2px;
	background: var(--ar-white);
	display: block;
}

@media (max-width: 1180px) {
	.ar-desktop-nav {
		display: none;
	}
	.ar-mobile-toggle {
		display: flex;
	}
}
@media (max-width: 520px) {
	.ar-shop-btn-text {
		display: none;
	}
}

/* ---------- Mobile nav overlay ---------- */
.ar-mobile-nav {
	position: fixed;
	inset: 0;
	background: #0a0a0bf5;
	backdrop-filter: blur(10px);
	z-index: 895;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 28px;
}
.ar-mobile-nav[hidden] {
	display: none;
}
.ar-mobile-menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
}
.ar-mobile-link {
	color: var(--ar-white);
	font-family: var(--ar-font-display);
	font-size: 28px;
	letter-spacing: 0.04em;
}
.ar-mobile-link--gold {
	color: var(--ar-gold);
	margin-top: 28px;
}
.ar-mobile-close {
	position: absolute;
	top: 32px;
	right: 36px;
	color: var(--ar-white);
	font-size: 32px;
	background: transparent;
	border: none;
	cursor: pointer;
	line-height: 1;
}

/* ---------- Toast ---------- */
.ar-toast {
	position: fixed;
	bottom: 32px;
	right: 32px;
	left: auto;
	background: var(--ar-card);
	border: 1px solid var(--ar-gold-border);
	color: var(--ar-white);
	padding: 16px 22px;
	border-radius: 2px;
	font-size: 14px;
	font-weight: 600;
	z-index: 999;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	max-width: calc(100vw - 40px);
}
.ar-toast[hidden] {
	display: none;
}

/* ---------- Hero ---------- */
.ar-hero {
	position: relative;
	height: 100vh;
	min-height: 640px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}
.ar-hero-media {
	position: absolute;
	inset: 0;
	will-change: transform;
}
.ar-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.1);
}
.ar-hero-gradient-bottom {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 10, 11, 0.35) 0%, rgba(10, 10, 11, 0.55) 55%, #0a0a0b 100%);
}
.ar-hero-gradient-side {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10, 10, 11, 0.7) 0%, rgba(10, 10, 11, 0) 55%);
}
.ar-hero-content {
	position: relative;
	max-width: var(--ar-max-width);
	margin: 0 auto;
	padding: 0 32px 96px;
	width: 100%;
}
.ar-hero-kicker {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
}
.ar-pulse-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ar-gold);
	animation: ar-pulse-dot 2s ease-in-out infinite;
}
.ar-hero-kicker span:last-child {
	color: var(--ar-gold);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.22em;
}
.ar-hero-title {
	font-family: var(--ar-font-display);
	font-size: clamp(52px, 8vw, 124px);
	line-height: 0.92;
	color: var(--ar-white);
	margin: 0 0 28px;
	letter-spacing: 0.01em;
}
.ar-hero-subtitle {
	max-width: 560px;
	font-size: 18px;
	line-height: 1.6;
	color: var(--ar-text-dim);
	margin: 0 0 44px;
	font-weight: 300;
}
.ar-hero-ctas {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}
.ar-hero-scroll {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	opacity: 0.6;
}
.ar-hero-scroll span {
	font-size: 10px;
	letter-spacing: 0.2em;
	color: var(--ar-white);
}
.ar-hero-scroll-line {
	width: 1px;
	height: 36px;
	background: linear-gradient(180deg, var(--ar-white), transparent);
}

/* ---------- Stats ---------- */
.ar-stats {
	border-top: 1px solid var(--ar-border);
	border-bottom: 1px solid var(--ar-border);
	background: var(--ar-panel);
}
.ar-stats-grid {
	max-width: var(--ar-max-width);
	margin: 0 auto;
	padding: 56px 32px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.ar-stat {
	text-align: center;
}
.ar-stat-number {
	font-family: var(--ar-font-display);
	font-size: 52px;
	color: var(--ar-gold);
}
.ar-stat-label {
	font-size: 12px;
	letter-spacing: 0.14em;
	color: var(--ar-text-mute);
	margin-top: 6px;
}
@media (max-width: 780px) {
	.ar-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ---------- About ---------- */
.ar-about {
	max-width: var(--ar-max-width);
	margin: 0 auto;
	padding: 140px 32px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.ar-about-mv {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}
.ar-mv-heading {
	font-family: var(--ar-font-display);
	font-size: 22px;
	color: var(--ar-white);
	margin-bottom: 6px;
}
.ar-mv-text {
	color: var(--ar-text-mute);
	font-size: 14px;
	line-height: 1.6;
	font-weight: 300;
}
.ar-about-media {
	position: relative;
}
.ar-about-media img {
	width: 100%;
	border-radius: 2px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.ar-about-badge {
	position: absolute;
	bottom: -24px;
	left: -24px;
	background: var(--ar-gold);
	color: var(--ar-black);
	padding: 20px 26px;
	font-family: var(--ar-font-display);
	font-size: 16px;
	letter-spacing: 0.04em;
	max-width: calc(100% - 24px);
}
@media (max-width: 900px) {
	.ar-about {
		grid-template-columns: 1fr;
		padding: 90px 24px;
		gap: 48px;
	}
	.ar-about-badge {
		left: 0;
		bottom: -16px;
		font-size: 13px;
		padding: 14px 18px;
	}
}

/* ---------- Values ---------- */
.ar-values {
	max-width: var(--ar-max-width);
	margin: 0 auto;
	padding: 0 32px 140px;
}
.ar-values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--ar-border);
}
.ar-value-card {
	background: var(--ar-black);
	padding: 36px 28px;
}
.ar-value-index {
	color: var(--ar-gold);
	font-family: var(--ar-font-display);
	font-size: 34px;
	margin-bottom: 10px;
}
.ar-value-title {
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 8px;
}
.ar-value-desc {
	color: var(--ar-text-mute);
	font-size: 13px;
	line-height: 1.6;
	font-weight: 300;
}
@media (max-width: 780px) {
	.ar-values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ---------- Team ---------- */
.ar-team-section {
	background: var(--ar-panel);
	padding: 140px 0;
	border-top: 1px solid var(--ar-border);
	border-bottom: 1px solid var(--ar-border);
}
.ar-team-inner {
	max-width: var(--ar-max-width);
	margin: 0 auto;
	padding: 0 32px;
}
.ar-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 28px;
}
.ar-team-card {
	background: var(--ar-card);
	border: 1px solid var(--ar-border);
	transition: transform 0.3s ease, border-color 0.3s ease;
}
.ar-team-card:hover {
	transform: translateY(-6px);
	border-color: var(--ar-gold-border);
}
.ar-team-photo {
	width: 100%;
	height: 260px;
	overflow: hidden;
	background: var(--ar-card);
}
.ar-team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ar-team-info {
	padding: 22px;
}
.ar-team-name {
	font-family: var(--ar-font-display);
	font-size: 22px;
}
.ar-team-role {
	color: var(--ar-gold);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin: 4px 0 12px;
}
.ar-team-bio {
	color: var(--ar-text-mute);
	font-size: 13px;
	line-height: 1.6;
	font-weight: 300;
	margin-bottom: 16px;
}
.ar-team-socials {
	display: flex;
	gap: 10px;
}

/* ---------- Social circle (reusable: team, footer, contact) ---------- */
.ar-social-circle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--ar-border-strong);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	color: var(--ar-white);
	transition: border-color 0.2s ease, color 0.2s ease;
}
.ar-social-circle:hover {
	border-color: var(--ar-gold);
	color: var(--ar-gold);
}
.ar-social-circle--sm {
	width: 28px;
	height: 28px;
	font-size: 10px;
	color: var(--ar-text-dim);
}

/* ---------- Fleet (Autos) ---------- */
.ar-fleet {
	max-width: var(--ar-max-width);
	margin: 0 auto;
	padding: 140px 32px;
}
.ar-fleet-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
}
.ar-car-card {
	background: var(--ar-panel);
	border: 1px solid var(--ar-border);
	position: relative;
	overflow: hidden;
	transition: border-color 0.3s ease;
}
.ar-car-card:hover {
	border-color: rgba(227, 178, 60, 0.5);
}
.ar-car-media {
	display: block;
	height: 200px;
	overflow: hidden;
}
.ar-car-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.ar-car-card:hover .ar-car-media img {
	transform: scale(1.08);
}
.ar-car-body {
	padding: 26px;
}
.ar-car-name {
	font-family: var(--ar-font-display);
	font-size: 26px;
}
.ar-car-name a {
	color: inherit;
}
.ar-car-subtitle {
	color: var(--ar-gold);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin: 4px 0 18px;
}
.ar-car-specs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 8px;
	border-top: 1px solid var(--ar-border);
	padding-top: 16px;
}
.ar-spec-label {
	color: var(--ar-text-faint);
	font-size: 10px;
	letter-spacing: 0.08em;
}
.ar-spec-value {
	color: #e8e7e2;
	font-size: 13px;
	font-weight: 600;
}

/* ---------- Gallery ---------- */
.ar-gallery-section {
	background: var(--ar-panel);
	padding: 140px 0;
	border-top: 1px solid var(--ar-border);
	border-bottom: 1px solid var(--ar-border);
}
.ar-gallery-inner {
	max-width: var(--ar-max-width);
	margin: 0 auto;
	padding: 0 32px;
}
.ar-gallery-tabs {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 44px;
	flex-wrap: wrap;
}
.ar-tab {
	padding: 10px 20px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	cursor: pointer;
	border: 1px solid var(--ar-border-strong);
	color: var(--ar-text-dim);
	background: transparent;
	font-family: var(--ar-font-body);
}
.ar-tab.is-active {
	border-color: var(--ar-gold);
	color: var(--ar-gold);
	background: rgba(227, 178, 60, 0.1);
}
.ar-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}
.ar-gallery-item {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	cursor: pointer;
	background: var(--ar-card);
}
.ar-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.ar-gallery-item:hover img {
	transform: scale(1.1);
}
.ar-gallery-caption-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.75) 100%);
	display: flex;
	align-items: flex-end;
	padding: 16px;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.ar-gallery-item:hover .ar-gallery-caption-overlay,
.ar-gallery-item:focus-visible .ar-gallery-caption-overlay {
	opacity: 1;
}
.ar-gallery-caption-overlay span {
	color: var(--ar-white);
	font-size: 13px;
	font-weight: 600;
}
.ar-gallery-item.is-hidden {
	display: none;
}

/* ---------- Lightbox ---------- */
.ar-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(6, 6, 7, 0.94);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
}
.ar-lightbox[hidden] {
	display: none;
}
.ar-lightbox img {
	max-width: 90vw;
	max-height: 82vh;
	object-fit: contain;
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}
.ar-lightbox-close {
	position: absolute;
	top: 32px;
	right: 40px;
	color: var(--ar-white);
	font-size: 28px;
	background: transparent;
	border: none;
	cursor: pointer;
}
.ar-lightbox-caption {
	position: absolute;
	bottom: 36px;
	left: 0;
	right: 0;
	text-align: center;
	color: var(--ar-text-dim);
	font-size: 14px;
}

/* ---------- Events ---------- */
.ar-events {
	max-width: var(--ar-max-width);
	margin: 0 auto;
	padding: 140px 32px;
}
.ar-events-layout {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 40px;
}
.ar-events-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.ar-event-card {
	display: flex;
	gap: 22px;
	background: var(--ar-panel);
	border: 1px solid var(--ar-border);
	padding: 24px;
	transition: border-color 0.3s ease;
}
.ar-event-card:hover {
	border-color: var(--ar-gold-border);
}
.ar-event-date {
	text-align: center;
	min-width: 70px;
}
.ar-event-day {
	font-family: var(--ar-font-display);
	font-size: 32px;
	color: var(--ar-gold);
	line-height: 1;
}
.ar-event-month {
	font-size: 11px;
	color: var(--ar-text-mute);
	letter-spacing: 0.1em;
}
.ar-event-details {
	border-left: 1px solid var(--ar-border-strong);
	padding-left: 22px;
	flex: 1;
}
.ar-event-title {
	font-family: var(--ar-font-display);
	font-size: 20px;
	margin-bottom: 6px;
}
.ar-event-title a {
	color: inherit;
}
.ar-event-place {
	color: var(--ar-text-mute);
	font-size: 13px;
	margin-bottom: 8px;
}
.ar-event-desc {
	color: var(--ar-text-body);
	font-size: 13px;
	line-height: 1.6;
	font-weight: 300;
}
.ar-events-map,
.ar-map-placeholder {
	position: relative;
	min-height: 340px;
}
.ar-map-placeholder {
	width: 100%;
	height: 100%;
	background: var(--ar-card);
	border: 1px dashed var(--ar-border-strong);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ar-text-mute);
	font-size: 13px;
	text-align: center;
	padding: 20px;
}
.ar-events-map iframe {
	width: 100%;
	height: 100%;
	min-height: 340px;
	border: 0;
}
@media (max-width: 900px) {
	.ar-events-layout {
		grid-template-columns: 1fr;
	}
}

/* ---------- Sponsors ---------- */
.ar-sponsors {
	background: var(--ar-panel);
	padding: 120px 0;
	border-top: 1px solid var(--ar-border);
	border-bottom: 1px solid var(--ar-border);
}
.ar-sponsors-inner {
	max-width: var(--ar-max-width);
	margin: 0 auto;
	padding: 0 32px;
	text-align: center;
}
.ar-sponsors-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 24px;
	margin-top: 56px;
}
.ar-sponsor-logo {
	width: 100%;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ar-card);
}
.ar-sponsor-logo img {
	max-height: 60%;
	width: auto;
	filter: grayscale(1);
	opacity: 0.8;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.ar-sponsor-logo:hover img {
	filter: grayscale(0);
	opacity: 1;
}

/* ---------- Shop preview / WooCommerce shared grid ---------- */
.ar-shop-preview {
	max-width: var(--ar-max-width);
	margin: 0 auto;
	padding: 140px 32px;
}
.ar-shop-preview-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 56px;
	flex-wrap: wrap;
	gap: 20px;
}
.ar-shop-preview-desc {
	color: var(--ar-text-mute);
	font-size: 14px;
	font-weight: 300;
	max-width: 360px;
}
.ar-shop-grid,
ul.products {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
	gap: 28px !important;
	list-style: none;
	margin: 0;
	padding: 0;
}
.ar-product-card,
ul.products li.product {
	background: var(--ar-panel);
	border: 1px solid var(--ar-border);
	transition: border-color 0.3s ease;
	position: relative;
}
.ar-product-card:hover,
ul.products li.product:hover {
	border-color: var(--ar-gold-border);
}
.ar-product-media,
ul.products li.product a img {
	display: block;
	width: 100%;
	height: 280px;
	object-fit: cover;
}
.ar-product-body {
	padding: 20px;
}
.ar-badge {
	display: inline-block;
	background: rgba(227, 178, 60, 0.15);
	color: var(--ar-gold);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	padding: 4px 10px;
	margin-bottom: 10px;
}
.ar-product-name {
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 4px;
}
.ar-product-name a {
	color: var(--ar-white);
}
.ar-product-cat {
	color: var(--ar-text-mute);
	font-size: 12px;
	margin-bottom: 14px;
}
.ar-product-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.ar-product-price,
.woocommerce-Price-amount {
	font-family: var(--ar-font-display);
	font-size: 20px;
	color: var(--ar-gold);
	font-style: normal;
}
.ar-add-to-cart-btn {
	background: var(--ar-white);
	color: var(--ar-black);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.05em;
	padding: 10px 16px;
	cursor: pointer;
	border: none;
	display: inline-block;
}
.ar-add-to-cart-btn:hover {
	background: var(--ar-gold);
	color: var(--ar-black);
}
.ar-shop-preview-cta {
	text-align: center;
	margin-top: 56px;
}

/* ---------- Blog ---------- */
.ar-blog-preview {
	background: var(--ar-panel);
	padding: 120px 0;
	border-top: 1px solid var(--ar-border);
	border-bottom: 1px solid var(--ar-border);
}
.ar-blog-preview-inner {
	max-width: var(--ar-max-width);
	margin: 0 auto;
	padding: 0 32px;
}
.ar-blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
}
.ar-blog-media {
	display: block;
	width: 100%;
	height: 200px;
	overflow: hidden;
	margin-bottom: 20px;
	background: var(--ar-card);
}
.ar-blog-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.ar-blog-card:hover .ar-blog-media img {
	transform: scale(1.05);
}
.ar-blog-meta {
	color: var(--ar-gold);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
}
.ar-blog-title {
	font-family: var(--ar-font-display);
	font-size: 22px;
	margin: 0 0 10px;
	font-weight: 400;
}
.ar-blog-title a {
	color: var(--ar-white);
}
.ar-blog-excerpt {
	color: var(--ar-text-mute);
	font-size: 13px;
	line-height: 1.6;
	font-weight: 300;
}

/* ---------- Contact ---------- */
.ar-contact {
	max-width: var(--ar-max-width);
	margin: 0 auto;
	padding: 140px 32px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
}
.ar-contact-info {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 40px;
	color: var(--ar-text-dim);
	font-size: 14px;
}
.ar-contact-socials {
	display: flex;
	gap: 12px;
}
.ar-contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.ar-form-field input,
.ar-form-field textarea,
.ar-contact-form input[type="text"],
.ar-contact-form input[type="email"],
.ar-contact-form textarea {
	width: 100%;
	background: var(--ar-panel);
	border: 1px solid var(--ar-border-strong);
	color: var(--ar-white);
	padding: 16px;
	font-size: 14px;
	font-family: inherit;
	resize: vertical;
}
.ar-form-field input:focus,
.ar-form-field textarea:focus {
	border-color: var(--ar-gold);
	outline: none;
}
.ar-form-honeypot {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}
.ar-form-status {
	min-height: 20px;
	font-size: 13px;
	color: var(--ar-gold);
}
.ar-form-status.is-error {
	color: #e05a4e;
}
@media (max-width: 900px) {
	.ar-contact {
		grid-template-columns: 1fr;
		padding: 90px 24px;
		gap: 48px;
	}
}

/* ---------- Footer ---------- */
.ar-footer {
	border-top: 1px solid var(--ar-border);
	padding: 64px 0 32px;
}
.ar-footer-inner {
	max-width: var(--ar-max-width);
	margin: 0 auto 48px;
	padding: 0 32px;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
}
.ar-footer-col--brand img {
	height: 48px;
	margin-bottom: 16px;
}
.ar-footer-desc {
	color: var(--ar-text-faintest);
	font-size: 13px;
	line-height: 1.6;
	font-weight: 300;
	max-width: 260px;
}
.ar-footer-heading {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--ar-text-mute);
	margin-bottom: 16px;
}
.ar-footer-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ar-footer-links a {
	color: var(--ar-text-dim);
	font-size: 13px;
}
.ar-newsletter-form {
	display: flex;
	border: 1px solid var(--ar-border-strong);
}
.ar-newsletter-form input {
	background: transparent;
	border: none;
	color: var(--ar-white);
	padding: 12px;
	font-size: 12px;
	font-family: inherit;
	flex: 1;
	min-width: 0;
}
.ar-newsletter-form input:focus {
	outline: none;
}
.ar-newsletter-form button {
	background: var(--ar-gold);
	color: var(--ar-black);
	padding: 12px 16px;
	font-size: 11px;
	font-weight: 800;
	cursor: pointer;
	border: none;
}
.ar-footer-bottom {
	max-width: var(--ar-max-width);
	margin: 0 auto;
	padding: 24px 32px 0;
	border-top: 1px solid var(--ar-border);
	color: var(--ar-text-faintest);
	font-size: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}
.ar-footer-socials {
	display: flex;
	gap: 10px;
}
@media (max-width: 900px) {
	.ar-footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 560px) {
	.ar-footer-inner {
		grid-template-columns: 1fr;
	}
}

/* ---------- Generic content wrap (page/single/archive/search/404) ---------- */
.ar-content-wrap {
	max-width: var(--ar-max-width);
	margin: 0 auto;
	padding: 160px 32px 120px;
}
.ar-layout-with-sidebar {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
	align-items: start;
}
.ar-layout-sidebar {
	position: sticky;
	top: calc(var(--ar-header-h) + 32px);
}
@media (max-width: 900px) {
	.ar-layout-with-sidebar {
		grid-template-columns: 1fr;
	}
}
.ar-breadcrumbs {
	font-size: 13px;
	color: var(--ar-text-mute);
	margin-bottom: 32px;
}
.ar-breadcrumbs a {
	color: var(--ar-text-mute);
}
.ar-breadcrumbs a:hover {
	color: var(--ar-gold);
}
.ar-page-header {
	margin-bottom: 32px;
}
.ar-page-thumb {
	margin-bottom: 40px;
}
.ar-page-thumb img {
	width: 100%;
	border-radius: 2px;
}
.ar-single-meta {
	color: var(--ar-text-mute);
	font-size: 13px;
	margin-top: 12px;
}
.ar-post-tags {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 40px;
}
.ar-tag-pill {
	border: 1px solid var(--ar-border-strong);
	padding: 6px 14px;
	font-size: 12px;
	color: var(--ar-text-dim);
}
.ar-tag-pill:hover {
	border-color: var(--ar-gold);
	color: var(--ar-gold);
}

.ar-post-grid,
.ar-blog-index .ar-blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
}

.ar-404-inner {
	text-align: center;
	max-width: 560px;
	margin: 0 auto;
}
.ar-404-code {
	font-family: var(--ar-font-display);
	font-size: clamp(80px, 14vw, 160px);
	color: var(--ar-gold);
	line-height: 1;
}
.ar-404-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin: 32px 0;
}
.ar-search-form-wrap {
	margin-top: 24px;
}
.search-form {
	display: flex;
	border: 1px solid var(--ar-border-strong);
}
.search-form input[type="search"] {
	flex: 1;
	background: transparent;
	border: none;
	color: var(--ar-white);
	padding: 14px 16px;
	font-family: inherit;
	font-size: 14px;
}
.search-form input[type="search"]:focus {
	outline: none;
}
.search-form button,
.search-form input[type="submit"] {
	background: var(--ar-gold);
	color: var(--ar-black);
	border: none;
	padding: 14px 20px;
	font-weight: 800;
	font-size: 12px;
	cursor: pointer;
}

/* ---------- Pagination ---------- */
.ar-pagination {
	margin-top: 56px;
	display: flex;
	justify-content: center;
}
.ar-pagination ul {
	display: flex;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
}
.ar-pagination a,
.ar-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--ar-border-strong);
	color: var(--ar-text-dim);
	font-size: 13px;
}
.ar-pagination .current {
	background: var(--ar-gold);
	color: var(--ar-black);
	border-color: var(--ar-gold);
}
.ar-pagination a:hover {
	border-color: var(--ar-gold);
	color: var(--ar-gold);
}

/* ---------- Comments ---------- */
.ar-comments {
	margin-top: 64px;
	border-top: 1px solid var(--ar-border);
	padding-top: 48px;
}
.ar-comments-title {
	font-family: var(--ar-font-display);
	font-size: 28px;
	margin-bottom: 24px;
}
.ar-comment-list {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
}
.ar-comment-list .comment-body {
	background: var(--ar-panel);
	border: 1px solid var(--ar-border);
	padding: 20px;
	margin-bottom: 16px;
}
.ar-comment-list .children {
	list-style: none;
	padding-left: 32px;
}
.ar-comment-form p {
	margin-bottom: 16px;
}
.ar-comment-form input[type="text"],
.ar-comment-form input[type="email"],
.ar-comment-form input[type="url"],
.ar-comment-form textarea {
	width: 100%;
	background: var(--ar-panel);
	border: 1px solid var(--ar-border-strong);
	color: var(--ar-white);
	padding: 14px 16px;
	font-family: inherit;
	font-size: 14px;
}
.ar-comments-closed {
	color: var(--ar-text-mute);
}

/* ---------- Widgets ---------- */
.ar-widget {
	margin-bottom: 32px;
	background: var(--ar-panel);
	border: 1px solid var(--ar-border);
	padding: 24px;
}
.ar-widget-title {
	font-family: var(--ar-font-display);
	font-size: 18px;
	margin: 0 0 16px;
}
.ar-widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.ar-widget li {
	margin-bottom: 10px;
	font-size: 14px;
	color: var(--ar-text-dim);
}

/* ---------- Wishlist ---------- */
.ar-wishlist-btn {
	margin-top: 16px;
	background: transparent;
	border: 1px solid var(--ar-border-strong);
	color: var(--ar-text-dim);
	padding: 12px 20px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}
.ar-wishlist-btn.is-active,
.ar-wishlist-btn:hover {
	border-color: var(--ar-gold);
	color: var(--ar-gold);
}
.ar-wishlist-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}
