/* ============================================================================
   POSH FASHION — Main Stylesheet
   Refined African luxury design system
   Gold · Black · Ivory · Champagne
   ============================================================================ */

/* ─── 1. Design tokens ─────────────────────────────────────────────────────── */
:root {
	/* Brand palette — gold, ivory, black (per brand brief) */
	--pf-ink:       #0B0B0B;   /* True black for text/dark surfaces */
	--pf-ivory:     #FAF8F3;   /* Warm off-white page background */
	--pf-bone:      #F0EBE0;   /* Champagne ivory — secondary surface */
	--pf-smoke:     #6B665E;   /* Muted text — warmer, more luxurious grey */
	--pf-ash:       #B8AE9C;   /* Light champagne neutral */
	--pf-gold:      #B8924C;   /* Signature gold — antique, not yellow */
	--pf-gold-deep: #8A6B2E;   /* Deep gold for hover states */
	--pf-gold-soft: #D9C28A;   /* Lighter gold for accents */
	--pf-accent:    var(--pf-gold);  /* Map accent → gold */
	--pf-cognac:    #B8924C;

	--pf-line:        rgba(11,11,11,.08);
	--pf-line-strong: rgba(11,11,11,.18);
	--pf-line-gold:   rgba(184,146,76,.4);
	--pf-shadow:      0 30px 70px -30px rgba(11,11,11,.28);

	/* Typography — Playfair Display (display serif) + Manrope (geometric sans) */
	--pf-serif: 'Playfair Display', 'Times New Roman', serif;
	--pf-sans:  'Manrope', system-ui, -apple-system, sans-serif;

	--pf-s-1: 0.5rem;
	--pf-s-2: 1rem;
	--pf-s-3: 1.5rem;
	--pf-s-4: 2rem;
	--pf-s-5: 3rem;
	--pf-s-6: 4.5rem;
	--pf-s-7: 6.5rem;
	--pf-s-8: 9rem;

	--pf-container: 1480px;
	--pf-radius: 0;
	--pf-trans: 400ms cubic-bezier(.2,.65,.2,1);
	--pf-trans-fast: 220ms cubic-bezier(.2,.65,.2,1);

	--pf-header-h: 88px;
	--pf-announce-h: 38px;
}
@media (max-width: 768px) {
	:root { --pf-header-h: 64px; --pf-announce-h: 34px; }
}

