/* ============================================================
   YouGifts design system
   Fonts: Cormorant Garamond (display) / Montserrat (text) — self-hosted
   Palette: warm ivory bg, charcoal ink, champagne gold CTA
   ============================================================ */

:root {
	/* Gift Atelier palette — POD custom-gift theme: cocoa ink, ribbon berry,
	   sage green craft, refined gold. Emotion + trust + premium. */
	--yg-bg: #FAF6EF;
	--yg-bg-soft: #F1E9DC;
	--yg-surface: #FFFFFF;
	--yg-ink: #241C14;
	--yg-ink-soft: #6E5F50;
	--yg-line: #E7DCCB;
	--yg-gold: #A63A50;            /* primary accent now = ribbon berry */
	--yg-gold-deep: #7E2438;       /* deep berry (AA on white: 7.6:1) */
	--yg-gold-soft: #F6E3E7;       /* berry blush */
	--yg-craft: #2E5546;           /* sage deep — craft/trust */
	--yg-craft-soft: #E7EEE8;
	--yg-real-gold: #D8A94E;       /* refined gold for stars/decor only */
	--yg-gold-glow: #F7EBD2;
	--yg-rose: #C46E84;
	--yg-success: #2E5546;
	--yg-danger: #B3362B;
	--yg-shadow-sm: 0 1px 3px rgba(36, 28, 20, 0.07);
	--yg-shadow-md: 0 6px 24px rgba(36, 28, 20, 0.10);
	--yg-shadow-lg: 0 18px 48px rgba(36, 28, 20, 0.15);
	--yg-radius: 14px;
	--yg-radius-sm: 9px;
	--yg-font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
	--yg-font-body: 'Montserrat', -apple-system, 'Segoe UI', sans-serif;
	--yg-container: 1300px;
	--yg-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

/* NOTE: never put overflow-x: clip/hidden on html or body — root clip hides
   position:fixed elements (mobile drawer, sticky bar) on iOS Safari & Chrome Android. */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--yg-font-body);
	font-size: 15px;
	line-height: 1.65;
	color: var(--yg-ink);
	background: var(--yg-bg);
	-webkit-font-smoothing: antialiased;
	overflow-wrap: break-word;
	max-width: 100vw;
	overflow-x: hidden; /* body-level only (not root): safe for fixed layers */
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--yg-ink); text-decoration: none; transition: color 0.2s var(--yg-ease); }
a:hover { color: var(--yg-gold-deep); }

h1, h2, h3, h4 {
	font-family: var(--yg-font-display);
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 0.5em;
	letter-spacing: -0.01em;
}

.yg-container { max-width: var(--yg-container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 1380px) { .yg-container { padding: 0 32px; } }
/* header uses the FULL viewport width on wide screens (page content stays 1300) */
@media (min-width: 1440px) {
	.yg-header .yg-container { max-width: none; }
}
/* wide shop + product pages use more of the viewport */
@media (min-width: 1440px) {
	.yg-shop-wrap .yg-container,
	div.product .yg-container,
	.woocommerce-tabs .yg-container,
	.related.products .yg-container { max-width: 1640px; }
}
@media (min-width: 1780px) {
	.yg-shop-wrap .yg-container,
	div.product .yg-container,
	.woocommerce-tabs .yg-container,
	.related.products .yg-container { max-width: 1760px; }
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
}
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; z-index: 999; background: #fff; padding: 10px 16px; border-radius: 8px; }

/* ---------------- buttons ---------------- */

.yg-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--yg-font-body);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 13px 26px;
	border-radius: 999px;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform 0.25s var(--yg-ease), box-shadow 0.25s var(--yg-ease), background 0.25s, color 0.25s;
	position: relative;
	overflow: hidden;
}
.yg-btn--xl { padding: 17px 36px; font-size: 15px; }
.yg-btn--gold {
	background: linear-gradient(135deg, var(--yg-gold) 0%, var(--yg-gold-deep) 100%);
	color: #231F1B;
	box-shadow: 0 6px 20px rgba(166, 58, 80, 0.35);
}
.yg-btn--gold::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
	transform: translateX(-110%);
	transition: transform 0.6s var(--yg-ease);
}
.yg-btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(166, 58, 80, 0.45); color: #fff; }
.yg-btn--gold:hover::after { transform: translateX(110%); }
.yg-btn--dark { background: var(--yg-ink); color: #fff; }
.yg-btn--dark:hover { background: #443c35; color: #fff; transform: translateY(-2px); }
.yg-btn--ghost { background: transparent; border-color: var(--yg-ink); color: var(--yg-ink); }
.yg-btn--ghost:hover { border-color: var(--yg-gold); color: var(--yg-gold-deep); }

/* ---------------- trust marquee ---------------- */

.yg-trustbar {
	background: var(--yg-craft);
	color: #F5EDDF;
	font-size: 12.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	overflow: hidden;
	position: relative;
	z-index: 60;
	isolation: isolate;
}
.yg-trustbar__track {
	display: flex;
	gap: 56px;
	white-space: nowrap;
	padding: 9px 0;
	width: max-content;
	animation: yg-marquee 36s linear infinite;
}
.yg-trustbar:hover .yg-trustbar__track { animation-play-state: paused; }
.yg-trustbar__item { display: inline-flex; align-items: center; gap: 8px; }
.yg-trustbar__item::after { content: "✦"; color: var(--yg-real-gold); font-size: 10px; margin-left: 40px; }
@keyframes yg-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------- header ---------------- */

.yg-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(250, 246, 239, 0.92);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--yg-line);
	transition: box-shadow 0.3s;
}
.yg-header.is-stuck { box-shadow: var(--yg-shadow-md); }
.yg-header__row {
	display: flex;
	align-items: center;
	gap: 10px;
	height: 72px;
	min-width: 0;
}
/* three-zone layout: logo | nav (flex-1, centered) | actions — never overlap */
.yg-header__logo { flex: 0 0 auto; margin-right: 4px; }
.yg-header__logo img { height: 38px; width: auto; max-width: none; }
.yg-header__actions { display: flex; align-items: center; gap: 2px; flex: 0 0 auto; }
.yg-burger { margin-left: auto; order: 2; }
.yg-header__actions { order: 3; }
.yg-header__logo { order: 1; }
.yg-switchers { display: flex; align-items: center; gap: 0; margin-right: 2px; flex: 0 0 auto; }
.yg-header__divider { width: 1px; height: 22px; background: var(--yg-line); margin: 0 8px; flex: 0 0 auto; }
.yg-icon-btn { position: relative; flex: 0 0 auto; }
.yg-icon-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px; height: 42px;
	border-radius: 50%;
	border: none;
	background: transparent;
	color: var(--yg-ink);
	cursor: pointer;
	transition: background 0.2s;
}
.yg-icon-btn:hover { background: var(--yg-gold-soft); color: var(--yg-ink); }
.yg-cart-count, .yg-wish-count {
	position: absolute;
	top: 3px; right: 1px;
	min-width: 17px; height: 17px;
	border-radius: 999px;
	background: var(--yg-gold);
	color: #fff;
	font-size: 10.5px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
}

