/*
 * Women homepage (`/women/`) — scoped under .ae-women-home so nothing leaks to
 * the rest of the site. Mirrors the inline <style> block in
 * design-proposals/women-homepage/project/Women Homepage.html line-for-line;
 * only differences are: (a) selectors are prefixed `.ae-women-` and scoped
 * under `.ae-women-home` and (b) custom properties are prefixed `--ae-women-`
 * so they cannot collide with the global shell tokens.
 */

.ae-women-home {
	--ae-women-paper: #f5f1ea;
	--ae-women-canvas: #ffffff;
	--ae-women-ink: #111111;
	--ae-women-ink-muted: rgba(17, 17, 17, 0.6);
	--ae-women-ink-faint: rgba(17, 17, 17, 0.4);
	--ae-women-line: rgba(17, 17, 17, 0.08);
	--ae-women-line-strong: rgba(17, 17, 17, 0.18);
	--ae-women-accent: #8a6f4e;
	--ae-women-accent-deep: #5e4a33;
	--ae-women-markdown: #8b2e1f;
	--ae-women-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
	--ae-women-font-editorial: "Cormorant Garamond", "EB Garamond", Garamond, Georgia, serif;
	--ae-women-font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

	font-family: var(--ae-women-font-body);
	color: var(--ae-women-ink);
	background: var(--ae-women-canvas);
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
	display: block;
}
.ae-women-home *,
.ae-women-home *::before,
.ae-women-home *::after { box-sizing: border-box; }
.ae-women-home ::selection { background: var(--ae-women-ink); color: var(--ae-women-canvas); }

.ae-women-home a { color: inherit; }

/* ===== Section base ===== */
.ae-women-home .ae-women-section { padding: 64px 32px; background: var(--ae-women-canvas); }
.ae-women-home .ae-women-section.ae-women-section-tight-bottom { padding-bottom: 28px; }
.ae-women-home .ae-women-section-inner { max-width: 1480px; margin: 0 auto; }

.ae-women-home .ae-women-sec-eyebrow-row {
	display: flex; align-items: baseline; justify-content: space-between;
	gap: 32px; margin-bottom: 44px;
	padding-bottom: 18px; border-bottom: 1px solid var(--ae-women-line);
}
.ae-women-home .ae-women-sec-eyebrow {
	font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
	color: var(--ae-women-ink); font-weight: 600;
}
.ae-women-home .ae-women-sec-title {
	font-family: var(--ae-women-font-editorial); font-weight: 300;
	font-size: 64px; line-height: 0.98;
	letter-spacing: -0.018em;
	margin: 0 0 14px;
	max-width: 14ch;
	color: var(--ae-women-ink);
}
.ae-women-home .ae-women-sec-title em { font-style: italic; color: var(--ae-women-ink); font-weight: 400; }
.ae-women-home .ae-women-sec-lede {
	font-size: 14px; color: var(--ae-women-ink-muted);
	max-width: 480px; margin: 0;
	line-height: 1.65;
}

.ae-women-home .ae-women-link-arrow {
	display: inline-flex; gap: 10px; align-items: center;
	font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
	font-weight: 600;
	color: var(--ae-women-ink); text-decoration: none;
	padding: 4px 0;
	border-bottom: 1px solid var(--ae-women-ink);
	transition: opacity 160ms var(--ae-women-ease);
}
.ae-women-home .ae-women-link-arrow:hover { opacity: 0.65; }
.ae-women-home .ae-women-link-arrow .arr { font-family: var(--ae-women-font-editorial); font-style: italic; font-size: 14px; letter-spacing: 0; }

