/* =============================================================
   710 GVNG — home.css
   Hero (VISUAL-REFERENCE §3), campaign blocks, shop sections,
   lookbook strip. Markup: front-page.php + template tags.
   ============================================================= */

/* ----------------------------------------------------------- hero -- */

.sg-hero {
	position: relative;
	height: calc(100vh - (var(--sg-frame) * 2)); /* fallback: no svh support */
	height: calc(100svh - (var(--sg-frame) * 2));
	min-height: 540px;
	border-radius: var(--sg-radius);
	overflow: hidden;
	background: #111;
}

.sg-hero__media {
	position: absolute;
	inset: 0;
}

.sg-hero__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	transition: opacity var(--sg-fade) var(--sg-ease);
}

.sg-hero__slide.is-active {
	opacity: 1;
}

.sg-hero__slide picture,
.sg-hero__img {
	display: block;
	width: 100%;
	height: 100%;
}

.sg-hero__img {
	object-fit: cover;
	object-position: center;
}

/* Slide list — left edge, vertically centered, solid leading.
   Measured: left 28px, 24px/700, line-height 1 (§3). */
.sg-hero__nav {
	position: absolute;
	left: 28px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	max-width: 340px;
}

.sg-hero__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sg-hero__link {
	display: inline-block;
	font-family: var(--sg-font);
	font-size: 24px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.005em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--sg-red-dim);
	text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
	transition: color 0.25s var(--sg-ease);
	padding: 1px 0;
}

.sg-hero__link.is-active,
.sg-hero__link:hover,
.sg-hero__link:focus-visible {
	color: var(--sg-red);
}

/* CTA — red block, right edge, vertically centered (§3). */
.sg-hero__cta {
	position: absolute;
	right: 28px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	background: var(--sg-red);
	color: var(--sg-white);
	font-family: var(--sg-font);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 1;
	padding: 13px 18px;
	transition: filter 0.2s var(--sg-ease);
}

.sg-hero__cta:hover {
	filter: brightness(0.85);
	color: var(--sg-white);
}

/* ------------------------------------------------ campaign blocks -- */

.sg-campaign {
	position: relative;
	min-height: 86vh;
	background-color: #111;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
	isolation: isolate;
	padding: 40px;
}

/* Bundled 710 photography until a category thumbnail exists (the
   template's inline background-image wins when it does). */
.sg-campaign--01 {
	background-image: var(--sg-ph-campaign-01);
}

.sg-campaign--02 {
	background-image: var(--sg-ph-campaign-02);
}

.sg-campaign::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0.55) 100%);
	pointer-events: none;
}

.sg-campaign__content {
	position: relative;
	z-index: 2;
}

.sg-campaign__eyebrow {
	font-family: var(--sg-font);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 10px;
}

.sg-campaign__title {
	font-family: var(--sg-font);
	font-size: clamp(44px, 7vw, 96px);
	font-weight: 900;
	line-height: 0.92;
	letter-spacing: -0.015em;
	text-transform: uppercase;
	color: var(--sg-white);
	margin: 0 0 22px;
}

/* --------------------------------------------------- shop sections -- */

.sg-shop {
	background: var(--sg-white);
	color: var(--sg-black);
}

.sg-shop__title {
	font-family: var(--sg-font);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--sg-black);
	margin: 0 0 26px;
}

/* WooCommerce archive furniture inside our chrome (result count,
   ordering select, pagination) — utilitarian small caps. */
.sg-shop--wc .woocommerce-result-count,
.sg-shop--wc .woocommerce-ordering select {
	font: 500 12px/1.4 var(--sg-font);
	color: var(--sg-gray-600);
}

.sg-shop--wc .woocommerce-ordering {
	margin: 0 0 22px;
}

.sg-shop--wc .woocommerce-pagination {
	margin-top: 40px;
	font: 700 13px/1 var(--sg-font);
	text-transform: uppercase;
}

.sg-shop--wc .woocommerce-pagination ul {
	list-style: none;
	display: flex;
	gap: 12px;
	margin: 0;
	padding: 0;
}

.sg-shop--wc .woocommerce-pagination a,
.sg-shop--wc .woocommerce-pagination span {
	color: var(--sg-black);
	text-decoration: none;
}

.sg-shop--wc .woocommerce-pagination span.current {
	color: var(--sg-red);
}

/* -------------------------------------------------- lookbook strip -- */

.sg-lookbook {
	background: var(--sg-black);
	color: var(--sg-white);
}

.sg-lookbook__title {
	font-family: var(--sg-font);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--sg-white);
	margin: 0 0 26px;
}

.sg-lookbook__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 28px;
}

.sg-look {
	aspect-ratio: 3 / 4;
	border-radius: 12px;
	background-color: #161616;
	background-size: cover;
	background-position: center;
}

.sg-look--01 {
	background-image: var(--sg-ph-look-01);
}

.sg-look--02 {
	background-image: var(--sg-ph-look-02);
}

.sg-look--03 {
	background-image: var(--sg-ph-look-03);
}
