/* ============================================================
   Vogevalor — main stylesheet
   Design tokens: bone / ink / clay · Fraunces + Archivo
   ============================================================ */

:root {
	--vv-bone: #f2ede4;
	--vv-cream: #e8e0d0;
	--vv-sand: #d8ccb6;
	--vv-ink: #171410;
	--vv-soot: #2a251e;
	--vv-clay: #b4532a;
	--vv-olive: #5c5a41;
	--vv-stone: #8a8172;
	--vv-border: rgba(23, 20, 16, 0.14);
	--vv-font-display: "Fraunces", Georgia, serif;
	--vv-font-sans: "Archivo", system-ui, sans-serif;
	--vv-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--vv-bone);
	color: var(--vv-ink);
	font-family: var(--vv-font-sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--vv-font-display); font-weight: 300; line-height: 1.05; margin: 0 0 0.5em; }
h4, h5, h6 { font-family: var(--vv-font-sans); font-weight: 600; }
::selection { background: var(--vv-clay); color: var(--vv-bone); }

.container-x {
	width: 100%;
	max-width: 1440px;
	margin-inline: auto;
	padding-inline: clamp(20px, 4vw, 48px);
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
	overflow: hidden;
}

.vv-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--vv-ink);
	color: var(--vv-bone);
	padding: 10px 16px;
	z-index: 9999;
}
.vv-skip:focus { left: 8px; top: 8px; }

/* ---------- Buttons ---------- */
.vv-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 32px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	border: 0;
	cursor: pointer;
	transition: background 0.3s var(--vv-ease), color 0.3s var(--vv-ease), transform 0.3s var(--vv-ease);
}
.vv-btn--light { background: var(--vv-bone); color: var(--vv-ink); }
.vv-btn--light:hover { background: var(--vv-clay); color: var(--vv-bone); }
.vv-btn--dark, .vv-btn--solid { background: var(--vv-ink); color: var(--vv-bone); }
.vv-btn--dark:hover, .vv-btn--solid:hover { background: var(--vv-clay); color: var(--vv-bone); }
.vv-btn--dark:hover { transform: scale(1.03); }

/* ---------- Type helpers ---------- */
.vv-eyebrow {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--vv-clay);
	margin: 0 0 12px;
}
.vv-section-title { font-size: clamp(34px, 5vw, 60px); }
.vv-italic { font-style: italic; }

/* ---------- Header ---------- */
.vv-announce {
	background: var(--vv-ink);
	color: var(--vv-bone);
	text-align: center;
	padding: 9px 16px;
}
.vv-announce p {
	margin: 0;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
.vv-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(242, 237, 228, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--vv-border);
}
.vv-header__bar {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 68px;
}
.vv-header__logo { text-align: center; }
.vv-wordmark {
	font-family: var(--vv-font-display);
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.08em;
}
.custom-logo-link img { max-height: 40px; width: auto; }
.vv-menu {
	display: flex;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.vv-menu a {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(23, 20, 16, 0.8);
	position: relative;
	padding-bottom: 2px;
}
.vv-menu a::after {
	content: "";
	position: absolute;
	left: 0; bottom: -2px;
	width: 100%; height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s var(--vv-ease);
}
.vv-menu a:hover::after { transform: scaleX(1); transform-origin: left; }
.vv-header__actions {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
}
.vv-icon-link, .vv-cart-link { position: relative; display: inline-flex; color: var(--vv-ink); }
.vv-cart-count {
	position: absolute;
	top: -8px; right: -10px;
	display: none;
	align-items: center;
	justify-content: center;
	min-width: 16px; height: 16px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--vv-clay);
	color: var(--vv-bone);
	font-size: 10px;
	font-weight: 700;
}
.vv-cart-count.is-visible { display: inline-flex; }