/* ─── 2. Reset & base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
	margin: 0;
	font-family: var(--pf-sans);
	font-size: 15px;
	line-height: 1.55;
	color: var(--pf-ink);
	background: var(--pf-ivory);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; transition: opacity var(--pf-trans-fast), color var(--pf-trans-fast); }
a:hover { opacity: .65; }
ul, ol { margin: 0; padding: 0; list-style: none; }
hr { border: 0; border-top: 1px solid var(--pf-line); margin: var(--pf-s-5) 0; }
::selection { background: var(--pf-ink); color: var(--pf-ivory); }

/* ─── 3. Typography ────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--pf-serif);
	font-weight: 300;
	letter-spacing: -0.015em;
	margin: 0 0 var(--pf-s-3);
	color: var(--pf-ink);
	line-height: 1.05;
	font-optical-sizing: auto;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 6rem); line-height: .98; letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem,  4.5vw, 4rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.85rem); }
h4 { font-size: 1.1rem; }
em { font-style: italic; font-variation-settings: "opsz" 144; }
p  { margin: 0 0 var(--pf-s-3); }

.pf-eyebrow {
	display: inline-block;
	font-family: var(--pf-sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--pf-smoke);
	margin-bottom: var(--pf-s-3);
}
.pf-eyebrow--light { color: rgba(255,255,255,.7); }

.pf-link {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 500;
	border-bottom: 1px solid currentColor;
	padding-bottom: 2px;
	transition: transform var(--pf-trans-fast), opacity var(--pf-trans-fast);
}
.pf-link:hover { transform: translateX(3px); opacity: 1; }

.pf-sr  { position: absolute; left: -9999px; }
.pf-skip { position: absolute; left: -9999px; top: 0; padding: 8px 14px; background: var(--pf-ink); color: var(--pf-ivory); z-index: 99999; }
.pf-skip:focus { left: 0; }

/* ─── 4. Layout ────────────────────────────────────────────────────────────── */
.pf-container { width: 100%; max-width: var(--pf-container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.pf-container--narrow { max-width: 780px; }

/* ─── 5. Section heads ─────────────────────────────────────────────────────── */
.pf-section-head { text-align: center; max-width: 780px; margin: 0 auto var(--pf-s-6); }
.pf-section-head__num { display: block; font-family: var(--pf-serif); font-size: 13px; letter-spacing: 0.4em; color: var(--pf-smoke); margin-bottom: var(--pf-s-2); }
.pf-section-head__title { margin: 0 0 var(--pf-s-2); }
.pf-section-head__sub { color: var(--pf-smoke); font-size: 15px; max-width: 540px; margin: 0 auto; }
.pf-section-head--row { display: flex; justify-content: space-between; align-items: flex-end; text-align: left; max-width: none; }
.pf-section-head__link { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }
@media (max-width: 540px) {
	.pf-section-head--row { flex-direction: column; align-items: flex-start; gap: var(--pf-s-2); }
	.pf-section-head__link { padding: 12px 0; min-height: 44px; }
}

/* ─── 6. Buttons ───────────────────────────────────────────────────────────── */
.pf-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	height: 52px; padding: 0 32px;
	font-family: var(--pf-sans); font-size: 12px; font-weight: 500;
	letter-spacing: 0.22em; text-transform: uppercase;
	border: 1px solid transparent; cursor: pointer; white-space: nowrap;
	transition: background var(--pf-trans), color var(--pf-trans), border-color var(--pf-trans), transform var(--pf-trans-fast);
}
.pf-btn:hover { transform: translateY(-1px); opacity: 1; }
.pf-btn--dark { background: var(--pf-ink); color: var(--pf-ivory); }
.pf-btn--dark:hover { background: var(--pf-accent); }
.pf-btn--light { background: var(--pf-ivory); color: var(--pf-ink); }
.pf-btn--light:hover { background: var(--pf-bone); }
.pf-btn--ghost { background: transparent; color: var(--pf-ink); border-color: var(--pf-ink); }
.pf-btn--ghost:hover { background: var(--pf-ink); color: var(--pf-ivory); }
.pf-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.pf-btn--ghost-light:hover { background: #fff; color: var(--pf-ink); }

/* ─── 7. HERO ──────────────────────────────────────────────────────────────── */
.pf-hero {
	position: relative; height: 100vh; min-height: 720px; max-height: 1080px;
	overflow: hidden; color: #fff;
	display: flex; align-items: flex-end;
	margin-top: calc(-1 * var(--pf-header-h));
	padding-top: var(--pf-header-h);
}
.pf-hero__media { position: absolute; inset: 0; }
.pf-hero__img, .pf-hero__video { width: 100%; height: 100%; object-fit: cover; }
.pf-hero__veil {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(10,10,10,.35) 0%, transparent 35%, transparent 60%, rgba(10,10,10,.65) 100%);
}
.pf-hero:not(:has(img)):not(:has(video)) .pf-hero__veil,
.pf-hero .pf-hero__media:empty + .pf-hero__veil {
	background:
		linear-gradient(180deg, rgba(10,10,10,.4), rgba(10,10,10,.8)),
		radial-gradient(at 70% 30%, #1a1a1a, var(--pf-ink) 70%);
}
.pf-hero__content { position: relative; z-index: 2; padding-bottom: clamp(40px, 8vh, 100px); width: 100%; }
.pf-hero__title { color: #fff; max-width: 900px; margin: 0 0 var(--pf-s-3); }
.pf-hero__sub { font-size: 17px; max-width: 540px; color: rgba(255,255,255,.85); margin-bottom: var(--pf-s-4); }
.pf-hero__ctas { display: flex; gap: var(--pf-s-2); flex-wrap: wrap; }

.pf-hero__scroll {
	position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
	color: rgba(255,255,255,.7);
	font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
	display: flex; flex-direction: column; align-items: center; gap: 12px;
	z-index: 2;
}
@media (max-width: 768px) { .pf-hero__scroll { display: none; } }
.pf-hero__scroll i { display: block; width: 1px; height: 50px; background: rgba(255,255,255,.5); position: relative; overflow: hidden; }
.pf-hero__scroll i::after {
	content: ''; position: absolute; left: 0; top: -50%; width: 100%; height: 50%; background: #fff;
	animation: pf-scroll 2.2s ease-in-out infinite;
}
@keyframes pf-scroll { 0% { top: -50% } 100% { top: 100% } }

/* ─── 8. CATEGORIES ────────────────────────────────────────────────────────── */
.pf-cats { padding: var(--pf-s-8) 0; }
.pf-cats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2vw, 32px); }
@media (max-width: 900px) { .pf-cats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pf-cats__grid { grid-template-columns: 1fr; } }

.pf-cat { display: block; position: relative; overflow: hidden; }
.pf-cat__media { aspect-ratio: 3 / 4; overflow: hidden; background: var(--pf-bone); }
.pf-cat__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.65,.2,1); }
.pf-cat:hover .pf-cat__media img { transform: scale(1.05); }
.pf-cat__placeholder {
	width: 100%; height: 100%;
	background:
		linear-gradient(135deg, rgba(10,10,10,.05), transparent 50%),
		repeating-linear-gradient(45deg, rgba(10,10,10,.04) 0 1px, transparent 1px 12px),
		var(--pf-bone);
	display: flex; align-items: center; justify-content: center;
	font-family: var(--pf-serif); font-size: clamp(2rem, 4vw, 3.5rem);
	color: rgba(10,10,10,.18); text-transform: uppercase; letter-spacing: 0.1em;
}
.pf-cat__placeholder::before { content: attr(data-cat); }
.pf-cat__caption { padding: var(--pf-s-3) 0 0; display: flex; align-items: baseline; gap: var(--pf-s-2); }
.pf-cat__num { font-family: var(--pf-serif); color: var(--pf-smoke); font-size: 14px; }
.pf-cat__name { margin: 0; font-size: clamp(1.2rem, 1.5vw, 1.6rem); }
.pf-cat__count { margin-left: auto; font-size: 12px; color: var(--pf-smoke); letter-spacing: 0.1em; text-transform: uppercase; }

