/* ==========================================================================
   VAYUÉ — Site chrome (header + footer). Loads on every page.
   Dark chrome, light body: the gold-on-black wordmark is reproduced exactly,
   and because the dark surfaces are explicit (not driven by a media query)
   a dark-mode device cannot invert them into unreadable combinations.
   No prefers-color-scheme blocks. Colours forced with `color` AND
   `-webkit-text-fill-color`.
   ========================================================================== */

:root {
	/* ---- Dark theme. Gold is decoded from the logo pixels; the greys are
	   built around the logo's own #0F0E13 background. ---- */
	--vy-gold: #BB9D50;        /* decoded: logo core gold */
	--vy-gold-lt: #C8B57E;     /* decoded: logo highlight */
	--vy-gold-dk: #C8B57E;     /* on dark, the LIGHT gold is the readable one */
	--vy-on-gold: #0F0E13;     /* text sitting on a gold fill */
	--vy-slate: #7F9CAB;

	--vy-bg: #0B0A0E;          /* page */
	--vy-deep: #060609;        /* deepest bands / flags */
	--vy-surface: #15141A;     /* cards, panels, inputs */
	--vy-surface-2: #1E1C24;   /* raised / hover */
	--vy-text: #F2EEE4;        /* body text */
	--vy-muted: #A29C92;       /* secondary text */
	--vy-line: #2C2A33;        /* hairlines */
	--vy-line-strong: #494450; /* stronger borders */

	/* Legacy aliases kept so any rule this script did not rewrite still
	   resolves to something sane rather than an invalid value. */
	--vy-ink: #0B0A0E;
	--vy-ivory: #F2EEE4;
	--vy-paper: #0B0A0E;
	--vy-line-dk: #2C2A33;

	--vy-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--vy-sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--vy-btn-h: 54px;
	--vy-btn-r: 2px;
	--vy-btn-fs: 13px;
	--vy-btn-fw: 500;
	--vy-btn-ls: 0.14em;
}

body.vy-body { overflow-x: hidden; background: var(--vy-bg); }
body.vy-body.vh-locked { overflow: hidden; }

.vh-shell {
	width: 100%;
	max-width: 1240px;
	margin-inline: auto;
	padding-inline: 20px;
}

.vh-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 10000;
	background: var(--vy-gold);
	color: var(--vy-on-gold);
	-webkit-text-fill-color: var(--vy-on-gold);
	padding: 12px 18px;
	font-family: var(--vy-sans);
	font-size: 13px;
}
.vh-skip:focus { left: 8px; top: 8px; }

/* ============================== HEADER ============================== */
.vh {
	position: sticky;
	top: 0;
	z-index: 9000;
	background: var(--vy-deep);
	font-family: var(--vy-sans);
}

/* ---- announcement bar ---- */
.vh-announce {
	background: var(--vy-deep);
	border-bottom: 1px solid var(--vy-line-dk);
	overflow: hidden;
	transition: height 240ms ease, opacity 200ms ease;
	height: 36px;
}
.vh-announce__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	height: 36px;
}
.vh-announce span {
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--vy-text);
	-webkit-text-fill-color: var(--vy-text);
	white-space: nowrap;
}
.vh-announce__star { display: inline-flex; color: var(--vy-gold); }
.vh-announce__star svg { width: 8px; height: 8px; }
.vh.is-stuck .vh-announce { height: 0; opacity: 0; border-bottom-color: transparent; }

/* ---- main bar ---- */
.vh-bar { border-bottom: 1px solid var(--vy-line-dk); }
.vh-bar__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 16px;
	height: var(--vh-h);
	transition: height 240ms ease;
}
.vh.is-stuck .vh-bar__inner { height: 62px; }

.vh-burger { justify-self: start; display: none; }

.vh-brand {
	grid-column: 2;
	justify-self: center;
	text-decoration: none;
	text-align: center;
	line-height: 1;
}
/* Logo image. Its baked-in background is the decoded #0F0E13, identical to
   the header surface, so it sits seamlessly with no visible plate edge. */