/* ===== HERO PANELS ===== */
.ae-women-home .ae-women-hero-panels {
	background: var(--ae-women-canvas);
	border-bottom: 1px solid var(--ae-women-line);
	position: relative;
}
.ae-women-home .ae-women-hero-panels-row {
	display: flex;
	height: clamp(540px, 76vh, 760px);
	width: 100%;
	overflow: hidden;
}
.ae-women-home .ae-women-hero-panels-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	display: flex;
	align-items: center;
}
.ae-women-home .ae-women-hero-panels-content {
	position: relative;
	z-index: 3;
	pointer-events: auto;
	padding: 0 56px;
	color: #fff;
	max-width: 720px;
	transform: translateY(-4%);
}
.ae-women-home .ae-women-hero-panels-content .ae-women-hero-panel-cta { pointer-events: auto; }
.ae-women-home .ae-women-hero-panel {
	position: relative;
	flex: 1 1 0;
	cursor: pointer;
	overflow: hidden;
	transition: flex-grow 700ms var(--ae-women-ease);
	background-size: cover;
	background-position: center 22%;
	background-repeat: no-repeat;
}
.ae-women-home .ae-women-hero-panel.is-active {
	flex-grow: 5;
	cursor: default;
}
.ae-women-home .ae-women-hero-panel-shade {
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.5) 100%),
		linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 35%);
	transition: opacity 600ms var(--ae-women-ease);
}
.ae-women-home .ae-women-hero-panel:not(.is-active) .ae-women-hero-panel-shade {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.ae-women-home .ae-women-hero-panel:not(.is-active):hover .ae-women-hero-panel-shade {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 100%);
}
.ae-women-home .ae-women-hero-panel-headline {
	font-family: var(--ae-women-font-editorial); font-weight: 300;
	font-size: 50px;
	line-height: 0.96; letter-spacing: -0.02em;
	margin: 0 0 22px;
	text-shadow: 0 1px 36px rgba(0, 0, 0, 0.3);
	max-width: 12ch;
	color: #fff;
}
.ae-women-home .ae-women-hero-panel-headline em { font-style: italic; }
.ae-women-home .ae-women-hero-panel-kicker {
	font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
	font-weight: 600; margin: 0 0 22px;
	color: #fff;
	text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}
.ae-women-home .ae-women-hero-panel-sub {
	font-size: 15px; line-height: 1.5;
	margin: 0 0 30px;
	max-width: 44ch;
	color: rgba(255, 255, 255, 0.94);
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
.ae-women-home .ae-women-hero-panel-cta {
	display: inline-flex; gap: 14px; align-items: center;
	background: #fff; color: var(--ae-women-ink);
	padding: 16px 30px;
	font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
	font-weight: 600; text-decoration: none;
	transition: opacity 160ms var(--ae-women-ease);
}
.ae-women-home .ae-women-hero-panel-cta:hover { opacity: 0.85; }
.ae-women-home .ae-women-hero-panel-cta .arr { font-family: var(--ae-women-font-editorial); font-style: italic; font-size: 14px; letter-spacing: 0; }
.ae-women-home .ae-women-hero-panel + .ae-women-hero-panel { border-left: 1px solid rgba(255, 255, 255, 0.15); }

@media (max-width: 900px) {
	.ae-women-home .ae-women-hero-panels-row { flex-direction: column; height: auto; }
	.ae-women-home .ae-women-hero-panel { min-height: 280px; }
	.ae-women-home .ae-women-hero-panel.is-active { min-height: 540px; flex-grow: 1; }
	.ae-women-home .ae-women-hero-panel + .ae-women-hero-panel { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.15); }
}