/* nav mega menu */
.yg-nav { display: none; min-width: 0; }
/* Tier 3 (>=1780): full nav + header switchers — needs 1721px */
@media (min-width: 1780px) {
	.yg-header .yg-burger { display: none; }
	.yg-header .yg-nav { display: block; flex: 1 1 auto; min-width: 0; order: 2; }
	.yg-header .yg-header__actions { order: 3; }
	.yg-nav__list, .yg-nav__list li { list-style: none; margin: 0; padding: 0; }
	.yg-nav__list { display: flex; gap: 0; justify-content: center; }
	.yg-nav__list > li { flex: 0 0 auto; }
	.yg-nav__list > li > a {
		display: inline-flex; align-items: center; white-space: nowrap;
		height: 72px; padding: 0 10px;
		font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
		border-bottom: 2.5px solid transparent;
		transition: border-color 0.2s, color 0.2s;
	}
	.yg-nav__list > li > a:hover { border-color: var(--yg-gold); }
	.yg-nav__list > li > a::after { content: "▾"; font-size: 9px; margin-left: 4px; opacity: 0.6; }
}
/* Tier 2 (1440-1779): full nav, compact, switchers live in drawer/footer — needs 1436px */
@media (min-width: 1440px) and (max-width: 1779px) {
	.yg-header .yg-burger { display: none; }
	.yg-header .yg-nav { display: block; flex: 1 1 auto; min-width: 0; order: 2; }
	.yg-header .yg-header__actions { order: 3; }
	.yg-header .yg-switchers, .yg-header .yg-header__divider { display: none; }
	.yg-nav__list, .yg-nav__list li { list-style: none; margin: 0; padding: 0; }
	.yg-nav__list { display: flex; gap: 0; justify-content: center; }
	.yg-nav__list > li { flex: 0 0 auto; }
	.yg-nav__list > li > a {
		display: inline-flex; align-items: center; white-space: nowrap;
		height: 72px; padding: 0 6px;
		font-size: 10.5px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase;
		border-bottom: 2.5px solid transparent;
		transition: border-color 0.2s, color 0.2s;
	}
	.yg-nav__list > li > a:hover { border-color: var(--yg-gold); }
	.yg-nav__list > li > a::after { content: "▾"; font-size: 8px; margin-left: 3px; opacity: 0.6; }
	.yg-header__logo img { height: 36px; }
}
/* below desktop-nav breakpoint: switchers live in the drawer, not the header */
@media (max-width: 1379px) {
	.yg-header .yg-switchers { display: none; }
	.yg-header .yg-header__divider { display: none; }
}
@media (max-width: 360px) {
	.yg-header__logo img { height: 32px; }
	.yg-header .yg-icon-btn { width: 38px; height: 38px; }
	.yg-header__actions { gap: 0; }
	.yg-header__row { gap: 6px; padding: 0 14px; }
}

.yg-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	width: min(1080px, 94vw);
	background: var(--yg-surface);
	border: 1px solid var(--yg-line);
	border-top: 3px solid var(--yg-gold);
	border-radius: var(--yg-radius);
	box-shadow: var(--yg-shadow-lg);
	padding: 20px 24px 16px;
	display: grid;
	grid-template-columns: repeat(4, minmax(200px, 1fr));
	gap: 2px 22px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s var(--yg-ease), transform 0.2s var(--yg-ease), visibility 0.2s;
	z-index: 999;
	max-height: min(72vh, 640px);
	overflow-y: auto;
	overscroll-behavior: contain;
}
.yg-nav .sub-menu > li {
	break-inside: avoid;
	padding: 8px 10px;
	border-radius: 10px;
	transition: background 0.2s;
}
.yg-nav .sub-menu > li:hover { background: var(--yg-bg-soft); }
.yg-nav .sub-menu > li > a {
	display: flex !important;
	align-items: center;
	gap: 8px;
	font-family: var(--yg-font-body) !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--yg-gold-deep) !important;
	padding: 2px 0 9px !important;
	border-bottom: 1px solid var(--yg-line) !important;
	margin-bottom: 5px !important;
}
.yg-nav .sub-menu > li > a::after {
	content: "";
	margin-left: auto;
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--yg-gold);
	opacity: 0.3;
	transition: opacity 0.2s, transform 0.2s;
}
.yg-nav .sub-menu > li:hover > a::after { opacity: 1; transform: scale(1.25); }
.yg-nav .sub-menu .sub-menu {
	position: static;
	transform: none;
	box-shadow: none;
	border: none;
	padding: 0;
	margin: 0;
	min-width: 0;
	width: auto;
	display: block;
	grid-column: auto;
	background: none;
	max-height: none;
	overflow: visible;
	opacity: 1;
	visibility: visible;
}
.yg-nav .sub-menu .sub-menu a {
	display: flex !important;
	align-items: center;
	gap: 7px;
	padding: 6px 4px !important;
	font-size: 13px !important;
	line-height: 1.35;
	color: var(--yg-ink-soft) !important;
	font-weight: 400 !important;
	border-radius: 6px;
	transition: color 0.15s, padding-left 0.15s, background 0.15s;
}
.yg-nav .sub-menu .sub-menu a::before {
	content: "";
	width: 4px; height: 4px;
	border-radius: 50%;
	background: var(--yg-line);
	flex: 0 0 auto;
	transition: background 0.15s, transform 0.15s;
}
.yg-nav .sub-menu .sub-menu a:hover {
	color: var(--yg-gold-deep) !important;
	padding-left: 9px !important;
	background: rgba(166, 58, 80, 0.07);
}
.yg-nav .sub-menu .sub-menu a:hover::before { background: var(--yg-gold); transform: scale(1.4); }
.yg-nav__list > li { position: relative; }
.yg-nav__list > li:hover > .sub-menu,
.yg-nav__list > li:focus-within > .sub-menu,
.yg-nav__list > li.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
}
.yg-nav__list > li > .sub-menu { left: 50%; transform: translateX(-50%) translateY(10px); }
.yg-nav__list > li:nth-child(-n+3) > .sub-menu { left: 0; transform: translateY(10px); }
.yg-nav__list > li:nth-child(n+9) > .sub-menu { left: auto; right: 0; transform: translateY(10px); }
.yg-nav__list > li:hover > .sub-menu,
.yg-nav__list > li:focus-within > .sub-menu,
.yg-nav__list > li.is-open > .sub-menu { transform: translateX(-50%) translateY(0); }
.yg-nav__list > li:nth-child(-n+3):hover > .sub-menu,
.yg-nav__list > li:nth-child(-n+3):focus-within > .sub-menu,
.yg-nav__list > li:nth-child(-n+3).is-open > .sub-menu { transform: translateY(0); }
.yg-nav__list > li:nth-child(n+9):hover > .sub-menu,
.yg-nav__list > li:nth-child(n+9):focus-within > .sub-menu,
.yg-nav__list > li:nth-child(n+9).is-open > .sub-menu { transform: translateY(0); }
@media (min-width: 1380px) and (max-width: 1700px) {
	.yg-nav .sub-menu { grid-template-columns: repeat(3, minmax(210px, 1fr)); width: min(860px, 94vw); }
}
@media (max-width: 1379px) {
	.yg-nav .sub-menu { display: none !important; }
}