/* ─── 9. PRODUCT GRID ──────────────────────────────────────────────────────── */
.pf-rail { padding: var(--pf-s-7) 0; }
.pf-rail--alt { background: #fff; }

.pf-product-grid, ul.products.pf-product-grid {
	list-style: none; padding: 0; margin: 0;
	display: grid; grid-template-columns: repeat(4, 1fr);
	gap: clamp(20px, 2vw, 28px) clamp(16px, 1.5vw, 24px);
}
ul.products.columns-3.pf-product-grid { grid-template-columns: repeat(3, 1fr); }
ul.products.columns-5.pf-product-grid { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) { .pf-product-grid, ul.products.pf-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .pf-product-grid, ul.products.pf-product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

.pf-product, ul.products li.product {
	position: relative; list-style: none;
	width: auto !important; margin: 0 !important; float: none !important;
}
.pf-product__link { display: block; color: inherit; }
.pf-product__media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--pf-bone); }
.pf-product__img { width: 100%; height: 100%; object-fit: cover; transition: opacity 600ms ease, transform 1.2s cubic-bezier(.2,.65,.2,1); }
.pf-product__img--hover { position: absolute; inset: 0; opacity: 0; }
.pf-product:hover .pf-product__img--primary { opacity: 0; }
.pf-product:hover .pf-product__img--hover   { opacity: 1; }
.pf-product:hover .pf-product__img--primary:only-child { opacity: 1; transform: scale(1.04); }

.pf-product__placeholder {
	width: 100%; height: 100%;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	color: rgba(255,255,255,.75); font-family: var(--pf-serif); padding: var(--pf-s-3); text-align: center;
}
.pf-product__placeholder span { font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; opacity: .6; }
.pf-product__placeholder small { font-size: 14px; margin-top: 6px; }

.pf-product__badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; z-index: 2; }
.pf-badge--sale, .pf-badge--new {
	background: var(--pf-ink); color: var(--pf-ivory);
	font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
	padding: 5px 8px; font-weight: 500;
}
.pf-badge--new { background: var(--pf-ivory); color: var(--pf-ink); }

.pf-product__wishlist {
	position: absolute; top: 12px; right: 12px;
	width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
	background: rgba(255,255,255,.9); color: var(--pf-ink);
	opacity: 0; transform: translateY(-4px);
	transition: opacity var(--pf-trans), transform var(--pf-trans), background var(--pf-trans);
	z-index: 2;
}
.pf-product:hover .pf-product__wishlist { opacity: 1; transform: translateY(0); }
.pf-product__wishlist.is-active { color: var(--pf-accent); }

.pf-product__quick {
	position: absolute; bottom: 12px; left: 12px; right: 12px;
	height: 38px; background: rgba(255,255,255,.95); color: var(--pf-ink);
	font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
	opacity: 0; transform: translateY(8px);
	transition: opacity var(--pf-trans), transform var(--pf-trans);
	z-index: 2;
}
.pf-product:hover .pf-product__quick { opacity: 1; transform: translateY(0); }
.pf-product__quick:hover { background: var(--pf-ink); color: var(--pf-ivory); }

.pf-product__info { padding: var(--pf-s-3) 0 0; }
.pf-product__cat { display: block; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pf-smoke); margin-bottom: 6px; }
.pf-product__cat a { color: inherit; }
.pf-product__name { font-family: var(--pf-serif); font-weight: 400; font-size: clamp(15px, 1vw, 17px); margin: 0 0 6px; letter-spacing: 0; }
.price, .pf-product__info .price { font-family: var(--pf-sans); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; }
.price ins { text-decoration: none; color: var(--pf-accent); margin-left: 8px; }
.price del { color: var(--pf-ash); }

.pf-product__atc {
	display: block; width: 100%; margin-top: var(--pf-s-2); height: 42px;
	background: transparent; color: var(--pf-ink); border: 1px solid var(--pf-line-strong);
	font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
	opacity: 0; transform: translateY(4px);
	transition: opacity var(--pf-trans), transform var(--pf-trans), background var(--pf-trans), color var(--pf-trans);
}
.pf-product:hover .pf-product__atc { opacity: 1; transform: translateY(0); }
.pf-product__atc:hover { background: var(--pf-ink); color: var(--pf-ivory); border-color: var(--pf-ink); }

@media (max-width: 768px) {
	.pf-product__wishlist { opacity: 1; transform: none; }
	.pf-product__quick, .pf-product__atc { display: none; }
}

/* ─── 10. FEATURE SPLIT ────────────────────────────────────────────────────── */
.pf-feature { padding: var(--pf-s-7) 0; background: var(--pf-bone); }
.pf-feature__grid {
	display: grid; grid-template-columns: 1.1fr 1fr;
	gap: clamp(40px, 6vw, 100px);
	max-width: var(--pf-container); margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 56px);
	align-items: center;
}
@media (max-width: 900px) { .pf-feature__grid { grid-template-columns: 1fr; } }
.pf-feature__media { aspect-ratio: 4 / 5; overflow: hidden; background: var(--pf-ash); }
.pf-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.pf-feature__title { margin-bottom: var(--pf-s-3); }
.pf-feature__quote {
	font-family: var(--pf-serif); font-style: italic;
	font-size: clamp(1.25rem, 1.6vw, 1.55rem); line-height: 1.4;
	border-left: 1px solid var(--pf-ink); padding-left: var(--pf-s-3);
	margin: 0 0 var(--pf-s-2);
}
.pf-feature__author { color: var(--pf-smoke); font-size: 13px; margin-bottom: var(--pf-s-4); }