.vh-brand__img {
	display: block;
	height: 38px;
	width: auto;
	max-width: min(280px, 52vw);
	object-fit: contain;
	transition: height 240ms ease;
}
.vh.is-stuck .vh-brand__img { height: 30px; }
.vh-brand__img--sm { height: 30px; }

.vh-brand__mark {
	display: block;
	font-family: var(--vy-serif);
	font-weight: 300;
	font-size: 30px;
	letter-spacing: 0.34em;
	text-indent: 0.34em; /* balance the trailing tracking */
	color: var(--vy-gold);
	-webkit-text-fill-color: var(--vy-gold);
	transition: font-size 240ms ease;
}
.vh.is-stuck .vh-brand__mark { font-size: 24px; }
.vh-brand__sub {
	display: block;
	margin-top: 5px;
	font-size: 9px;
	letter-spacing: 0.42em;
	text-indent: 0.42em;
	text-transform: uppercase;
	color: var(--vy-gold-dk);
	-webkit-text-fill-color: var(--vy-gold-dk);
}
.vh.is-stuck .vh-brand__sub { display: none; }

.vh-actions {
	grid-column: 3;
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 4px;
}

.vh-icon {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--vy-text);
	cursor: pointer;
	position: relative;
	text-decoration: none;
	transition: color 160ms ease;
}
.vh-icon svg { width: 21px; height: 21px; }
.vh-icon:hover { color: var(--vy-gold); }
.vh-icon--wa:hover { color: #25D366; }

.vh-cart__count {
	position: absolute;
	top: 5px;
	right: 3px;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 9px;
	background: var(--vy-gold);
	color: var(--vy-on-gold);
	-webkit-text-fill-color: var(--vy-on-gold);
	font-size: 10px;
	font-weight: 600;
	line-height: 17px;
	text-align: center;
}
.vh-cart__count.is-empty { display: none; }

/* ---- primary nav ---- */
.vh-nav { border-bottom: 1px solid var(--vy-line-dk); }
.vh.is-stuck .vh-nav { display: none; }

.vh-menu {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 34px;
	list-style: none;
	margin: 0;
	padding: 0;
	min-height: 46px;
	flex-wrap: wrap;
}
.vh-menu li { position: relative; }
.vh-menu a {
	display: block;
	padding: 13px 0;
	font-size: 11.5px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--vy-text);
	-webkit-text-fill-color: var(--vy-text);
	transition: color 160ms ease;
}
.vh-menu a:hover,
.vh-menu .current-menu-item > a,
.vh-menu .current_page_item > a {
	color: var(--vy-gold);
	-webkit-text-fill-color: var(--vy-gold);
}

/* one level of dropdown */
.vh-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	min-width: 200px;
	background: var(--vy-deep);
	border: 1px solid var(--vy-line-dk);
	list-style: none;
	margin: 0;
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 160ms ease;
	z-index: 20;
}
.vh-menu li:hover > .sub-menu { opacity: 1; visibility: visible; }
.vh-menu .sub-menu a { padding: 9px 18px; letter-spacing: 0.12em; text-align: left; }

/* ---- mobile drawer ---- */
.vh-drawer {
	position: fixed;
	inset: 0;
	z-index: 9500;
	visibility: hidden;
	pointer-events: none;
}
.vh-drawer.is-open { visibility: visible; pointer-events: auto; }
.vh-drawer__scrim {
	position: absolute;
	inset: 0;
	background: rgba(8, 8, 11, 0.6);
	opacity: 0;
	transition: opacity 260ms ease;
}
.vh-drawer.is-open .vh-drawer__scrim { opacity: 1; }
.vh-drawer__panel {
	position: absolute;
	inset: 0 auto 0 0;
	width: min(340px, 88vw);
	background: var(--vy-deep);
	border-right: 1px solid var(--vy-line-dk);
	transform: translateX(-100%);
	transition: transform 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
	display: flex;
	flex-direction: column;
	padding: 18px 22px calc(22px + env(safe-area-inset-bottom, 0px));
	overflow-y: auto;
}
.vh-drawer.is-open .vh-drawer__panel { transform: translateX(0); }