/* burger + mobile nav */
.yg-burger {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px; height: 42px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.yg-burger span { display: block; height: 2px; background: var(--yg-ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.yg-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.yg-burger.is-open span:nth-child(2) { opacity: 0; }
.yg-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.yg-mobile-nav {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	top: var(--yg-drawer-top, 112px);
	background: var(--yg-bg);
	z-index: 49;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 10px 18px calc(46px + env(safe-area-inset-bottom, 0px));
	box-shadow: 0 -8px 40px rgba(36, 28, 20, 0.16);
}
.yg-mobile-nav[hidden] { display: none; }
.yg-mn-backdrop {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	top: var(--yg-drawer-top, 112px);
	background: rgba(35, 31, 27, 0.38);
	z-index: 48;
	animation: yg-fade-in 0.25s var(--yg-ease);
}
@keyframes yg-fade-in { from { opacity: 0; } to { opacity: 1; } }
.yg-mobile-nav__list, .yg-mobile-nav__list ul { list-style: none; margin: 0; padding: 0; }
.yg-mobile-nav__list > li { border-bottom: 1px solid var(--yg-line); }
.yg-mobile-nav__list > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 52px;
	padding: 12px 2px;
	font-weight: 600;
	font-size: 14.5px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--yg-ink);
}
.yg-mobile-nav__list > li > a:active { color: var(--yg-gold-deep); }
.yg-mn-arrow {
	flex: 0 0 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: var(--yg-gold-deep);
	font-size: 13px;
	transition: transform 0.28s var(--yg-ease);
}
.yg-mobile-nav__list > li.is-open > a .yg-mn-arrow { transform: rotate(180deg); background: var(--yg-gold-soft); }
.yg-mobile-nav__list ul { display: none; }
.yg-mobile-nav__list li.is-open > ul { display: block; }
.yg-mobile-nav__list ul a {
	display: flex;
	align-items: center;
	min-height: 46px;
	padding: 11px 2px 11px 16px;
	font-size: 13.5px;
	color: var(--yg-ink-soft);
	border-top: 1px dashed var(--yg-line);
}
.yg-mobile-nav__list ul a:active { color: var(--yg-gold-deep); }
.yg-mn-foot {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	padding: 20px 2px 6px;
	border-top: 2px solid var(--yg-line);
	margin-top: 14px;
}
.yg-mn-foot .yg-langswitch__list, .yg-mn-foot .yg-curswitch__list { top: auto; bottom: calc(100% + 6px); }

/* below desktop-nav breakpoint: switchers live in the drawer, not the header */
@media (max-width: 480px) {
	.yg-header .yg-icon-btn { width: 40px; height: 40px; }
	.yg-header__actions { gap: 2px; }
	.yg-header__row { gap: 8px; }
}

/* search drawer */
.yg-search-drawer { border-top: 1px solid var(--yg-line); background: var(--yg-surface); box-shadow: var(--yg-shadow-md); }
.yg-search-drawer__inner { padding: 18px 24px; }
.yg-search-form { display: flex; gap: 10px; }
.yg-search-form input[type="search"] {
	flex: 1;
	padding: 13px 18px;
	border: 1.5px solid var(--yg-line);
	border-radius: 999px;
	font-family: var(--yg-font-body);
	font-size: 14.5px;
	background: var(--yg-bg);
	color: var(--yg-ink);
}
.yg-search-form input[type="search"]:focus { outline: none; border-color: var(--yg-gold); }
.yg-search-results { margin-top: 14px; }
.yg-search-hint { color: var(--yg-ink-soft); font-size: 13px; }
.yg-sr-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px 8px;
	border-radius: var(--yg-radius-sm);
	transition: background 0.15s;
}
.yg-sr-item:hover { background: var(--yg-bg-soft); }
.yg-sr-item img { width: 52px; height: 52px; object-fit: cover; border-radius: 8px; }
.yg-sr-item--title { font-size: 13.5px; font-weight: 500; line-height: 1.35; }
.yg-sr-item--price { color: var(--yg-gold-deep); font-weight: 600; font-size: 13px; margin-left: auto; }

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