/* ===== MARQUEE ===== */
.ae-women-home .ae-women-marquee {
	border-top: 1px solid var(--ae-women-line);
	border-bottom: 1px solid var(--ae-women-line);
	padding: 18px 0;
	overflow: hidden;
	background: var(--ae-women-canvas);
}
.ae-women-home .ae-women-marquee-track {
	display: flex; gap: 64px;
	white-space: nowrap;
	animation: ae-women-marq 38s linear infinite;
	width: max-content;
}
.ae-women-home .ae-women-marquee-item {
	font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
	font-weight: 500; color: var(--ae-women-ink);
	display: inline-flex; align-items: center; gap: 64px;
}
.ae-women-home .ae-women-marquee-item em {
	font-family: var(--ae-women-font-editorial); font-style: italic; font-weight: 400;
	text-transform: none; letter-spacing: 0.02em; color: var(--ae-women-accent-deep);
	font-size: 16px;
}
.ae-women-home .ae-women-marquee-dot { width: 4px; height: 4px; background: var(--ae-women-ink); border-radius: 50%; flex-shrink: 0; }
@keyframes ae-women-marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== BEST PRICE / NEW IN split layout ===== */
.ae-women-home .ae-women-bp-split {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 64px;
	align-items: start;
}
.ae-women-home .ae-women-bp-split-text { padding-top: 16px; }
.ae-women-home .ae-women-bp-split-eyebrow {
	font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
	font-weight: 600; color: var(--ae-women-ink-muted);
	margin: 0 0 18px;
}
.ae-women-home .ae-women-bp-split-title {
	font-family: var(--ae-women-font-editorial); font-weight: 300;
	font-size: clamp(48px, 4.4vw, 72px);
	line-height: 0.98;
	letter-spacing: -0.02em;
	margin: 0 0 22px;
	color: var(--ae-women-ink);
}
.ae-women-home .ae-women-bp-split-title em { font-style: italic; }
.ae-women-home .ae-women-bp-split-body {
	font-size: 14px; line-height: 1.65;
	color: var(--ae-women-ink-muted);
	margin: 0 0 28px;
}
.ae-women-home .ae-women-bp-split-cta {
	display: inline-block;
	background: var(--ae-women-ink); color: #fff;
	padding: 16px 28px;
	font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
	font-weight: 600; text-decoration: none;
	margin-bottom: 18px;
}
.ae-women-home .ae-women-bp-split-products {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}

/* ===== Product card ===== */
.ae-women-home .ae-women-prod {
	text-decoration: none; color: inherit;
	cursor: pointer;
	display: block;
}
.ae-women-home .ae-women-prod-media {
	position: relative;
	aspect-ratio: 3/4;
	background: #f4f4f3;
	margin-bottom: 14px;
	overflow: hidden;
}
.ae-women-home .ae-women-prod-media img {
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}
.ae-women-home .ae-women-prod-wish {
	position: absolute; top: 12px; right: 12px;
	width: 34px; height: 34px;
	background: rgba(255, 255, 255, 0.92); border: none; cursor: pointer;
	border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	z-index: 2;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
	color: var(--ae-women-ink);
	padding: 0;
}
.ae-women-home .ae-women-prod-wish svg { width: 16px; height: 16px; stroke: var(--ae-women-ink); fill: none; stroke-width: 1.5; }
.ae-women-home .ae-women-prod-wish.is-saved svg { fill: var(--ae-women-ink); }
.ae-women-home .ae-women-prod-badge {
	position: absolute; top: 12px; left: 12px; z-index: 2;
	font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
	font-weight: 600;
	background: #fff; color: var(--ae-women-ink);
	padding: 4px 9px;
	border: 1px solid var(--ae-women-line);
	white-space: nowrap;
}
.ae-women-home .ae-women-prod-badge--best {
	background: var(--ae-women-ink); color: #fff;
	border-color: var(--ae-women-ink);
	font-family: var(--ae-women-font-editorial); font-weight: 400;
	font-style: italic; letter-spacing: 0.1em;
	text-transform: none; font-size: 12px;
	padding: 5px 11px;
}
.ae-women-home .ae-women-prod-brand {
	font-family: var(--ae-women-font-body); font-weight: 600;
	font-size: 14px; letter-spacing: 0;
	margin: 0 0 2px;
	color: var(--ae-women-ink);
}
.ae-women-home .ae-women-prod-name {
	font-size: 14px; color: var(--ae-women-ink-muted);
	margin: 0 0 8px; line-height: 1.4;
	font-weight: 400;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.ae-women-home .ae-women-prod-price-row {
	margin: 0 0 8px;
	display: flex; align-items: baseline; gap: 8px;
	font-size: 14px;
}
.ae-women-home .ae-women-prod-price-row .was {
	color: var(--ae-women-ink-faint);
	text-decoration: line-through;
	font-weight: 400;
}
.ae-women-home .ae-women-prod-price-row .now {
	color: var(--ae-women-markdown);
	font-weight: 700;
}
.ae-women-home .ae-women-prod-price-row:not(:has(.was)) .now {
	color: var(--ae-women-ink);
}
.ae-women-home .ae-women-prod-price-row .disc {
	color: var(--ae-women-markdown);
	font-weight: 400;
}
.ae-women-home .ae-women-prod-saving {
	font-family: var(--ae-women-font-editorial); font-style: italic;
	font-size: 16px; color: var(--ae-women-accent-deep);
	margin: 0 0 8px;
	font-weight: 500;
}
.ae-women-home .ae-women-prod-retailers {
	font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--ae-women-ink); margin: 0; font-weight: 500;
}
.ae-women-home .ae-women-prod-retailers em {
	margin-left: 6px;
	font-family: var(--ae-women-font-editorial);
	font-size: 11px;
	font-style: italic;
	font-weight: 300;
	letter-spacing: 0;
	text-transform: none;
}