.vh-drawer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
}
.vh-brand__mark--sm { font-size: 21px; letter-spacing: 0.26em; text-indent: 0.26em; }

.vh-search { display: flex; margin-bottom: 22px; }
.vh-search input[type="search"] {
	flex: 1 1 auto;
	height: 46px;
	padding: 0 14px;
	border: 1px solid var(--vy-line-dk);
	border-right: 0;
	border-radius: 0;
	background: var(--vy-surface);
	font-family: var(--vy-sans);
	font-size: 14px;
	color: var(--vy-text);
	-webkit-text-fill-color: var(--vy-text);
}
.vh-search input::placeholder { color: var(--vy-muted); -webkit-text-fill-color: var(--vy-muted); }
.vh-search button {
	width: 48px;
	height: 46px;
	border: 1px solid var(--vy-gold);
	background: var(--vy-gold);
	color: var(--vy-on-gold);
	display: grid;
	place-items: center;
	cursor: pointer;
}
.vh-search button svg { width: 18px; height: 18px; }

.vh-drawer__menu { list-style: none; margin: 0 0 auto; padding: 0; }
.vh-drawer__menu li { border-bottom: 1px solid var(--vy-line-dk); }
.vh-drawer__menu a {
	display: block;
	padding: 15px 0;
	font-family: var(--vy-serif);
	font-size: 21px;
	text-decoration: none;
	color: var(--vy-text);
	-webkit-text-fill-color: var(--vy-text);
}
.vh-drawer__menu a:hover { color: var(--vy-gold); -webkit-text-fill-color: var(--vy-gold); }
.vh-drawer__menu .sub-menu { list-style: none; margin: 0 0 8px; padding: 0 0 0 14px; }
.vh-drawer__menu .sub-menu li { border: 0; }
.vh-drawer__menu .sub-menu a { font-family: var(--vy-sans); font-size: 14px; padding: 9px 0; }

.vh-drawer__foot { margin-top: 26px; }
.vh-drawer__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	height: var(--vy-btn-h);
	border-radius: var(--vy-btn-r);
	background: var(--vy-gold);
	border: 1px solid var(--vy-gold);
	color: var(--vy-on-gold);
	-webkit-text-fill-color: var(--vy-on-gold);
	font-size: var(--vy-btn-fs);
	font-weight: var(--vy-btn-fw);
	letter-spacing: var(--vy-btn-ls);
	text-transform: uppercase;
	text-decoration: none;
}
.vh-drawer__tel {
	display: block;
	text-align: center;
	margin-top: 14px;
	font-size: 14px;
	color: var(--vy-gold) !important;
	-webkit-text-fill-color: var(--vy-gold);
	text-decoration: none;
}

/* ============================== FOOTER ============================== */
.vf {
	background: var(--vy-deep);
	border-top: 1px solid var(--vy-line-dk);
	font-family: var(--vy-sans);
	margin-top: 0;
}
.vf-shell {
	width: 100%;
	max-width: 1240px;
	margin-inline: auto;
	padding: 62px 20px 0;
}

/* Desktop: three columns — Brand · Explore · Contact. */
.vf-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1.3fr;
	gap: 46px;
	padding-bottom: 46px;
	align-items: start;
}

/* The link columns are <details>. On desktop the summary is inert and the
   chevron hidden, so they read as plain headed columns. */
.vf-acc { min-width: 0; }
.vf-acc > .vf-h {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	list-style: none;
	cursor: default;
	pointer-events: none;
}
.vf-acc > .vf-h::-webkit-details-marker { display: none; }
.vf-chev { display: none; width: 16px; height: 16px; flex: 0 0 16px; transition: transform 220ms ease; }

.vf-logo { display: inline-block; margin-bottom: 18px; }
.vf-logo__img {
	display: block;
	height: 40px;
	width: auto;
	max-width: 260px;
	object-fit: contain;
}