.yg-hero { position: relative; overflow: hidden; padding: 64px 0 84px; }
.yg-hero__bg {
	position: absolute; inset: 0;
	background:
		radial-gradient(900px 480px at 85% -10%, rgba(166, 58, 80, 0.13), transparent 60%),
		radial-gradient(700px 420px at -10% 110%, rgba(46, 85, 70, 0.12), transparent 60%),
		var(--yg-bg);
}
.yg-hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.yg-hero__eyebrow {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--yg-craft);
	margin: 0 0 14px;
}
.yg-hero h1 { font-size: clamp(40px, 5.4vw, 66px); margin: 0 0 18px; }
.yg-hero__sub { font-size: 16.5px; color: var(--yg-ink-soft); max-width: 520px; margin: 0 0 28px; }
.yg-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.yg-hero__proof { display: flex; flex-wrap: wrap; gap: 20px; list-style: none; margin: 0; padding: 0; font-size: 13.5px; color: var(--yg-ink-soft); font-weight: 500; }
.yg-hero__proof li:first-child { color: var(--yg-gold-deep); letter-spacing: 0.05em; }

.yg-hero__frame {
	position: relative;
	border-radius: 170px 170px 20px 20px;
	overflow: hidden;
	box-shadow: var(--yg-shadow-lg);
	transform: rotate(1.5deg);
	transition: transform 0.5s var(--yg-ease);
}
.yg-hero__frame:hover { transform: rotate(0deg) scale(1.015); }
.yg-hero__frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 6/7; }
.yg-hero__badge {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(6px);
	border-radius: 999px;
	padding: 9px 18px;
	font-size: 12.5px;
	font-weight: 600;
	box-shadow: var(--yg-shadow-md);
	animation: yg-float 5s ease-in-out infinite;
}
.yg-hero__badge--1 { top: 16%; left: -26px; }
.yg-hero__badge--2 { bottom: 13%; right: -18px; animation-delay: 2.5s; }
@keyframes yg-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

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

.yg-section { padding: 72px 0; }
.yg-h2 { font-size: clamp(28px, 3.4vw, 42px); text-align: center; margin-bottom: 10px; }
.yg-section__sub { text-align: center; color: var(--yg-ink-soft); margin: 0 auto 34px; max-width: 560px; }
.yg-section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.yg-section__head .yg-h2 { text-align: left; margin-bottom: 22px; }
.yg-link-more { font-weight: 600; font-size: 13.5px; color: var(--yg-gold-deep); white-space: nowrap; }

/* fade-up animation */
.yg-anim-on .yg-fade-up {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.65s var(--yg-ease), transform 0.65s var(--yg-ease);
	transition-delay: var(--d, 0ms);
}
.yg-anim-on .yg-fade-up.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.yg-anim-on .yg-fade-up { opacity: 1; transform: none; transition: none; }
	.yg-trustbar__track, .yg-hero__badge { animation: none; }
	html { scroll-behavior: auto; }
}

/* ---------------- gift finder ---------------- */

.yg-finder { background: var(--yg-bg-soft); }
.yg-finder__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 30px; }
.yg-chip {
	font-family: var(--yg-font-body);
	font-size: 14px;
	font-weight: 600;
	padding: 12px 24px;
	border-radius: 999px;
	border: 1.5px solid var(--yg-line);
	background: var(--yg-surface);
	cursor: pointer;
	transition: all 0.25s var(--yg-ease);
}
.yg-chip:hover { border-color: var(--yg-gold); transform: translateY(-2px); box-shadow: var(--yg-shadow-sm); }
.yg-chip.is-active {
	background: var(--yg-ink);
	color: #fff;
	border-color: var(--yg-ink);
}
.yg-finder__results {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 18px;
}
.yg-finder__results:empty { display: none; }
.yg-finder__empty { grid-column: 1 / -1; text-align: center; color: var(--yg-ink-soft); }

/* ---------------- category tiles ---------------- */

.yg-cats__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 14px;
}
.yg-cat-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 26px 12px;
	background: var(--yg-surface);
	border: 1px solid var(--yg-line);
	border-radius: var(--yg-radius);
	transition: transform 0.3s var(--yg-ease), box-shadow 0.3s var(--yg-ease), border-color 0.3s;
}
.yg-cat-tile:hover {
	transform: translateY(-5px);
	box-shadow: var(--yg-shadow-md);
	border-color: var(--yg-gold);
}
.yg-cat-tile__icon { font-size: 30px; filter: saturate(0.9); transition: transform 0.3s var(--yg-ease); }
.yg-cat-tile:hover .yg-cat-tile__icon { transform: scale(1.18); }
.yg-cat-tile__name { font-weight: 600; font-size: 13px; text-align: center; }

/* ---------------- occasions ---------------- */

.yg-occ__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
.yg-occ-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 20px 10px;
	border-radius: var(--yg-radius);
	background: linear-gradient(160deg, var(--yg-surface), var(--yg-bg-soft));
	border: 1px solid transparent;
	font-weight: 600;
	font-size: 13px;
	transition: all 0.25s var(--yg-ease);
}
.yg-occ-tile:hover { border-color: var(--yg-gold); transform: translateY(-3px); box-shadow: var(--yg-shadow-sm); }
.yg-occ-tile__icon { font-size: 26px; }

/* ---------------- how it works ---------------- */