/* ===== CATEGORIES ===== */
.ae-women-home .ae-women-cat-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
}
.ae-women-home .ae-women-cat-tile {
	position: relative;
	overflow: visible;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	background: transparent;
	display: block;
}
.ae-women-home .ae-women-cat-tile-img {
	position: relative;
	aspect-ratio: 3/4;
	overflow: hidden;
	background: #f4f4f3;
	transition: transform 800ms var(--ae-women-ease);
}
.ae-women-home .ae-women-cat-tile:hover .ae-women-cat-tile-img { transform: scale(1.02); }
.ae-women-home .ae-women-cat-tile-label {
	margin-top: 12px;
	font-family: var(--ae-women-font-body);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--ae-women-ink);
	text-shadow: none;
}
.ae-women-home .ae-women-cat-tile-label em { font-style: italic; text-transform: none; letter-spacing: 0.02em; }

/* ===== RUNWAY REPORT ===== */
.ae-women-home .ae-women-runway-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.ae-women-home .ae-women-runway-tile { text-decoration: none; color: inherit; cursor: pointer; }
.ae-women-home .ae-women-runway-img {
	aspect-ratio: 4/5;
	margin-bottom: 18px;
	position: relative;
	overflow: hidden;
	background: #f4f4f3;
}
.ae-women-home .ae-women-runway-img-inner { position: absolute; inset: 0; transition: transform 800ms var(--ae-women-ease); }
.ae-women-home .ae-women-runway-tile:hover .ae-women-runway-img-inner { transform: scale(1.03); }
.ae-women-home .ae-women-runway-title {
	font-family: var(--ae-women-font-editorial); font-weight: 300;
	font-size: 28px; line-height: 1.05;
	letter-spacing: -0.01em; margin: 0 0 10px;
	color: var(--ae-women-ink);
}
.ae-women-home .ae-women-runway-title em { font-style: italic; }
.ae-women-home .ae-women-runway-meta {
	font-family: var(--ae-women-font-editorial); font-style: italic;
	font-size: 14px; color: var(--ae-women-ink);
}