/* burger + mobile nav */
.vv-burger {
	display: none;
	background: none;
	border: 0;
	padding: 8px;
	cursor: pointer;
}
.vv-burger span { display: block; width: 22px; height: 2px; background: var(--vv-ink); margin: 5px 0; transition: transform 0.3s var(--vv-ease), opacity 0.3s; }
.vv-burger[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.vv-burger[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
.vv-mobile-nav {
	display: none;
	background: var(--vv-bone);
	border-bottom: 1px solid var(--vv-border);
	padding: 16px clamp(20px, 4vw, 48px);
}
.vv-mobile-nav.is-open { display: block; }
.vv-mobile-menu { list-style: none; margin: 0; padding: 0; }
.vv-mobile-menu a {
	display: block;
	padding: 12px 0;
	font-family: var(--vv-font-display);
	font-size: 26px;
}
.vv-mobile-menu a:hover { color: var(--vv-clay); }

/* ---------- Marquee ---------- */
.vv-marquee {
	overflow: hidden;
	white-space: nowrap;
	border-block: 1px solid var(--vv-border);
	padding-block: 16px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
}
.vv-marquee--dark, .vv-marquee--footer {
	background: var(--vv-ink);
	color: rgba(242, 237, 228, 0.8);
	border-color: rgba(242, 237, 228, 0.15);
	font-family: var(--vv-font-display);
	font-size: 22px;
	letter-spacing: 0.1em;
	text-transform: none;
}
.vv-marquee--cream { background: var(--vv-cream); }
.vv-marquee__track { display: inline-flex; width: max-content; animation: vv-marquee 30s linear infinite; }
.vv-marquee--footer .vv-marquee__track { animation-duration: 46s; }
.vv-marquee__item { margin-inline: 24px; }
.vv-marquee__sep { opacity: 0.5; }
@keyframes vv-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
	.vv-marquee__track { animation: none; }
}

/* ---------- Hero ---------- */
.vv-hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: flex-end;
	background-size: cover;
	background-position: top center;
	color: var(--vv-bone);
}
.vv-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(23,20,16,0.8), rgba(23,20,16,0.15) 55%, rgba(23,20,16,0.3));
}
.vv-hero__inner { position: relative; padding-bottom: clamp(48px, 8vh, 96px); }
.vv-hero__eyebrow {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: rgba(242,237,228,0.7);
	margin: 0 0 16px;
}
.vv-hero__title {
	font-size: clamp(48px, 9vw, 130px);
	font-weight: 300;
	color: var(--vv-bone);
	margin: 0 0 32px;
}
.vv-hero__title span { display: block; }

/* ---------- Sections ---------- */
.vv-section { padding-block: clamp(64px, 9vw, 112px); }
.vv-page { padding-block: clamp(64px, 8vw, 104px); min-height: 50vh; }
.vv-page--narrow { max-width: 880px; }

/* ---------- Editorial split ---------- */
.vv-editorial { display: grid; grid-template-columns: 1fr 1fr; }
.vv-editorial--reverse .vv-editorial__media { order: 2; }
.vv-editorial__media {
	min-height: 480px;
	background-size: cover;
	background-position: center;
}
.vv-editorial__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(40px, 6vw, 88px);
}
.vv-editorial--dark { background: var(--vv-ink); color: var(--vv-bone); }
.vv-editorial--dark .vv-editorial__text { color: rgba(242,237,228,0.7); }
.vv-editorial__title { font-size: clamp(30px, 4vw, 48px); }
.vv-editorial__text { max-width: 480px; color: rgba(23,20,16,0.7); }
.vv-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	border-top: 1px solid rgba(242,237,228,0.15);
	padding-top: 32px;
	margin-top: 40px;
}
.vv-stats strong { font-family: var(--vv-font-display); font-size: 34px; font-weight: 300; display: block; }
.vv-stats span { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.6; }

/* ---------- Lookbook grid ---------- */
.vv-lookgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(16px, 2vw, 24px);
}
.vv-lookgrid img {
	aspect-ratio: 3 / 4;
	object-fit: cover;
	width: 100%;
	background: var(--vv-cream);
	transition: transform 0.7s var(--vv-ease);
}
.vv-lookgrid img:hover { transform: scale(1.03); }

/* ---------- CTA ---------- */
.vv-cta {
	background: var(--vv-clay);
	color: var(--vv-bone);
	text-align: center;
	padding-block: clamp(72px, 10vw, 128px);
}
.vv-cta__title { font-size: clamp(40px, 8vw, 110px); color: var(--vv-bone); }
.vv-cta p { max-width: 460px; margin: 0 auto 32px; color: rgba(242,237,228,0.85); }

/* ---------- Footer ---------- */
.vv-footer { background: var(--vv-ink); color: var(--vv-bone); }
.vv-footer__grid {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: 48px;
	padding-block: 64px;
}
.vv-footer__title { font-size: 30px; color: var(--vv-bone); }
.vv-footer__title span { color: rgba(242,237,228,0.5); }
.vv-newsletter {
	display: flex;
	max-width: 380px;
	border-bottom: 1px solid rgba(242,237,228,0.3);
	margin-top: 24px;
}
.vv-newsletter:focus-within { border-color: var(--vv-bone); }
.vv-newsletter input {
	flex: 1;
	background: none;
	border: 0;
	padding: 12px 0;
	color: var(--vv-bone);
	font-family: inherit;
}
.vv-newsletter input:focus { outline: none; }
.vv-newsletter button {
	background: none;
	border: 0;
	color: var(--vv-bone);
	font-size: 20px;
	cursor: pointer;
	transition: transform 0.3s var(--vv-ease);
}
.vv-newsletter button:hover { transform: translateX(4px); }
.vv-footer__fine { font-size: 12px; color: rgba(242,237,228,0.4); margin-top: 16px; }
.vv-footer-menu { list-style: none; margin: 0; padding: 0; columns: 2; }
.vv-footer-menu a {
	display: inline-block;
	padding: 6px 0;
	font-size: 14px;
	color: rgba(242,237,228,0.8);
}
.vv-footer-menu a:hover { color: var(--vv-bone); }
.vv-footer__bottom {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	border-top: 1px solid rgba(242,237,228,0.15);
	padding-block: 24px;
	font-size: 12px;
	color: rgba(242,237,228,0.4);
}
.vv-footer__tag { letter-spacing: 0.2em; text-transform: uppercase; }