.yg-how { background: var(--yg-craft); color: #F2F0E9; }
.yg-how .yg-h2 { color: #fff; }
.yg-how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.yg-how__step { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--yg-radius); padding: 30px 26px; }
.yg-how__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, #E4B968, var(--yg-real-gold));
	color: #fff;
	font-family: var(--yg-font-display);
	font-size: 21px;
	font-weight: 700;
	margin-bottom: 16px;
}
.yg-how__step h3 { color: #fff; font-size: 21px; }
.yg-how__step p { color: rgba(242, 235, 223, 0.75); margin: 0; font-size: 14px; }

/* ---------------- story ---------------- */

.yg-story__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.yg-story__media {
	border-radius: var(--yg-radius);
	background:
		radial-gradient(480px 300px at 70% 20%, rgba(166, 58, 80, 0.16), transparent 65%),
		linear-gradient(160deg, var(--yg-gold-soft), var(--yg-bg-soft));
	min-height: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.yg-story__stat { text-align: center; }
.yg-story__stat strong { display: block; font-family: var(--yg-font-display); font-size: 64px; color: var(--yg-gold-deep); line-height: 1; }
.yg-story__stat span { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--yg-ink-soft); }
.yg-story__list { list-style: none; margin: 0 0 26px; padding: 0; }
.yg-story__list li { padding: 12px 0 12px 34px; position: relative; border-bottom: 1px dashed var(--yg-line); }
.yg-story__list li::before { content: "✦"; position: absolute; left: 4px; top: 12px; color: var(--yg-gold); }

/* ---------------- reviews ---------------- */

.yg-reviews { background: var(--yg-bg-soft); overflow: hidden; }
.yg-reviews__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: min(78vw, 340px);
	gap: 16px;
	overflow-x: auto;
	padding: 6px 16px 22px;
	margin: 0 -16px;
	max-width: calc(100vw - 8px);
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
}
.yg-review {
	margin: 0;
	background: var(--yg-surface);
	border-radius: var(--yg-radius);
	padding: 26px;
	box-shadow: var(--yg-shadow-sm);
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
}
.yg-review__stars { color: var(--yg-real-gold); letter-spacing: 3px; margin-bottom: 10px; }
.yg-review blockquote { margin: 0 0 14px; font-family: var(--yg-font-display); font-size: 19px; line-height: 1.4; flex: 1; }
.yg-review figcaption { font-size: 12.5px; color: var(--yg-ink-soft); font-weight: 500; }

/* ---------------- faq ---------------- */

.yg-faq__inner { max-width: 780px; }
.yg-faq__list { display: grid; gap: 10px; }
.yg-faq__item {
	background: var(--yg-surface);
	border: 1px solid var(--yg-line);
	border-radius: var(--yg-radius-sm);
	padding: 4px 20px;
}
.yg-faq__item summary {
	cursor: pointer;
	font-weight: 600;
	padding: 14px 0;
	list-style: none;
	position: relative;
	padding-right: 40px;
}
.yg-faq__item summary::-webkit-details-marker { display: none; }
.yg-faq__item summary::after {
	content: "+";
	position: absolute;
	right: 4px; top: 50%;
	transform: translateY(-50%);
	font-size: 22px;
	color: var(--yg-real-gold);
	transition: transform 0.25s;
}
.yg-faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.yg-faq__item p { margin: 0 0 16px; color: var(--yg-ink-soft); }

/* ---------------- final cta ---------------- */