/* ─── 11. LIMITED EDITION ──────────────────────────────────────────────────── */
.pf-limited {
	position: relative; padding: var(--pf-s-8) 0;
	background-size: cover; background-position: center;
	color: #fff; text-align: center;
	min-height: 600px; display: flex; align-items: center;
}
.pf-limited__veil, .pf-limited::before {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(10,10,10,.55), rgba(10,10,10,.7));
}
.pf-limited:not([style*="background-image"])::before {
	background:
		linear-gradient(180deg, rgba(10,10,10,.55), rgba(10,10,10,.7)),
		radial-gradient(at 30% 40%, var(--pf-accent), var(--pf-ink) 70%);
}
.pf-limited__inner { position: relative; z-index: 2; }
.pf-limited__title { color: #fff; margin-bottom: var(--pf-s-4); }

.pf-countdown { display: flex; justify-content: center; gap: clamp(20px, 4vw, 60px); margin: var(--pf-s-5) 0; }
.pf-countdown > div { text-align: center; min-width: 70px; }
.pf-countdown span { display: block; font-family: var(--pf-serif); font-weight: 300; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; color: #fff; }
.pf-countdown label { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-top: 8px; display: block; }

/* ─── 12. EDITORIAL MAGAZINE GRID ──────────────────────────────────────────── */
.pf-editorial { padding: var(--pf-s-8) 0; }
.pf-editorial__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	grid-template-rows: auto auto;
	gap: clamp(16px, 2vw, 32px);
}
.pf-editorial__big   { grid-column: 1; grid-row: 1 / span 2; aspect-ratio: 4 / 5; overflow: hidden; position: relative; background: var(--pf-bone); }
.pf-editorial__tall  { grid-column: 2; grid-row: 1; aspect-ratio: 3 / 4; overflow: hidden; position: relative; background: var(--pf-bone); }
.pf-editorial__small { grid-column: 3; grid-row: 2; aspect-ratio: 1; overflow: hidden; position: relative; background: var(--pf-bone); }
.pf-editorial__text  { grid-column: 2 / span 2; grid-row: 1; align-self: end; padding: 0 0 var(--pf-s-4); }
.pf-editorial__big img, .pf-editorial__tall img, .pf-editorial__small img { width: 100%; height: 100%; object-fit: cover; }
.pf-editorial figcaption {
	position: absolute; bottom: 12px; left: 14px;
	font-family: var(--pf-serif); color: #fff; font-size: 12px; letter-spacing: 0.2em;
	mix-blend-mode: difference;
}
@media (max-width: 900px) {
	.pf-editorial__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
	.pf-editorial__big   { grid-column: 1 / span 2; grid-row: auto; }
	.pf-editorial__tall  { grid-column: 1; grid-row: auto; }
	.pf-editorial__small { grid-column: 2; grid-row: auto; }
	.pf-editorial__text  { grid-column: 1 / span 2; grid-row: auto; padding: var(--pf-s-3) 0; }
}

/* ─── 13. STORY ────────────────────────────────────────────────────────────── */
.pf-story { padding: var(--pf-s-7) 0; }
.pf-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--pf-s-6); align-items: center; }
@media (max-width: 900px) { .pf-story__grid { grid-template-columns: 1fr; } }
.pf-story__stats { display: grid; grid-template-columns: 1fr 1fr; gap: var(--pf-s-4); border-top: 1px solid var(--pf-line); padding-top: var(--pf-s-4); }
.pf-story__stats > div { display: flex; flex-direction: column; gap: 4px; }
.pf-story__stats strong { font-family: var(--pf-serif); font-weight: 300; font-size: clamp(2.5rem, 4vw, 3.5rem); }
.pf-story__stats span { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--pf-smoke); }

/* ─── 13b. OUR IMPACT (POSH SIGNATURE) ─────────────────────────────────────── */
.pf-impact { padding: var(--pf-s-7) 0; background: var(--pf-ink); color: var(--pf-ivory); }
.pf-impact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--pf-s-6); align-items: center; }
@media (max-width: 900px) { .pf-impact__grid { grid-template-columns: 1fr; gap: var(--pf-s-4); } }
.pf-impact__media { margin: 0; aspect-ratio: 4/5; overflow: hidden; background: rgba(255,255,255,.04); }
.pf-impact__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pf-impact .pf-eyebrow { color: var(--pf-gold-soft, var(--pf-accent)); }
.pf-impact__title { font-family: var(--pf-serif); font-weight: 300; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.1; letter-spacing: -0.01em; margin: var(--pf-s-2) 0 var(--pf-s-3); color: var(--pf-ivory); }
.pf-impact__title em { font-style: italic; color: var(--pf-accent); }
.pf-impact__body-text { font-size: 16px; line-height: 1.7; color: rgba(250,248,243,.7); margin-bottom: var(--pf-s-4); max-width: 540px; }
.pf-impact .pf-btn--ghost { border-color: rgba(250,248,243,.4); color: var(--pf-ivory); }
.pf-impact .pf-btn--ghost:hover { background: var(--pf-ivory); color: var(--pf-ink); border-color: var(--pf-ivory); }