/* ---------- Article / pages ---------- */
.vv-article__title { font-size: clamp(40px, 6vw, 72px); }
.vv-article__meta { font-size: 13px; color: var(--vv-stone); margin-bottom: 24px; }
.vv-article__thumb { margin: 0 0 32px; }
.vv-article__content { font-size: 17px; line-height: 1.75; }
.vv-article__content h2 { font-size: 32px; margin-top: 48px; }
.vv-article__content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.vv-article__content th, .vv-article__content td {
	border: 1px solid var(--vv-border);
	padding: 12px 16px;
	text-align: left;
}
.vv-article__content th { background: var(--vv-cream); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; }

/* ---------- Blog cards ---------- */
.vv-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.vv-post-card { background: var(--vv-cream); }
.vv-post-card__thumb img { aspect-ratio: 3/4; object-fit: cover; }
.vv-post-card__body { padding: 24px; }
.vv-post-card__title { font-size: 26px; }
.vv-post-card__excerpt { color: rgba(23,20,16,0.65); font-size: 15px; }
.vv-readmore { font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }
.vv-readmore:hover { color: var(--vv-clay); }

/* ---------- Contact form ---------- */
.vv-contact-form { max-width: 560px; }
.vv-contact-form label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 6px; }
.vv-contact-form input, .vv-contact-form textarea {
	width: 100%;
	border: 1px solid var(--vv-border);
	background: transparent;
	padding: 14px 16px;
	font-family: inherit;
	font-size: 15px;
	margin-bottom: 16px;
}
.vv-contact-form input:focus, .vv-contact-form textarea:focus { outline: none; border-color: var(--vv-ink); }
.vv-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.vv-form-notice { padding: 14px 18px; margin-bottom: 20px; font-size: 14px; }
.vv-form-notice--ok { background: rgba(92, 90, 65, 0.15); border-left: 3px solid var(--vv-olive); }
.vv-form-notice--err { background: rgba(180, 83, 42, 0.12); border-left: 3px solid var(--vv-clay); }

/* ---------- 404 / empty ---------- */
.vv-404 { text-align: center; }
.vv-404__title { font-size: clamp(80px, 18vw, 200px); }
.vv-404__title span { color: var(--vv-clay); }
.vv-empty { text-align: center; padding: 48px 0; }

/* ---------- Search form ---------- */
.search-form { display: flex; gap: 8px; max-width: 420px; margin: 24px auto 0; }
.search-form .search-field { flex: 1; border: 1px solid var(--vv-border); padding: 12px 16px; background: transparent; font-family: inherit; }
.search-submit { background: var(--vv-ink); color: var(--vv-bone); border: 0; padding: 12px 20px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; }
.search-submit:hover { background: var(--vv-clay); }

/* ---------- Pagination / comments ---------- */
.pagination .nav-links { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.pagination .page-numbers {
	padding: 10px 16px;
	border: 1px solid var(--vv-border);
	font-size: 13px;
}
.pagination .page-numbers.current { background: var(--vv-ink); color: var(--vv-bone); border-color: var(--vv-ink); }
.vv-comments { margin-top: 64px; }
.vv-comment-list { list-style: none; padding: 0; }
.vv-comment-list .comment-body { border-bottom: 1px solid var(--vv-border); padding: 20px 0; }
.comment-form input:not([type="submit"]), .comment-form textarea {
	width: 100%; border: 1px solid var(--vv-border); background: transparent; padding: 12px 16px; font-family: inherit;
}
.comment-form .submit { background: var(--vv-ink); color: var(--vv-bone); border: 0; padding: 14px 28px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; }
.comment-form .submit:hover { background: var(--vv-clay); }

/* ---------- Scroll reveal (JS adds .vv-reveal) ---------- */
.vv-reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s var(--vv-ease), transform 0.8s var(--vv-ease); }
.vv-reveal--in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.vv-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.vv-nav--left { display: none; }
	.vv-burger { display: block; }
	.vv-header__bar { grid-template-columns: auto 1fr auto; }
	.vv-header__logo { text-align: left; }
	.vv-editorial { grid-template-columns: 1fr; }
	.vv-editorial--reverse .vv-editorial__media { order: 0; }
	.vv-editorial__media { min-height: 320px; }
	.vv-posts, .vv-lookgrid { grid-template-columns: 1fr; }
	.vv-footer__grid { grid-template-columns: 1fr; }
	.vv-hero { min-height: 78vh; }
}
@media (min-width: 901px) {
	.vv-mobile-nav { display: none !important; }
}