.yg-finalcta {
	background:
		radial-gradient(800px 400px at 50% -20%, rgba(166, 58, 80, 0.22), transparent 60%),
		var(--yg-ink);
	color: #fff;
	text-align: center;
	padding: 88px 0;
}
.yg-finalcta h2 { font-size: clamp(30px, 4vw, 48px); color: #fff; }
.yg-finalcta p { color: rgba(255,255,255,0.7); margin-bottom: 30px; }

/* ---------------- footer ---------------- */

.yg-footer { background: #1E1710; color: #CFC6BA; margin-top: 0; }
.yg-footer__news { background: linear-gradient(120deg, #241C14, #3A2E1F); padding: 52px 0; }
.yg-news-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.yg-news-copy { flex: 1; min-width: 260px; }
.yg-news-copy h2 { color: #fff; font-size: 28px; margin-bottom: 6px; }
.yg-news-copy p { margin: 0; font-size: 14px; }
.yg-news-form { display: flex; gap: 10px; flex: 1; min-width: 280px; }
/* tablet: stack + full-width CTA so label never clips */
@media (max-width: 900px) {
	.yg-news-form { flex-direction: column; align-items: stretch; }
	.yg-news-form input { width: 100%; }
	.yg-news-form button { width: 100%; white-space: nowrap; }
}
.yg-news-form input {
	flex: 1;
	padding: 14px 20px;
	border-radius: 999px;
	border: none;
	font-family: var(--yg-font-body);
	font-size: 14px;
}
.yg-footer__main {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 44px;
	padding: 60px 24px 40px;
}
.yg-footer__brand p { font-size: 13.5px; margin: 14px 0 18px; }
.yg-footer__trust { display: flex; flex-direction: column; gap: 7px; font-size: 13px; margin-bottom: 18px; }
.yg-footer__pay { display: flex; gap: 8px; flex-wrap: wrap; }
.yg-pay {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	padding: 5px 10px;
	border-radius: 5px;
	background: rgba(255,255,255,0.09);
	color: #EDE6DA;
}
.yg-pay--paypal { color: #8FC1FF; }
.yg-footer__shoplinks h3, .yg-footer__nav h3 {
	font-family: var(--yg-font-body);
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 14px;
}
.yg-footer__list { list-style: none; margin: 0; padding: 0; }
.yg-footer__list li { margin-bottom: 9px; }
.yg-footer__list a { color: #CFC6BA; font-size: 13.5px; }
.yg-footer__list a:hover { color: var(--yg-gold); }
.yg-footer__bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; font-size: 12.5px; }
.yg-footer__bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.yg-footer__switchers { display: flex; align-items: center; gap: 4px; }
.yg-footer__switchers .yg-langswitch__list, .yg-footer__switchers .yg-curswitch__list { top: auto; bottom: calc(100% + 6px); }
.yg-footer__switchers .yg-langswitch__btn, .yg-footer__switchers .yg-curswitch__btn { background: rgba(255,255,255,0.06); color: #EDE6DA; }
.yg-footer__switchers .yg-langswitch__item, .yg-footer__switchers .yg-curswitch__item { color: var(--yg-ink-soft); }
.yg-footer__switchers .yg-langswitch__item:hover, .yg-footer__switchers .yg-curswitch__item:hover { background: rgba(255,255,255,0.08); color: #fff; }
.yg-footer__switchers .yg-curswitch__note { color: #9C9184; }
.yg-legal-list { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.yg-legal-list a { color: #9C9184; }
.yg-legal-list a:hover { color: #fff; }

/* ---------------- misc page furniture ---------------- */

.yg-page-wrap { padding: 48px 24px 80px; }
.yg-prose { max-width: 820px; }
.yg-prose h2 { font-size: 30px; margin-top: 1.4em; }
.yg-prose h3 { font-size: 22px; margin-top: 1.3em; }
.yg-prose p, .yg-prose li { color: var(--yg-ink-soft); }
.yg-prose strong { color: var(--yg-ink); }
.yg-404 { text-align: center; padding-top: 90px; }
.yg-404__code { font-family: var(--yg-font-display); font-size: 110px; color: var(--yg-gold); margin: 0; line-height: 1; }
.yg-posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.yg-post-card { background: var(--yg-surface); border: 1px solid var(--yg-line); border-radius: var(--yg-radius); overflow: hidden; }
.yg-post-card__body { padding: 20px; }
.yg-post-card__title a { font-family: var(--yg-font-display); font-size: 21px; }
.pagination, .page-numbers { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.page-numbers {
	padding: 9px 15px;
	border-radius: 8px;
	background: var(--yg-surface);
	border: 1px solid var(--yg-line);
}

/* ---------------- CRO widgets ---------------- */

/* order notification */
.yg-note-pop {
	position: fixed;
	left: 18px;
	bottom: 18px;
	z-index: 70;
	background: var(--yg-surface);
	border: 1px solid var(--yg-line);
	border-radius: var(--yg-radius);
	box-shadow: var(--yg-shadow-lg);
	padding: 13px 18px 13px 13px;
	display: flex;
	align-items: center;
	gap: 13px;
	max-width: 340px;
	transform: translateY(130%);
	transition: transform 0.5s var(--yg-ease), opacity 0.5s;
}
.yg-note-pop.is-in { transform: translateY(0); }
.yg-note-pop img { width: 46px; height: 46px; object-fit: cover; border-radius: 9px; }
.yg-note-pop__text { font-size: 12.5px; line-height: 1.45; }
.yg-note-pop__text strong { display: block; font-size: 12.5px; }
.yg-note-pop__time { color: var(--yg-ink-soft); font-size: 11px; }

/* exit popup */
.yg-exitpop {
	position: fixed;
	inset: 0;
	z-index: 90;
	background: rgba(35, 31, 27, 0.55);
	backdrop-filter: blur(3px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.yg-exitpop[hidden] { display: none; }
.yg-exitpop__card {
	position: relative;
	background:
		radial-gradient(400px 200px at 80% -10%, rgba(166, 58, 80, 0.25), transparent 60%),
		var(--yg-surface);
	border-radius: 20px;
	padding: 46px 40px;
	max-width: 480px;
	text-align: center;
	box-shadow: var(--yg-shadow-lg);
	animation: yg-pop-in 0.45s var(--yg-ease);
}
@keyframes yg-pop-in { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.yg-exitpop__card h3 { font-size: 30px; }
.yg-exitpop__code {
	display: inline-block;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.14em;
	padding: 13px 30px;
	border: 2px dashed var(--yg-gold);
	border-radius: 12px;
	color: var(--yg-gold-deep);
	margin: 12px 0 4px;
	cursor: pointer;
}
.yg-exitpop__close {
	position: absolute;
	top: 12px; right: 12px;
	width: 40px; height: 40px;
	border-radius: 50%;
	border: none;
	background: var(--yg-bg-soft);
	font-size: 19px;
	cursor: pointer;
}
.yg-exitpop__hint { font-size: 12.5px; color: var(--yg-ink-soft); margin: 0; }

/* wishlist drawer */
.yg-wish-drawer {
	position: fixed;
	top: 0; right: 0; bottom: 0;
	width: min(390px, 92vw);
	background: var(--yg-surface);
	z-index: 80;
	box-shadow: var(--yg-shadow-lg);
	transform: translateX(105%);
	transition: transform 0.4s var(--yg-ease);
	display: flex;
	flex-direction: column;
}
.yg-wish-drawer.is-open { transform: translateX(0); }
.yg-wish-drawer__head { padding: 20px 22px; border-bottom: 1px solid var(--yg-line); display: flex; justify-content: space-between; align-items: center; }
.yg-wish-drawer__body { flex: 1; overflow-y: auto; padding: 16px 22px; }
.yg-wish-item { display: flex; gap: 13px; padding: 10px 0; border-bottom: 1px solid var(--yg-line); }
.yg-wish-item img { width: 62px; height: 62px; object-fit: cover; border-radius: 10px; }
.yg-wish-item__title { font-size: 13.5px; font-weight: 500; line-height: 1.35; }
.yg-wish-item__price { color: var(--yg-gold-deep); font-weight: 600; font-size: 13px; }

/* quick view modal */
.yg-qv-overlay {
	position: fixed; inset: 0;
	z-index: 85;
	background: rgba(35, 31, 27, 0.5);
	display: flex; align-items: center; justify-content: center;
	padding: 20px;
}
.yg-qv-overlay[hidden] { display: none; }
.yg-qv-modal {
	background: var(--yg-surface);
	border-radius: 18px;
	max-width: 780px;
	width: 100%;
	max-height: 88vh;
	overflow-y: auto;
	position: relative;
	padding: 26px;
	animation: yg-pop-in 0.35s var(--yg-ease);
}
.yg-qv-modal__close {
	position: absolute; top: 14px; right: 14px;
	width: 40px; height: 40px; border-radius: 50%;
	border: none; background: var(--yg-bg-soft); font-size: 17px; cursor: pointer;
}
.yg-qv { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.yg-qv__media img { border-radius: 14px; width: 100%; }
.yg-qv__info h2 { font-size: 26px; }
.yg-qv__price { font-size: 21px; color: var(--yg-gold-deep); font-weight: 700; margin: 6px 0 12px; }
.yg-qv__excerpt { color: var(--yg-ink-soft); margin-bottom: 18px; }
.yg-qv__trust { margin-top: 16px; font-size: 12.5px; color: var(--yg-ink-soft); display: grid; gap: 5px; }

/* recently viewed */
.yg-recently { padding: 40px 0 70px; }
.yg-recently__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 14px; }

/* ---------------- language / currency switchers ---------------- */

.yg-switchers { display: flex; align-items: center; gap: 2px; margin-right: 4px; }
.yg-langswitch, .yg-curswitch { position: relative; }
.yg-langswitch__btn, .yg-curswitch__btn {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	height: 36px;
	padding: 0 10px;
	border-radius: 999px;
	border: none;
	background: transparent;
	font-family: var(--yg-font-body);
	font-size: 12px;
	font-weight: 700;
	color: var(--yg-ink);
	cursor: pointer;
	transition: background 0.2s;
}
.yg-langswitch__btn:hover, .yg-curswitch__btn:hover { background: var(--yg-gold-soft); }
.yg-langswitch__flag { font-size: 15px; }
.yg-langswitch__list, .yg-curswitch__list {
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	z-index: 75;
	min-width: 170px;
	background: var(--yg-surface);
	border: 1px solid var(--yg-line);
	border-radius: 12px;
	box-shadow: var(--yg-shadow-lg);
	padding: 6px;
	margin: 0;
	list-style: none;
}
.yg-langswitch__item, .yg-curswitch__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 13px;
	color: var(--yg-ink);
}
.yg-langswitch__item:hover, .yg-curswitch__item:hover { background: var(--yg-bg-soft); }
.yg-langswitch__item.is-current { font-weight: 700; color: var(--yg-gold-deep); }
.yg-curswitch__note {
	padding: 8px 12px 4px;
	font-size: 11px;
	color: var(--yg-ink-soft);
	border-top: 1px dashed var(--yg-line);
	margin-top: 4px;
}
.yg-price-cur { white-space: nowrap; }

@media (max-width: 640px) {
	.yg-langswitch__btn span.yg-langswitch__code { display: none; }
	.yg-curswitch__btn { font-size: 11px; }
}

/* ---------------- responsive ---------------- */

@media (max-width: 1023px) {
	.yg-hero__inner { grid-template-columns: 1fr; gap: 40px; }
	.yg-hero__media { max-width: 440px; margin: 0 auto; }
	.yg-how__grid { grid-template-columns: 1fr; }
	.yg-story__inner { grid-template-columns: 1fr; }
	.yg-story__media { min-height: 240px; }
	.yg-footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
	body { font-size: 14px; }
	.yg-container { padding: 0 16px; }
	.yg-section { padding: 52px 0; }
	.yg-hero { padding: 40px 0 60px; }
	.yg-hero__cta .yg-btn { width: 100%; }
	.yg-footer__main { grid-template-columns: 1fr; gap: 30px; }
	.yg-news-form { flex-direction: column; }
	.yg-note-pop { left: 10px; right: 10px; max-width: none; bottom: 74px; }
	.yg-qv { grid-template-columns: 1fr; }
	.yg-cat-tile { padding: 20px 8px; }
}

/* bestsellers block: tighter vertical rhythm (20 products = 4 rows x 5) */
.yg-bestsellers { padding: 44px 0 40px; }
.yg-bestsellers .yg-section__head { margin-bottom: 14px; }
.yg-bestsellers ul.products { margin-bottom: 8px !important; }
.yg-bestsellers .yg-h2 { font-size: clamp(24px, 3vw, 34px); }

/* ============================================================
   HERO 2 — Gift Atelier Cinema
   full-bleed image · 14s Ken Burns · bottom-anchored white copy
   gold kicker line · word-stagger title · sparkle drift · scroll hint
   ============================================================ */
.yg-hero2 {
	position: relative;
	min-height: min(86vh, 780px);
	display: grid;
	align-items: end;
	overflow: hidden;
	isolation: isolate;
}
.yg-hero2__media, .yg-hero2__media img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	z-index: -2;
}
.yg-hero2__media img {
	animation: yg-kenburns 16s var(--yg-ease) both;
	will-change: transform;
}
@keyframes yg-kenburns {
	from { transform: scale(1.14) translate3d(1.5%, -1%, 0); }
	to { transform: scale(1) translate3d(0, 0, 0); }
}
.yg-hero2__scrim {
	position: absolute; inset: 0; z-index: -1;
	background:
		linear-gradient(184deg, rgba(20,14,10,0.28) 0%, rgba(20,14,10,0.02) 30%, rgba(20,14,10,0.56) 78%, rgba(20,14,10,0.78) 100%);
}

/* floating gold sparkles */
.yg-hero2__sparkles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.yg-hero2__sparkles i {
	position: absolute;
	width: 5px; height: 5px;
	border-radius: 50%;
	background: radial-gradient(circle, #FFE6A8 0%, rgba(255,214,130,0.85) 40%, transparent 70%);
	box-shadow: 0 0 8px 2px rgba(255, 214, 130, 0.55);
	opacity: 0;
	animation: yg-sparkle 6s ease-in-out infinite;
}
.yg-hero2__sparkles i:nth-child(1) { left: 8%;  top: 30%; animation-delay: 0.4s; }
.yg-hero2__sparkles i:nth-child(2) { left: 16%; top: 62%; animation-delay: 2.2s; transform: scale(1.6); }
.yg-hero2__sparkles i:nth-child(3) { left: 27%; top: 18%; animation-delay: 4.1s; }
.yg-hero2__sparkles i:nth-child(4) { left: 44%; top: 46%; animation-delay: 1.3s; transform: scale(0.7); }
.yg-hero2__sparkles i:nth-child(5) { left: 58%; top: 24%; animation-delay: 3.4s; }
.yg-hero2__sparkles i:nth-child(6) { left: 71%; top: 58%; animation-delay: 0.9s; transform: scale(1.3); }
.yg-hero2__sparkles i:nth-child(7) { left: 83%; top: 32%; animation-delay: 2.8s; }
.yg-hero2__sparkles i:nth-child(8) { left: 92%; top: 66%; animation-delay: 5.0s; transform: scale(0.85); }
@keyframes yg-sparkle {
	0%, 100% { opacity: 0; transform: translateY(0) scale(0.6); }
	18% { opacity: 1; }
	50% { opacity: 0.85; transform: translateY(-14px) scale(1); }
	82% { opacity: 0.4; }
}

/* content column */
.yg-hero2__inner {
	position: relative;
	z-index: 1;
	padding-top: clamp(110px, 16vh, 210px);
	padding-bottom: clamp(72px, 11vh, 132px);
}
.yg-hero2__kicker {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--yg-real-gold);
	margin: 0 0 20px;
	text-shadow: 0 1px 18px rgba(0,0,0,0.5);
	animation: yg-rise-in 0.9s var(--yg-ease) 0.15s both;
}
.yg-hero2__kline {
	width: 46px; height: 1.5px;
	background: linear-gradient(90deg, transparent, var(--yg-real-gold));
	transform-origin: left;
	animation: yg-kline 1.1s var(--yg-ease) 0.45s both;
}
@keyframes yg-kline { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.yg-hero2__title {
	font-size: clamp(42px, 6.4vw, 92px);
	color: #FFFDF9;
	margin: 0 0 16px;
	font-weight: 500;
	letter-spacing: -0.015em;
	line-height: 1.06;
	text-wrap: balance;
	text-shadow: 0 3px 40px rgba(0, 0, 0, 0.45);
}
.yg-hero2__word {
	display: block;
	animation: yg-word-in 1s var(--yg-ease) both;
}
.yg-hero2__word:nth-child(2) { animation-delay: 0.32s; }
.yg-hero2__word--em {
	font-style: italic;
	background: linear-gradient(100deg, #F3D9A4 0%, #E8B96C 38%, var(--yg-real-gold) 62%, #F5E3B8 100%);
	background-size: 220% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	animation: yg-word-in 1s var(--yg-ease) 0.32s both,
		 yg-sheen 5.5s ease-in-out 1.6s infinite;
}
@keyframes yg-word-in {
	from { opacity: 0; transform: translateY(34px); filter: blur(6px); }
	to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes yg-sheen {
	0%, 100% { background-position: 0% 0; }
	50% { background-position: 100% 0; }
}
.yg-hero2__sub {
	font-size: clamp(15px, 1.35vw, 18px);
	color: rgba(255, 250, 242, 0.88);
	max-width: 580px;
	margin: 0 0 34px;
	line-height: 1.7;
	text-shadow: 0 1px 16px rgba(0,0,0,0.45);
	animation: yg-rise-in 0.9s var(--yg-ease) 0.55s both;
}
.yg-hero2__cta {
	display: flex; gap: 14px; flex-wrap: wrap;
	animation: yg-rise-in 0.9s var(--yg-ease) 0.75s both;
}
.yg-hero2 .yg-btn--ghost {
	border-color: rgba(255, 250, 242, 0.7);
	color: #FFFAF2;
	backdrop-filter: blur(4px);
}
.yg-hero2 .yg-btn--ghost:hover {
	background: rgba(255, 250, 242, 0.14);
	border-color: #fff;
	color: #fff;
}
.yg-hero2__proof {
	display: flex; flex-wrap: wrap; gap: 10px 26px;
	list-style: none; margin: 30px 0 0; padding: 0;
	font-size: 13px; font-weight: 500;
	color: rgba(255, 248, 238, 0.82);
	letter-spacing: 0.02em;
	animation: yg-rise-in 0.9s var(--yg-ease) 0.95s both;
}
.yg-hero2__proof li:first-child { color: var(--yg-real-gold); letter-spacing: 0.05em; }
@keyframes yg-rise-in {
	from { opacity: 0; transform: translateY(22px); }
	to { opacity: 1; transform: none; }
}

/* scroll hint */
.yg-hero2__scrollhint {
	position: absolute;
	left: 50%; bottom: 20px;
	transform: translateX(-50%);
	width: 25px; height: 39px;
	border: 1.5px solid rgba(255, 250, 242, 0.55);
	border-radius: 14px;
	z-index: 1;
}
.yg-hero2__scrollhint span {
	position: absolute;
	left: 50%; top: 8px;
	width: 3px; height: 8px;
	margin-left: -1.5px;
	border-radius: 3px;
	background: #FFFAF2;
	animation: yg-scrollhint 2.1s ease-out infinite;
}
@keyframes yg-scrollhint {
	0% { opacity: 0; transform: translateY(0); }
	35% { opacity: 1; }
	100% { opacity: 0; transform: translateY(15px); }
}

/* parallax drift on pointer (JS toggles vars; graceful without) */
.yg-hero2__media { transform: translate3d(var(--yg-px, 0), var(--yg-py, 0), 0) scale(1.04); transition: transform 1.6s cubic-bezier(0.22, 0.61, 0.36, 1); }
.yg-hero2__media img { animation-duration: 18s; }

@media (prefers-reduced-motion: reduce) {
	.yg-hero2__media img,
	.yg-hero2__word,
	.yg-hero2__word--em,
	.yg-hero2__kicker, .yg-hero2__kline,
	.yg-hero2__sub, .yg-hero2__cta, .yg-hero2__proof,
	.yg-hero2__sparkles i, .yg-hero2__scrollhint span { animation: none !important; opacity: 1 !important; filter: none !important; }
	.yg-hero2__media { transform: none; }
}
@media (max-width: 640px) {
	.yg-hero2 { min-height: 88vh; }
	.yg-hero2__cta .yg-btn { width: 100%; }
	.yg-hero2__proof { gap: 8px 18px; font-size: 12.5px; }
	.yg-hero2__sparkles i:nth-child(4),
	.yg-hero2__sparkles i:nth-child(6) { display: none; }
}

/* ===== section background refinement (premium texture layering) ===== */
.yg-cats {
	background:
		url('../img/texture-sand.jpg') repeat,
		linear-gradient(180deg, var(--yg-bg) 0%, #F5EDDF 55%, var(--yg-bg) 100%);
	background-blend-mode: multiply;
}
.yg-story { background: linear-gradient(180deg, var(--yg-bg), var(--yg-bg-soft) 40%, var(--yg-bg)); }
.yg-finalcta {
	background:
		radial-gradient(760px 400px at 50% -24%, rgba(166, 58, 80, 0.34), transparent 62%),
		linear-gradient(180deg, #241C14, #2E2015);
	color: #F4EFE6;
}
.yg-finalcta h2 { color: #FFFDF9; }
.yg-finalcta p { color: rgba(244, 239, 230, 0.72); }