/* ─── 14. PRESS / TESTIMONIALS ─────────────────────────────────────────────── */
.pf-press { padding: var(--pf-s-7) 0; text-align: center; background: var(--pf-bone); }
.pf-press__eyebrow { display: block; margin-bottom: var(--pf-s-3); }
.pf-press__logos { display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 60px); justify-content: center; align-items: center; padding: var(--pf-s-3) 0 var(--pf-s-6); border-bottom: 1px solid var(--pf-line); margin-bottom: var(--pf-s-6); }
.pf-press__logos span { font-family: var(--pf-serif); font-size: clamp(14px, 1.4vw, 20px); letter-spacing: 0.2em; color: var(--pf-smoke); }

.pf-quotes { position: relative; max-width: 780px; margin: 0 auto; min-height: 160px; }
.pf-quote { position: absolute; inset: 0; opacity: 0; transition: opacity 600ms ease; }
.pf-quote.is-active { opacity: 1; position: relative; }
.pf-quote p { font-family: var(--pf-serif); font-style: italic; font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.4; margin-bottom: var(--pf-s-2); }
.pf-quote cite { font-style: normal; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--pf-smoke); }

/* ─── 15. NEWSLETTER ───────────────────────────────────────────────────────── */
.pf-newsletter { padding: var(--pf-s-7) 0; background: var(--pf-ink); color: var(--pf-ivory); }
.pf-newsletter__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--pf-s-6); align-items: center; }
@media (max-width: 900px) { .pf-newsletter__grid { grid-template-columns: 1fr; } }
.pf-newsletter .pf-eyebrow { color: rgba(255,255,255,.55); }
.pf-newsletter__title { color: var(--pf-ivory); }
.pf-newsletter__title em { color: var(--pf-ivory); }
.pf-newsletter__form { position: relative; display: grid; gap: var(--pf-s-2); }
.pf-newsletter__input {
	height: 56px; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.3);
	color: var(--pf-ivory); padding: 0 50px 0 0; font-family: var(--pf-serif); font-size: 1.05rem; outline: none;
	transition: border-color var(--pf-trans-fast);
}
.pf-newsletter__input::placeholder { color: rgba(255,255,255,.4); }
.pf-newsletter__input:focus { border-color: var(--pf-ivory); }
.pf-newsletter__btn {
	display: inline-flex; align-items: center; gap: 10px; align-self: start;
	color: var(--pf-ivory); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
	padding: 8px 0; border-bottom: 1px solid var(--pf-ivory);
}
.pf-newsletter__legal { color: rgba(255,255,255,.45); font-size: 11px; }

/* ─── 16. INSTAGRAM ────────────────────────────────────────────────────────── */
.pf-ig__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: var(--pf-s-3); padding-top: var(--pf-s-6); }
.pf-ig__handle { font-family: var(--pf-serif); font-size: 1.5rem; }
.pf-ig__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
@media (max-width: 900px) { .pf-ig__grid { grid-template-columns: repeat(3, 1fr); } }
.pf-ig__cell { aspect-ratio: 1; overflow: hidden; background: var(--pf-bone); }
.pf-ig__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms cubic-bezier(.2,.65,.2,1); }
.pf-ig__cell:hover img { transform: scale(1.06); }

/* ─── 17. FOOTER ───────────────────────────────────────────────────────────── */
.pf-footer { background: var(--pf-ink); color: var(--pf-ivory); padding: var(--pf-s-7) 0 var(--pf-s-3); }
.pf-footer a { color: rgba(255,255,255,.7); }
.pf-footer a:hover { color: var(--pf-ivory); opacity: 1; }
.pf-footer__top { display: grid; grid-template-columns: 1fr 2fr; gap: var(--pf-s-6); padding-bottom: var(--pf-s-6); border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 900px) { .pf-footer__top { grid-template-columns: 1fr; } }
.pf-brand--footer { color: var(--pf-ivory); }
.pf-footer__motto { color: rgba(255,255,255,.55); max-width: 320px; margin-top: var(--pf-s-3); }
.pf-footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--pf-s-4); }
@media (max-width: 700px) { .pf-footer__cols { grid-template-columns: 1fr 1fr; gap: var(--pf-s-3); } }
.pf-footer__col-title { color: var(--pf-ivory); font-family: var(--pf-sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: var(--pf-s-3); font-weight: 500; }
.pf-footer__menu, .pf-footer__widget ul { display: grid; gap: 12px; }
.pf-footer__menu li, .pf-footer__widget li { font-size: 14px; }
.pf-footer__menu a, .pf-footer__widget li a { display: inline-block; padding: 4px 0; }
@media (max-width: 768px) {
	.pf-footer__menu a, .pf-footer__widget li a { padding: 10px 0; min-height: 44px; display: flex; align-items: center; }
	.pf-footer__menu, .pf-footer__widget ul { gap: 0; }
}

.pf-footer__bottom { display: flex; flex-wrap: wrap; gap: var(--pf-s-3); align-items: center; padding: var(--pf-s-4) 0 var(--pf-s-3); border-bottom: 1px solid rgba(255,255,255,.1); }
.pf-footer__social { display: flex; gap: var(--pf-s-2); }
.pf-footer__social-link { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.2); display: inline-flex; align-items: center; justify-content: center; }
.pf-footer__social-link:hover { background: var(--pf-ivory); color: var(--pf-ink); border-color: var(--pf-ivory); }
.pf-footer__lang { margin-left: auto; }
.pf-footer__lang-btn { display: inline-flex; gap: 8px; align-items: center; color: rgba(255,255,255,.7); font-size: 12px; letter-spacing: 0.1em; }
.pf-footer__payments { display: flex; gap: 10px; flex-wrap: wrap; color: rgba(255,255,255,.45); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; }