/* ===== CURATORS ===== */
.ae-women-home .ae-women-curator-hdr {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 32px; margin-bottom: 36px;
	padding-bottom: 18px; border-bottom: 1px solid var(--ae-women-line);
}
.ae-women-home .ae-women-curator-hdr .ae-women-sec-title { margin-bottom: 16px; }
.ae-women-home .ae-women-curator-hdr .ae-women-sec-eyebrow { color: var(--ae-women-ink); margin-bottom: 14px; display: block; }
.ae-women-home .ae-women-curator-hdr .ae-women-sec-eyebrow em {
	font-family: var(--ae-women-font-editorial); font-style: italic; font-weight: 500;
	text-transform: none; letter-spacing: 0.02em; font-size: 14px; color: var(--ae-women-ink);
}
.ae-women-home .ae-women-curator-hdr .ae-women-sec-title em { font-style: italic; }
.ae-women-home .ae-women-curator-mosaic {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 0.8fr;
	grid-template-rows: 1fr 1fr;
	gap: 12px;
	aspect-ratio: 16/9;
}
.ae-women-home .ae-women-curator-mosaic .ae-women-c-tile:nth-child(1) { grid-row: span 2; }
.ae-women-home .ae-women-curator-mosaic > .ae-women-curator-mosaic-scroll { display: none; }
.ae-women-home .ae-women-c-tile {
	position: relative; overflow: hidden; cursor: pointer;
	text-decoration: none; color: inherit;
	background: #f4f4f3;
}
.ae-women-home .ae-women-c-tile-img {
	position: absolute; inset: 0;
	background-size: cover;
	background-repeat: no-repeat;
	transition: transform 800ms var(--ae-women-ease);
}
.ae-women-home .ae-women-c-tile:hover .ae-women-c-tile-img { transform: scale(1.04); }
.ae-women-home .ae-women-c-tile-shade {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.55) 100%);
}
.ae-women-home .ae-women-c-tile-meta {
	position: absolute; left: 24px; bottom: 22px; right: 24px;
	color: #fff;
}
.ae-women-home .ae-women-c-tile-by {
	font-family: var(--ae-women-font-editorial); font-style: italic;
	font-size: 13px; opacity: 0.92; margin: 0 0 4px;
}
.ae-women-home .ae-women-c-tile-name {
	font-family: var(--ae-women-font-editorial); font-weight: 400;
	font-size: 26px; line-height: 1.0; margin: 0;
	text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
	color: #fff;
}
.ae-women-home .ae-women-curator-mosaic > .ae-women-c-tile:nth-child(1) .ae-women-c-tile-name { font-size: 48px; font-weight: 300; }
.ae-women-home .ae-women-c-tile-handle {
	font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
	font-weight: 600; opacity: 0.85; margin: 8px 0 0;
}

/* ===== DESIGNER SPOTLIGHT ===== */
.ae-women-home .ae-women-spotlight {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 56px;
	align-items: stretch;
}
.ae-women-home .ae-women-spotlight-text { padding-right: 8px; align-self: center; }
.ae-women-home .ae-women-spotlight-panels {
	display: flex;
	aspect-ratio: 4/3;
	width: 100%;
	overflow: hidden;
	background: #f0efed;
	align-self: center;
}
.ae-women-home .ae-women-spotlight-panel {
	position: relative;
	flex: 1 1 0;
	cursor: pointer;
	overflow: hidden;
	transition: flex-grow 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
	background-size: cover;
	background-position: center 22%;
	background-repeat: no-repeat;
	background-color: #efece7;
}
.ae-women-home .ae-women-spotlight-panel.is-active { flex-grow: 4; cursor: default; }
.ae-women-home .ae-women-spotlight-panel-shade {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
	opacity: 0;
	transition: opacity 240ms;
}
.ae-women-home .ae-women-spotlight-panel:not(.is-active) .ae-women-spotlight-panel-shade { opacity: 1; }
.ae-women-home .ae-women-spotlight-panel + .ae-women-spotlight-panel { border-left: 1px solid rgba(255, 255, 255, 0.18); }
.ae-women-home .ae-women-spotlight-eyebrow {
	font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
	font-weight: 600; color: var(--ae-women-ink);
	margin: 0 0 14px;
}
.ae-women-home .ae-women-spotlight-name {
	font-family: var(--ae-women-font-editorial); font-weight: 300;
	font-size: clamp(48px, 5.5vw, 84px);
	line-height: 0.96; letter-spacing: -0.02em;
	margin: 0 0 24px;
	color: var(--ae-women-ink);
}
.ae-women-home .ae-women-spotlight-name em { font-style: italic; }
.ae-women-home .ae-women-spotlight-body {
	font-size: 14px; line-height: 1.7;
	color: var(--ae-women-ink-muted); max-width: 42ch;
	margin: 0 0 28px;
}
.ae-women-home .ae-women-spotlight-body p { margin: 0; }
.ae-women-home .ae-women-spotlight-body p + p { margin-top: 14px; }
.ae-women-home .ae-women-spotlight-quote {
	font-family: var(--ae-women-font-editorial); font-style: italic; font-weight: 300;
	font-size: 22px; line-height: 1.4;
	color: var(--ae-women-ink); padding: 22px 0;
	border-top: 1px solid var(--ae-women-line); border-bottom: 1px solid var(--ae-women-line);
	margin: 0 0 28px;
}