.vf-mark {
	display: block;
	font-family: var(--vy-serif);
	font-weight: 300;
	font-size: 30px;
	letter-spacing: 0.32em;
	text-indent: 0.32em;
	color: var(--vy-gold);
	-webkit-text-fill-color: var(--vy-gold);
	margin-bottom: 18px;
}
.vf-story {
	font-size: 14px;
	line-height: 1.85;
	color: var(--vy-muted);
	-webkit-text-fill-color: var(--vy-muted);
	margin: 0 0 20px;
	max-width: 42ch;
}
.vf-star { color: var(--vy-gold-dk); }
.vf-star svg { width: 13px; height: 13px; }

.vf-h {
	font-family: var(--vy-sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--vy-gold);
	-webkit-text-fill-color: var(--vy-gold);
	margin: 0 0 20px;
}

.vf-menu, .vf-contact, .vf-usp { list-style: none; margin: 0; padding: 0; }
.vf-menu li, .vf-contact li, .vf-usp li { margin-bottom: 11px; }

.vf-menu a, .vf-contact a {
	font-size: 14px;
	text-decoration: none;
	color: var(--vy-text);
	-webkit-text-fill-color: var(--vy-text);
	transition: color 160ms ease;
}
.vf-menu a:hover, .vf-contact a:hover {
	color: var(--vy-gold);
	-webkit-text-fill-color: var(--vy-gold);
}
.vf-contact__addr {
	font-size: 14px;
	line-height: 1.6;
	color: var(--vy-muted);
	-webkit-text-fill-color: var(--vy-muted);
}

.vf-usp li {
	position: relative;
	padding-left: 18px;
	font-size: 13px;
	color: var(--vy-muted);
	-webkit-text-fill-color: var(--vy-muted);
}
.vf-usp li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 7px;
	height: 7px;
	background: var(--vy-gold-dk);
	clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%);
}

/* Footer CTA — same button spec as everywhere else.
   display:flex + fit-content puts it on its own line above the Instagram
   link rather than relying on inline-flex line-wrapping. */
.vf-cta {
	display: flex;
	width: fit-content;
	max-width: 100%;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin-top: 18px;
	height: var(--vy-btn-h);
	padding: 0 22px;
	border: 1px solid var(--vy-gold);
	border-radius: var(--vy-btn-r);
	background: transparent;
	color: var(--vy-gold);
	-webkit-text-fill-color: var(--vy-gold);
	font-size: var(--vy-btn-fs);
	font-weight: var(--vy-btn-fw);
	letter-spacing: var(--vy-btn-ls);
	text-transform: uppercase;
	text-decoration: none;
	transition: background 180ms ease, color 180ms ease;
}
.vf-cta:hover {
	background: var(--vy-gold);
	color: var(--vy-on-gold);
	-webkit-text-fill-color: var(--vy-on-gold);
}
.vf-cta__icon { width: 17px; height: 17px; flex: 0 0 17px; }
.vf-cta__label { white-space: nowrap; }

/* Instagram sits under the WhatsApp button. It used to live in a separate
   "Follow" column above a USP list, so it carried margin-bottom and no
   margin-top — which left it flush against the button once it moved. */
.vf-social {
	display: flex;
	width: fit-content;
	align-items: center;
	gap: 9px;
	text-decoration: none;
	color: var(--vy-text);
	-webkit-text-fill-color: var(--vy-text);
	font-size: 14px;
	margin: 16px 0 0;
	transition: color 160ms ease;
}
.vf-social:hover { color: var(--vy-gold); -webkit-text-fill-color: var(--vy-gold); }
.vf-social svg { width: 19px; height: 19px; }

/* Policy links row, above the copyright line. */
.vf-legal { border-top: 1px solid var(--vy-line-dk); padding: 20px 0 6px; }
.vf-legal__menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 26px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.vf-legal__menu a {
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--vy-muted);
	-webkit-text-fill-color: var(--vy-muted);
	transition: color 160ms ease;
}
.vf-legal__menu a:hover { color: var(--vy-gold); -webkit-text-fill-color: var(--vy-gold); }