.pf-footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--pf-s-2); padding-top: var(--pf-s-3); font-size: 11px; color: rgba(255,255,255,.4); letter-spacing: 0.1em; text-transform: uppercase; }
.pf-footer__legal-menu { display: flex; gap: var(--pf-s-3); }
.pf-footer__legal-menu a { display: inline-block; padding: 6px 0; }
@media (max-width: 768px) {
	.pf-footer__legal-menu a { padding: 12px 0; min-height: 44px; display: inline-flex; align-items: center; }
}

/* ─── 18. STICKY MOBILE BAG ────────────────────────────────────────────────── */
.pf-sticky-bag { display: none; position: fixed; left: 0; right: 0; bottom: 0; background: var(--pf-ink); color: var(--pf-ivory); padding: 12px 18px; z-index: 80; }
.pf-sticky-bag__link { display: flex; align-items: center; gap: 12px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; }
.pf-sticky-bag__count { margin-left: auto; background: var(--pf-ivory); color: var(--pf-ink); width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; }
@media (max-width: 768px) { .pf-sticky-bag { display: block; } body.pf-is-product .pf-sticky-bag { display: none; } }

/* ─── 19. ABOUT PAGE ───────────────────────────────────────────────────────── */
.pf-about__hero { background: var(--pf-ink); color: var(--pf-ivory); padding: var(--pf-s-8) 0 var(--pf-s-7); text-align: center; }
.pf-about__title { color: #fff; font-size: clamp(3rem, 8vw, 7rem); }
.pf-about__founder, .pf-about__phil, .pf-about__time { padding: var(--pf-s-7) 0; }
.pf-about__founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--pf-s-6); align-items: center; }
@media (max-width: 900px) { .pf-about__founder-grid { grid-template-columns: 1fr; } }
.pf-about__founder-media { aspect-ratio: 4 / 5; overflow: hidden; background: var(--pf-bone); margin: 0; }
.pf-about__founder-media img { width: 100%; height: 100%; object-fit: cover; }
.pf-about__founder-media figcaption { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pf-smoke); margin-top: var(--pf-s-2); }
.pf-about__signature { font-family: var(--pf-serif); font-style: italic; font-size: 1.5rem; color: var(--pf-accent); }
.pf-about__phil-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--pf-s-4); list-style: none; padding: 0; counter-reset: phil; }
@media (max-width: 700px) { .pf-about__phil-list { grid-template-columns: 1fr; } }
.pf-about__phil-list li { border-top: 1px solid var(--pf-line-strong); padding-top: var(--pf-s-3); }
.pf-about__phil-list li span { font-family: var(--pf-serif); color: var(--pf-smoke); display: block; margin-bottom: var(--pf-s-2); }
.pf-about__phil-list li h3 { margin-bottom: var(--pf-s-2); }
.pf-about__time-list { display: grid; gap: var(--pf-s-3); max-width: 700px; }
.pf-about__time-list > div { display: grid; grid-template-columns: 100px 1fr; gap: var(--pf-s-3); padding-bottom: var(--pf-s-3); border-bottom: 1px solid var(--pf-line); }
.pf-about__time-list strong { font-family: var(--pf-serif); font-weight: 300; font-size: 1.5rem; }
.pf-about__band img { width: 100%; height: 80vh; object-fit: cover; background: var(--pf-bone); }
.pf-about__cta { padding: var(--pf-s-7) 0; text-align: center; }
.pf-about__cta-buttons { display: flex; flex-wrap: wrap; gap: var(--pf-s-2); justify-content: center; margin-top: var(--pf-s-3); }

/* About — intro paragraph below hero title */
.pf-about__intro { max-width: 760px; margin: var(--pf-s-3) auto 0; font-family: var(--pf-serif); font-style: italic; font-size: clamp(1.1rem, 1.6vw, 1.4rem); line-height: 1.5; color: rgba(250,248,243,.75); }

/* About — Vision & Mission */
.pf-about__vm { padding: var(--pf-s-7) 0; background: var(--pf-bone); }
.pf-about__vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--pf-s-6); }
@media (max-width: 900px) { .pf-about__vm-grid { grid-template-columns: 1fr; gap: var(--pf-s-4); } }
.pf-about__vm-grid h3 { font-family: var(--pf-serif); font-weight: 300; font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.3; margin: var(--pf-s-2) 0 0; max-width: 480px; }
.pf-about__vm-grid h3 em { font-style: italic; color: var(--pf-accent); }