/* ===== PARTNER STORES ===== */
.ae-women-home .ae-women-partners {
	border-top: 1px solid var(--ae-women-line);
	border-bottom: 1px solid var(--ae-women-line);
	background: var(--ae-women-canvas);
	padding: 32px 32px;
}
.ae-women-home .ae-women-partners-inner {
	max-width: 1480px; margin: 0 auto;
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 32px;
	align-items: center;
}
.ae-women-home .ae-women-partners-label {
	font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
	font-weight: 600; color: var(--ae-women-ink);
}
.ae-women-home .ae-women-partners-list {
	display: flex; flex-wrap: wrap;
	gap: 14px 36px;
}
.ae-women-home .ae-women-partner-name {
	font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
	font-weight: 500; color: var(--ae-women-ink);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
	.ae-women-home .ae-women-cat-grid { grid-template-columns: repeat(3, 1fr); }
	.ae-women-home .ae-women-runway-grid { grid-template-columns: 1fr; gap: 40px; }
	.ae-women-home .ae-women-bp-split { grid-template-columns: 1fr; gap: 32px; }
	.ae-women-home .ae-women-bp-split-products { grid-template-columns: repeat(2, 1fr); }
	.ae-women-home .ae-women-curator-mosaic { aspect-ratio: 1/1; grid-template-columns: 1fr 1fr; }
	.ae-women-home .ae-women-curator-mosaic .ae-women-c-tile:nth-child(1) { grid-column: span 2; grid-row: auto; aspect-ratio: 16/9; }
	.ae-women-home .ae-women-spotlight { grid-template-columns: 1fr; gap: 32px; }
	.ae-women-home .ae-women-spotlight-panels { max-width: 100%; aspect-ratio: 16/9; }
}