.vf-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	padding: 20px 0 26px;
	border-top: 1px solid var(--vy-line-dk);
}
.vf-copy, .vf-udyam {
	margin: 0;
	font-size: 12px;
	letter-spacing: 0.04em;
	color: var(--vy-muted);
	-webkit-text-fill-color: var(--vy-muted);
}
.vf-udyam span {
	color: var(--vy-gold-dk);
	-webkit-text-fill-color: var(--vy-gold-dk);
	letter-spacing: 0.1em;
}

/* ============================== responsive ============================== */
/* ---- Tablet: two columns, brand spans the full width ---- */
@media (max-width: 1024px) {
	.vf-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 34px; }
	.vf-col--brand { grid-column: 1 / -1; }
	.vh-menu { gap: 22px; }
}

@media (max-width: 900px) {
	.vh-burger { display: inline-grid; }
	.vh-nav { display: none; }
	.vh-bar__inner { height: 62px; }
	.vh-brand__mark { font-size: 24px; letter-spacing: 0.28em; text-indent: 0.28em; }
	.vh-brand__img { height: 28px; }
	.vh.is-stuck .vh-brand__img { height: 25px; }
	.vh-brand__sub { display: none; }
	.vh-announce__hide-sm { display: none; }
	.vh-icon { width: 38px; height: 38px; }
	.vh-icon svg { width: 19px; height: 19px; }
}

/* ---- Phone: two columns, everything centred, link columns collapse ----
   vy-chrome.js removes the `open` attribute below 768px so the two <details>
   start closed; without JS they stay open, which is the safe failure mode. */
@media (max-width: 767px) {
	.vh-shell, .vf-shell { padding-inline: 16px; }
	.vf-shell { padding-top: 40px; }
	.vh-announce span { font-size: 10px; letter-spacing: 0.1em; }

	.vf { text-align: center; }
	.vf-grid { grid-template-columns: repeat(2, 1fr); gap: 4px 18px; padding-bottom: 26px; }
	.vf-col--brand { grid-column: 1 / -1; margin-bottom: 18px; }

	.vf-logo { display: block; }
	.vf-logo__img, .vf-mark { margin-inline: auto; }
	.vf-story { margin-inline: auto; max-width: 34ch; font-size: 13.5px; }
	.vf-star { display: flex; justify-content: center; }

	/* accordion — label and chevron centred together */
	.vf-acc {
		border-top: 1px solid var(--vy-line-dk);
		text-align: center;
	}
	.vf-acc > .vf-h {
		pointer-events: auto;
		cursor: pointer;
		margin: 0;
		padding: 15px 0;
		justify-content: center;
		gap: 8px;
	}
	.vf-chev { display: block; color: var(--vy-gold); }
	.vf-acc[open] > .vf-h .vf-chev { transform: rotate(180deg); }
	.vf-acc > *:not(.vf-h) { padding-bottom: 14px; }

	.vf-menu li, .vf-contact li, .vf-usp li { margin-bottom: 9px; }
	.vf-menu a, .vf-contact a, .vf-contact__addr { font-size: 13.5px; }

	/* Half-width column: drop the "Message us on" lead-in so the button
	   reads "WhatsApp" and fits without clipping or wrapping. */
	.vf-cta {
		width: 100%;
		margin-top: 12px;
		height: 46px;
		padding-inline: 10px;
		font-size: 11px;
		letter-spacing: 0.08em;
	}
	.vf-cta__long { display: none; }
	.vf-social { margin: 14px auto 0; }

	.vf-legal { padding-top: 18px; }
	.vf-legal__menu { gap: 10px 18px; }
	.vf-legal__menu a { font-size: 11px; }

	.vf-bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 18px 0 24px; }
}

/* Very narrow phones: one column reads better than two cramped ones. */
@media (max-width: 400px) {
	.vf-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	.vh-announce, .vh-bar__inner, .vh-brand__mark,
	.vh-drawer__panel, .vh-drawer__scrim { transition: none !important; }
}