/* About — Impact section */
.pf-about__impact { padding: var(--pf-s-7) 0; background: var(--pf-ink); color: var(--pf-ivory); }
.pf-about__impact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--pf-s-6); align-items: flex-start; }
@media (max-width: 900px) { .pf-about__impact-grid { grid-template-columns: 1fr; } }
.pf-about__impact .pf-eyebrow { color: var(--pf-gold-soft, var(--pf-accent)); }
.pf-about__impact h2 { color: var(--pf-ivory); font-family: var(--pf-serif); font-weight: 300; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.1; max-width: 460px; }
.pf-about__impact h2 em { color: var(--pf-accent); font-style: italic; }
.pf-about__impact p { color: rgba(250,248,243,.75); font-size: 16px; line-height: 1.7; margin-bottom: var(--pf-s-2); }
.pf-about__impact strong { color: var(--pf-accent); font-weight: 500; }

/* ─── 20. CONTACT PAGE ─────────────────────────────────────────────────────── */
.pf-contact__hero { padding: var(--pf-s-7) 0 var(--pf-s-5); }
.pf-contact__title { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.pf-contact__main { padding: var(--pf-s-5) 0 var(--pf-s-7); }
.pf-contact__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--pf-s-6); }
@media (max-width: 900px) { .pf-contact__grid { grid-template-columns: 1fr; } }
.pf-field { display: grid; gap: 6px; margin-bottom: var(--pf-s-3); }
.pf-field label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--pf-smoke); }
.pf-field input, .pf-field textarea, .pf-field select {
	font-family: var(--pf-sans); font-size: 15px; padding: 14px 0;
	border: 0; border-bottom: 1px solid var(--pf-line-strong); background: transparent; outline: none;
	transition: border-color var(--pf-trans-fast);
}
.pf-field input:focus, .pf-field textarea:focus, .pf-field select:focus { border-color: var(--pf-ink); }
.pf-contact__form small { display: block; margin-top: var(--pf-s-3); color: var(--pf-smoke); font-size: 13px; }
.pf-contact__form a { border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.pf-contact__info { display: grid; gap: var(--pf-s-4); padding: var(--pf-s-4); background: var(--pf-bone); }
.pf-contact__info h4 { font-family: var(--pf-sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pf-smoke); margin-bottom: 6px; }
.pf-contact__info p { font-family: var(--pf-serif); margin: 0; }
.pf-contact__socials { display: flex; gap: var(--pf-s-2); }
.pf-contact__map iframe { width: 100%; height: 480px; border: 0; filter: grayscale(.5) contrast(1.05); }
.pf-contact__faq { padding: var(--pf-s-7) 0; }
.pf-accordion { max-width: 780px; }
.pf-accordion__item { border-top: 1px solid var(--pf-line-strong); padding: var(--pf-s-3) 0; }
.pf-accordion__item:last-child { border-bottom: 1px solid var(--pf-line-strong); }
.pf-accordion__item summary {
	list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
	font-family: var(--pf-serif); font-size: 1.25rem;
}
.pf-accordion__item summary::-webkit-details-marker { display: none; }
.pf-accordion__item summary i { width: 14px; height: 14px; position: relative; }
.pf-accordion__item summary i::before, .pf-accordion__item summary i::after {
	content: ''; position: absolute; left: 0; top: 50%; width: 14px; height: 1px; background: currentColor; transition: transform var(--pf-trans-fast);
}
.pf-accordion__item summary i::after { transform: rotate(90deg); }
.pf-accordion__item[open] summary i::after { transform: rotate(0); }
.pf-accordion__item p { padding-top: var(--pf-s-2); color: var(--pf-smoke); max-width: 600px; }

/* ─── 21. LOOKBOOK ─────────────────────────────────────────────────────────── */
.pf-lookbook { color: var(--pf-ink); }
.pf-lookbook__cover { background: var(--pf-ink); color: var(--pf-ivory); min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--pf-s-6); }
.pf-lookbook__cover-title { color: #fff; font-size: clamp(3rem, 10vw, 9rem); margin-bottom: var(--pf-s-3); }
.pf-lookbook__cover-inner > p { color: rgba(255,255,255,.55); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; }
.pf-lookbook__cover-scroll { margin-top: var(--pf-s-6); font-size: 11px; letter-spacing: 0.4em; color: rgba(255,255,255,.6); }

.pf-look { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; align-items: stretch; position: relative; padding: 0; }
.pf-look--left { grid-template-columns: 1fr 1.2fr; }
.pf-look--right { grid-template-columns: 1.2fr 1fr; }
.pf-look--double { grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; }
.pf-look--double img { width: 100%; height: 80vh; object-fit: cover; background: var(--pf-bone); }

.pf-look__num { position: absolute; top: 24px; left: 24px; font-family: var(--pf-serif); font-size: 1rem; letter-spacing: 0.2em; z-index: 2; }
.pf-look__img { margin: 0; overflow: hidden; background: var(--pf-bone); }
.pf-look__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(.2,.65,.2,1); }
.pf-look:hover .pf-look__img img { transform: scale(1.04); }
.pf-look__caption { padding: clamp(40px, 8vw, 100px); align-self: center; }
.pf-look__caption h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.pf-look__caption ul { margin-top: var(--pf-s-3); display: grid; gap: 8px; }
.pf-look__caption ul a { font-family: var(--pf-serif); font-style: italic; border-bottom: 1px solid var(--pf-line-strong); padding-bottom: 4px; display: inline-block; }
.pf-look--left .pf-look__caption { order: -1; }
@media (max-width: 800px) {
	.pf-look, .pf-look--left, .pf-look--right { grid-template-columns: 1fr; }
	.pf-look__img { aspect-ratio: 3/4; }
	.pf-look--left .pf-look__caption { order: 1; }
}