@media (max-width: 700px) {
	.ae-women-home .ae-women-section { padding: 56px 0; }
	.ae-women-home .ae-women-section-inner { padding: 0 20px; }
	.ae-women-home .ae-women-sec-title { font-size: 40px; }

	/* Hero panels — horizontal scroll on mobile, peek of next */
	.ae-women-home .ae-women-hero-panels { height: auto; }
	.ae-women-home .ae-women-hero-panels-row {
		flex-direction: row;
		height: 76vh;
		max-height: 700px;
		min-height: 540px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.ae-women-home .ae-women-hero-panels-row::-webkit-scrollbar { display: none; }
	.ae-women-home .ae-women-hero-panel {
		display: block;
		flex: 0 0 88%;
		min-height: 100%;
		scroll-snap-align: start;
	}
	.ae-women-home .ae-women-hero-panel + .ae-women-hero-panel { border-left: none; }
	.ae-women-home .ae-women-hero-panels-overlay {
		position: absolute;
		pointer-events: none;
		align-items: flex-end;
		padding-bottom: 28px;
	}
	.ae-women-home .ae-women-hero-panels-content {
		padding: 0 24px;
		transform: none;
		max-width: 88%;
	}
	.ae-women-home .ae-women-hero-panel-headline { font-size: 38px !important; line-height: 1.05; }
	.ae-women-home .ae-women-hero-panel-sub { font-size: 13px; }

	/* Product rows — 2-up horizontal scroll */
	.ae-women-home .ae-women-bp-split { grid-template-columns: 1fr; gap: 28px; padding: 0; }
	.ae-women-home .ae-women-bp-split-text { padding: 0; }
	.ae-women-home .ae-women-bp-split-products {
		grid-template-columns: none;
		display: flex;
		gap: 14px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding: 0 0 4px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.ae-women-home .ae-women-bp-split-products::-webkit-scrollbar { display: none; }
	.ae-women-home .ae-women-bp-split-products > * {
		flex: 0 0 calc(50% - 7px);
		min-width: 0;
		scroll-snap-align: start;
	}

	/* Categories — 2-up horizontal scroll */
	.ae-women-home .ae-women-cat-grid {
		grid-template-columns: none;
		display: flex;
		gap: 14px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding: 0 0 4px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.ae-women-home .ae-women-cat-grid::-webkit-scrollbar { display: none; }
	.ae-women-home .ae-women-cat-grid > * {
		flex: 0 0 calc(50% - 7px);
		min-width: 0;
		scroll-snap-align: start;
	}

	/* Curators — Kendall hero on top, 4 sub-tiles in horizontal scroll */
	.ae-women-home .ae-women-curator-mosaic {
		aspect-ratio: auto;
		display: flex;
		flex-direction: column;
		grid-template-columns: none;
		gap: 14px;
	}
	.ae-women-home .ae-women-curator-mosaic > .ae-women-c-tile { display: none; }
	.ae-women-home .ae-women-curator-mosaic > .ae-women-c-tile:first-child {
		display: block;
		aspect-ratio: 4/5 !important;
		width: 100%;
		margin: 0;
		grid-column: auto !important;
		grid-row: auto !important;
	}
	.ae-women-home .ae-women-curator-mosaic > .ae-women-curator-mosaic-scroll {
		display: flex !important;
		gap: 12px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding: 0 0 4px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.ae-women-home .ae-women-curator-mosaic-scroll::-webkit-scrollbar { display: none; }
	.ae-women-home .ae-women-curator-mosaic-scroll .ae-women-c-tile {
		flex: 0 0 calc(50% - 6px);
		aspect-ratio: 3/4 !important;
		scroll-snap-align: start;
	}
	.ae-women-home .ae-women-curator-mosaic-scroll .ae-women-c-tile-name { font-size: 16px !important; font-weight: 400 !important; }
	.ae-women-home .ae-women-curator-mosaic-scroll .ae-women-c-tile-by { font-size: 11px; }
	.ae-women-home .ae-women-curator-mosaic-scroll .ae-women-c-tile-handle { font-size: 9px; }
	.ae-women-home .ae-women-curator-mosaic > .ae-women-c-tile:first-child .ae-women-c-tile-name { font-size: 32px !important; }

	/* Spotlight — stacked */
	.ae-women-home .ae-women-spotlight-text { padding-right: 0; }
	.ae-women-home .ae-women-spotlight-name { font-size: 40px !important; }

	/* Marquee tighter */
	.ae-women-home .ae-women-marquee-track { font-size: 16px; gap: 32px; }

	.ae-women-home .ae-women-partners { padding: 24px 20px; }
	.ae-women-home .ae-women-partners-inner { grid-template-columns: 1fr; gap: 16px; }
	.ae-women-home .ae-women-partners-list { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
	.ae-women-home *,
	.ae-women-home *::before,
	.ae-women-home *::after {
		transition-duration: 0.01ms !important;
		animation: none !important;
	}
}