.pf-lookbook__colo { background: var(--pf-ink); color: var(--pf-ivory); padding: var(--pf-s-7) 0; text-align: center; }
.pf-lookbook__colo h3 { color: #fff; margin-bottom: var(--pf-s-3); }
.pf-lookbook__colo-credits { color: rgba(255,255,255,.4); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; margin-top: var(--pf-s-5); }

/* ─── 22. PAGE / ARCHIVE / 404 ─────────────────────────────────────────────── */
.pf-page__head, .pf-archive__head { padding: var(--pf-s-7) 0 var(--pf-s-4); }
.pf-page__title, .pf-archive__title { font-size: clamp(2rem, 5vw, 4.5rem); }
.pf-archive__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--pf-s-4); padding-bottom: var(--pf-s-7); }
@media (max-width: 900px) { .pf-archive__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pf-archive__grid { grid-template-columns: 1fr; } }
.pf-card__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--pf-bone); }
.pf-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.65,.2,1); }
.pf-card:hover .pf-card__media img { transform: scale(1.04); }
.pf-card__body { padding: var(--pf-s-3) 0 0; }
.pf-card__meta { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--pf-smoke); }
.pf-card__title { font-size: 1.4rem; margin: 8px 0; }
.pf-card__excerpt { color: var(--pf-smoke); margin-bottom: var(--pf-s-2); }
.pf-pagination { display: flex; justify-content: center; gap: var(--pf-s-2); padding-bottom: var(--pf-s-7); }
.pf-pagination a, .pf-pagination span { font-family: var(--pf-serif); padding: 8px 14px; border: 1px solid var(--pf-line-strong); }
.pf-pagination .current { background: var(--pf-ink); color: var(--pf-ivory); border-color: var(--pf-ink); }

.pf-404 { padding: var(--pf-s-8) 0; text-align: center; min-height: 70vh; display: flex; align-items: center; }
.pf-404__title { font-size: clamp(2.5rem, 7vw, 6rem); }
.pf-404__sub { color: var(--pf-smoke); margin-bottom: var(--pf-s-4); }
.pf-404__ctas { display: flex; gap: var(--pf-s-2); justify-content: center; flex-wrap: wrap; }

/* ─── 23. SINGLE POST ──────────────────────────────────────────────────────── */
.pf-single__hero img { width: 100%; height: clamp(400px, 70vh, 800px); object-fit: cover; }
.pf-single__head { padding: var(--pf-s-5) 0 var(--pf-s-3); text-align: center; max-width: 800px; margin: 0 auto; }
.pf-single__title { font-size: clamp(2rem, 5vw, 4rem); }
.pf-single__body { padding-bottom: var(--pf-s-7); font-family: var(--pf-serif); font-size: 18px; line-height: 1.7; }
.pf-single__body p { margin-bottom: var(--pf-s-3); }
.pf-related-posts { background: var(--pf-bone); padding: var(--pf-s-7) 0; }

/* ─── 24. REVEAL ANIMATIONS ────────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity 800ms cubic-bezier(.2,.65,.2,1), transform 800ms cubic-bezier(.2,.65,.2,1); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	[data-reveal] { opacity: 1 !important; transform: none !important; }
	*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ─── 25. TOAST ────────────────────────────────────────────────────────────── */
.pf-toast-region { position: fixed; bottom: 80px; right: 24px; z-index: 200; display: grid; gap: 8px; }
.pf-toast {
	background: var(--pf-ink); color: var(--pf-ivory);
	padding: 14px 18px; min-width: 240px;
	font-size: 13px; letter-spacing: 0.04em;
	display: flex; align-items: center; gap: 12px;
	transform: translateX(120%); transition: transform var(--pf-trans);
}
.pf-toast.is-shown { transform: translateX(0); }
.pf-toast--error { background: var(--pf-accent); }

/* ─── 26. SUCCESS STATES FOR FORMS ─────────────────────────────────────────── */
.pf-newsletter__form.is-success .pf-newsletter__input,
.pf-newsletter__form.is-success .pf-newsletter__btn { opacity: .3; pointer-events: none; }
.pf-newsletter__form.is-success::after {
	content: 'Welcome to the house — watch your inbox.';
	display: block; color: var(--pf-ivory); font-family: var(--pf-serif); font-style: italic; padding-top: var(--pf-s-2);
}
