/**
 * VICH — header, footer, homepage sections, journal.
 */

/* ==========================================================================
   1. Announcement bar
   ========================================================================== */

.topbar {
	position: relative;
	z-index: calc(var(--z-header) + 1);
	background: var(--navy);
	color: var(--text-on-dark);
	font-size: var(--fs-xs);
	min-height: 40px;
	display: flex;
	align-items: center;
	/* Leave room for the close button so the running text never slides under it. */
	padding-right: calc(var(--gutter) + 34px);
	overflow: hidden;
}

/* Viewport for the moving track: clips the run and fades both edges. */
.topbar__marquee {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.topbar__track {
	display: flex;
	width: max-content;
	text-decoration: none;
	color: inherit;
	animation: vich-topbar 38s linear infinite;
	will-change: transform;
}

/* Each run holds the phrase repeated; the track carries two identical runs. */
.topbar__run {
	display: flex;
	flex: none;
}

.topbar__item {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding-inline: 1.35rem;
}

.topbar__phrase {
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 0.68rem;
	font-weight: 500;
	white-space: nowrap;
}

.topbar__sparkle { color: var(--gold); flex: none; }

/* Pause when the visitor hovers so a link is easy to read and click. */
.topbar:hover .topbar__track { animation-play-state: paused; }

a.topbar__track:hover .topbar__phrase { color: var(--gold-200); }

.topbar__close {
	position: absolute;
	right: var(--gutter);
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	padding: 0;
	background: none;
	border: 0;
	color: var(--text-on-dark-muted);
	cursor: pointer;
	transition: color var(--dur) var(--ease);
}

.topbar__close:hover { color: var(--cream); }

@keyframes vich-topbar {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	/* Hold still and just show the first phrase, centred-ish, no motion. */
	.topbar__track { animation: none; }
}

/* ==========================================================================
   2. Header
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: var(--z-header);
	background: var(--cream);
	border-bottom: 1px solid transparent;
	transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
		box-shadow var(--dur) var(--ease);
}

.vich--transparent-header .site-header { background: transparent; }

.site-header.is-stuck {
	background: rgba(251, 248, 242, 0.92);
	backdrop-filter: saturate(140%) blur(12px);
	-webkit-backdrop-filter: saturate(140%) blur(12px);
	border-bottom-color: var(--line);
	box-shadow: 0 10px 30px -26px rgba(13, 26, 43, 0.5);
}

/* minmax(0, …) on the side tracks: without it the nav's intrinsic width wins
   and the menu runs straight over the centred logo. */
.site-header__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 1rem;
	min-height: var(--header-h);
}

@media (min-width: 1200px) {
	.site-header__inner {
		grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	}
}

.site-header__lead {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-width: 0;
}

.header-actions,
.nav-primary { min-width: 0; }

.nav-secondary .menu { gap: 1.25rem; }

.site-logo {
	margin: 0;
	justify-self: center;
	line-height: 0;
}

.site-logo__link { display: block; }

.site-logo__img {
	width: auto;
	height: 30px;
	transition: height var(--dur) var(--ease);
}

@media (min-width: 900px) {
	.site-logo__img { height: 40px; }
	.is-stuck .site-logo__img { height: 32px; }
}

/* Primary nav (desktop).
   The media query is the no-JS floor; app.js additionally measures the menu
   against the room it actually has and adds .is-compact when it will not fit,
   so a longer menu falls back to the drawer instead of colliding. */
.nav-primary { display: none; }

@media (min-width: 1200px) {
	.nav-primary { display: block; }
}

.site-header.is-compact .nav-primary { display: none; }

.menu {
	display: flex;
	align-items: center;
	gap: clamp(0.85rem, 1.5vw, 2.1rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu__item { position: relative; margin: 0; }

.menu__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.5rem 0;
	color: var(--navy);
	font-size: var(--fs-xs);
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
}

.menu__link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--dur) var(--ease);
}

.menu__item:hover > .menu__link::after,
.menu__item.is-current > .menu__link::after {
	transform: scaleX(1);
	transform-origin: left;
}

/* Tighter tracking on 1280-class laptops so the full nav still fits beside
   the logo rather than dropping to the drawer. */
/* Tighter tracking for the horizontal nav across all desktop widths. Applied
   from 1200px up (not just to 1439px) so the menu's intrinsic width stays
   constant: otherwise it jumps larger at 1440px and initHeaderFit drops a
   7-item menu into the drawer in a mid-range dead zone while it fit at 1366px. */
@media (min-width: 1200px) {
	.menu { gap: clamp(0.6rem, 0.95vw, 1.2rem); }

	.nav-primary .menu__link {
		font-size: 0.75rem;
		letter-spacing: 0.07em;
	}
}

.menu__chevron { transition: transform var(--dur) var(--ease); }
.menu__item:hover > .menu__link .menu__chevron { transform: rotate(180deg); }

.menu__toggle { display: none; }

.menu__sub {
	position: absolute;
	top: calc(100% + 0.65rem);
	left: -1.15rem;
	z-index: 10;
	min-width: 230px;
	margin: 0;
	padding: 0.6rem 0;
	list-style: none;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease),
		visibility var(--dur) var(--ease);
}

.menu__item:hover > .menu__sub,
.menu__item:focus-within > .menu__sub {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.menu__sub .menu__item { width: 100%; }

.menu__sub .menu__link {
	width: 100%;
	padding: 0.6rem 1.15rem;
	letter-spacing: 0.06em;
	text-transform: none;
	font-size: var(--fs-sm);
}

.menu__sub .menu__link::after { display: none; }
.menu__sub .menu__link:hover { background: var(--cream-50); color: var(--gold-600); }

/* Header actions */
.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.25rem;
}

@media (min-width: 900px) {
	.header-actions { gap: 0.4rem; }
}

.header-btn {
	position: relative;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	background: none;
	border: 0;
	border-radius: 50%;
	color: var(--navy);
	cursor: pointer;
	text-decoration: none;
	transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.header-btn:hover {
	background: rgba(27, 48, 80, 0.06);
	color: var(--gold-600);
}

.header-btn__count {
	position: absolute;
	top: 3px;
	right: 2px;
	display: grid;
	place-items: center;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	background: var(--gold);
	color: var(--navy-900);
	border-radius: var(--radius-pill);
	font-size: 0.65rem;
	font-weight: 700;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.header-btn__count.is-empty { display: none; }

.header-btn--menu { margin-left: -8px; }

@media (min-width: 1200px) {
	.header-btn--menu { display: none; }
}

/* Brought back when the measured nav cannot fit. */
.site-header.is-compact .header-btn--menu { display: grid; }

/* ==========================================================================
   3. Drawer (mobile nav + mini cart)
   ========================================================================== */

.overlay {
	position: fixed;
	inset: 0;
	z-index: var(--z-overlay);
	background: rgba(13, 26, 43, 0.45);
	backdrop-filter: blur(2px);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}

.overlay.is-open { opacity: 1; visibility: visible; }

.drawer {
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: var(--z-drawer);
	display: flex;
	flex-direction: column;
	width: min(400px, 88vw);
	background: var(--cream-50);
	box-shadow: var(--shadow-drawer);
	transition: transform var(--dur-slow) var(--ease);
	visibility: hidden;
}

.drawer--nav { left: 0; transform: translateX(-100%); }
.drawer--cart { right: 0; transform: translateX(100%); }

.drawer.is-open { transform: translateX(0); visibility: visible; }

.drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.1rem var(--gutter);
	border-bottom: 1px solid var(--line);
	flex: none;
}

.drawer__title {
	margin: 0;
	font-family: var(--font-body);
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--navy);
}

.drawer__close {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	margin-right: -8px;
	background: none;
	border: 0;
	color: var(--navy);
	cursor: pointer;
	border-radius: 50%;
	transition: background var(--dur) var(--ease);
}

.drawer__close:hover { background: rgba(27, 48, 80, 0.07); }

.drawer__body {
	flex: 1;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 1.25rem var(--gutter) 2rem;
}

.drawer__foot {
	flex: none;
	padding: 1.25rem var(--gutter);
	border-top: 1px solid var(--line);
	background: var(--white);
}

/* Mobile menu inside the drawer */
.nav-mobile .menu {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
}

.nav-mobile .menu__item {
	border-bottom: 1px solid var(--line);
}

.nav-mobile .menu__item--depth-0 > .menu__link {
	padding: 1rem 0;
	font-size: var(--fs-sm);
	letter-spacing: 0.1em;
}

.nav-mobile .menu__link::after { display: none; }
.nav-mobile .menu__chevron { display: none; }

.nav-mobile .menu__item--parent {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
}

.nav-mobile .menu__toggle {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	background: none;
	border: 0;
	color: var(--navy);
	cursor: pointer;
	transition: transform var(--dur) var(--ease);
}

.nav-mobile .menu__toggle[aria-expanded="true"] { transform: rotate(180deg); }

.nav-mobile .menu__sub {
	position: static;
	grid-column: 1 / -1;
	min-width: 0;
	padding: 0 0 0.75rem 0.9rem;
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
	opacity: 1;
	visibility: visible;
	transform: none;
	display: none;
}

.nav-mobile .menu__sub.is-open { display: block; }
.nav-mobile .menu__sub .menu__item { border: 0; }
.nav-mobile .menu__sub .menu__link { padding: 0.55rem 0; }

.drawer-contact {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
	font-size: var(--fs-sm);
}

.drawer-contact__row {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 0.75rem;
	color: var(--text-muted);
}

.drawer-contact__row .vich-icon { color: var(--gold); flex: none; }

.drawer-social {
	display: flex;
	gap: 0.5rem;
	margin-top: 1.25rem;
}

.drawer-social a {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--navy);
	transition: all var(--dur) var(--ease);
}

.drawer-social a:hover {
	background: var(--navy);
	border-color: var(--navy);
	color: var(--cream);
}

/* ==========================================================================
   4. Search panel
   ========================================================================== */

.search-panel {
	position: fixed;
	inset: 0 0 auto;
	z-index: var(--z-drawer);
	padding: clamp(3rem, 10vh, 7rem) 0 3rem;
	background: var(--cream-50);
	border-bottom: 1px solid var(--line);
	box-shadow: var(--shadow-lg);
	transform: translateY(-100%);
	visibility: hidden;
	transition: transform var(--dur-slow) var(--ease), visibility var(--dur-slow) var(--ease);
}

.search-panel.is-open { transform: translateY(0); visibility: visible; }

.search-panel__form {
	display: flex;
	align-items: center;
	gap: 1rem;
	border-bottom: 1px solid var(--line-strong);
	padding-bottom: 0.75rem;
}

.search-panel__input {
	flex: 1;
	min-height: 0;
	padding: 0.5rem 0;
	background: none;
	border: 0;
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 4vw, 2.6rem);
	color: var(--navy);
}

.search-panel__input:focus { box-shadow: none; border: 0; }
.search-panel__input::placeholder { color: rgba(27, 48, 80, 0.3); }

.search-panel__hint {
	margin-top: 1rem;
	font-size: var(--fs-xs);
	color: var(--text-muted);
	letter-spacing: 0.06em;
}

/* Suggestion popup */
.search-suggest {
	margin-top: 1.15rem;
	max-height: min(60vh, 520px);
	overflow-y: auto;
	overscroll-behavior: contain;
	border-top: 1px solid var(--line);
}

.search-suggest[hidden] { display: none; }

.search-suggest__group { padding-top: 0.85rem; }
.search-suggest__group + .search-suggest__group { border-top: 1px solid var(--line); }

.search-suggest__label {
	margin: 0 0 0.35rem;
	padding: 0 0.35rem;
	font-family: var(--font-body);
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold-600);
}

.search-suggest__item {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 0.7rem 0.35rem;
	border-radius: var(--radius-xs);
	text-decoration: none;
	color: var(--navy);
	transition: background var(--dur) var(--ease);
}

.search-suggest__item.is-active,
.search-suggest__item:hover {
	background: var(--cream-200);
}

.search-suggest__thumb {
	flex: none;
	width: 46px;
	height: 56px;
	display: grid;
	place-items: center;
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--line);
}

.search-suggest__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 0.2rem;
}

.search-suggest__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.search-suggest__title {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.25;
	color: var(--navy);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.search-suggest__meta {
	font-size: var(--fs-xs);
	color: var(--text-muted);
	letter-spacing: 0.04em;
}

.search-suggest__item--post .search-suggest__title { white-space: normal; }

.search-suggest__price {
	flex: none;
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--navy);
	white-space: nowrap;
}

.search-suggest__price del {
	display: none;
}

.search-suggest__all {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
	margin-top: 0.5rem;
	padding: 0.9rem 0.35rem;
	border-top: 1px solid var(--line);
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--navy);
	text-decoration: none;
	transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}

.search-suggest__all.is-active,
.search-suggest__all:hover {
	color: var(--gold-600);
	padding-left: 0.6rem;
}

.search-suggest__all .vich-icon { transition: transform var(--dur) var(--ease); }
.search-suggest__all.is-active .vich-icon,
.search-suggest__all:hover .vich-icon { transform: translateX(3px); }

.search-suggest__loading,
.search-suggest__empty {
	padding: 1.25rem 0.35rem;
	font-size: var(--fs-sm);
	color: var(--text-muted);
}

.search-suggest__empty strong { color: var(--navy); font-weight: 600; }

.search-suggest__loading {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.search-suggest__loading::before {
	content: "";
	width: 15px;
	height: 15px;
	border: 2px solid var(--line);
	border-top-color: var(--gold);
	border-radius: 50%;
	animation: vich-spin-search 0.7s linear infinite;
}

/* Self-contained: the identically named keyframe in woocommerce.css only loads
   on shop pages, but the search box lives in the header everywhere. */
@keyframes vich-spin-search {
	to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
	.search-suggest__loading::before { animation: none; }
}

.search-panel__close {
	position: absolute;
	top: 1.5rem;
	right: var(--gutter);
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	background: none;
	border: 0;
	color: var(--navy);
	cursor: pointer;
}

/* ==========================================================================
   5. Toast
   ========================================================================== */

.toast-stack {
	position: fixed;
	right: var(--gutter);
	bottom: calc(var(--gutter) + env(safe-area-inset-bottom, 0px));
	z-index: var(--z-toast);
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	pointer-events: none;
}

.toast {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	max-width: min(360px, calc(100vw - var(--gutter) * 2));
	padding: 0.9rem 1.15rem;
	background: var(--navy);
	color: var(--cream);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg);
	font-size: var(--fs-sm);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.toast.is-visible { opacity: 1; transform: none; }
.toast .vich-icon { color: var(--gold); flex: none; }
.toast--error { background: var(--danger); }
.toast--error .vich-icon { color: var(--white); }

/* ==========================================================================
   6. Hero
   ========================================================================== */

.hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(2.5rem, 7vw, 6rem) clamp(3rem, 7vw, 6.5rem);
	background:
		radial-gradient(120% 90% at 78% 12%, rgba(232, 213, 172, 0.4) 0%, transparent 58%),
		radial-gradient(90% 70% at 0% 100%, rgba(27, 48, 80, 0.06) 0%, transparent 60%),
		var(--cream);
}

.hero__inner {
	display: grid;
	gap: clamp(2.5rem, 5vw, 4rem);
	align-items: center;
}

@media (min-width: 900px) {
	.hero__inner {
		grid-template-columns: 1.02fr 0.98fr;
		gap: clamp(2rem, 4vw, 5rem);
	}
}

.hero__content { max-width: 36rem; }

.hero__title {
	margin-bottom: 1.15rem;
	font-size: var(--fs-h1);
	line-height: 1.04;
	letter-spacing: -0.015em;
}

.hero__title em {
	font-style: italic;
	color: var(--gold-600);
}

.hero__text {
	max-width: 34rem;
	margin-bottom: 2rem;
	font-size: var(--fs-lead);
	color: var(--text);
	line-height: 1.75;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 2.25rem;
}

/* Equal-width, full-bleed buttons read better than ragged ones on a phone. */
@media (max-width: 559px) {
	.hero__actions .btn { flex: 1 1 100%; }
}

.hero__assurances {
	display: grid;
	gap: 0.7rem;
	margin: 0;
	padding: 1.5rem 0 0;
	border-top: 1px solid var(--line);
	list-style: none;
}

.hero__assurances li {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin: 0;
	font-size: var(--fs-sm);
	color: var(--text-muted);
}

.hero__assurances .vich-icon { color: var(--gold); flex: none; }

/* Hero visual */
.hero__visual {
	position: relative;
	justify-self: center;
	width: 100%;
	max-width: 520px;
}

.hero__frame {
	position: relative;
	padding: clamp(1.5rem, 4vw, 2.75rem);
}

.hero__frame::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid var(--gold);
	opacity: 0.5;
	transform: translate(14px, 14px);
	pointer-events: none;
}

/* Keep the offset frame clear of the screen edge on small phones. */
@media (max-width: 480px) {
	.hero__frame::before { transform: translate(8px, 8px); }
}

.hero__frame::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, var(--white), var(--cream-200));
	border: 1px solid var(--line);
}

.hero__media {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: contain;
	filter: drop-shadow(0 30px 40px rgba(13, 26, 43, 0.18));
}

.hero__stamp {
	position: absolute;
	z-index: 2;
	right: -6px;
	bottom: 8%;
	display: grid;
	place-items: center;
	width: clamp(96px, 22vw, 136px);
	height: clamp(96px, 22vw, 136px);
	padding: 0.5rem;
	background: var(--navy);
	color: var(--cream);
	border-radius: 50%;
	text-align: center;
	box-shadow: var(--shadow-lg);
}

.hero__stamp strong {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(1.7rem, 4vw, 2.3rem);
	line-height: 1;
	color: var(--gold-200);
}

.hero__stamp span {
	display: block;
	margin-top: 0.2rem;
	font-size: 0.6rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	line-height: 1.3;
}

/* ==========================================================================
   7. Marquee
   ========================================================================== */

.marquee {
	overflow: hidden;
	padding-block: 1.15rem;
	background: var(--navy);
	color: var(--cream);
	border-block: 1px solid var(--navy-700);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
	display: flex;
	width: max-content;
	animation: vich-marquee 42s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__group {
	display: flex;
	align-items: center;
	flex: none;
}

.marquee__item {
	display: inline-flex;
	align-items: center;
	gap: 1.75rem;
	padding-right: 1.75rem;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	white-space: nowrap;
}

.marquee__item .vich-icon { color: var(--gold); }

@keyframes vich-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.marquee__track { animation: none; }
}

/* ==========================================================================
   7b. Brand introduction
   ========================================================================== */

.about {
	display: grid;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: center;
}

@media (min-width: 900px) {
	.about { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }
}

.about__card {
	position: relative;
	padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
	background: var(--navy);
	color: var(--text-on-dark);
	text-align: center;
	overflow: hidden;
}

.about__card::before {
	content: "";
	position: absolute;
	top: -90px;
	right: -90px;
	width: 240px;
	height: 240px;
	border: 1px solid rgba(194, 152, 79, 0.25);
	border-radius: 50%;
	pointer-events: none;
}

.about__logo {
	width: clamp(160px, 24vw, 230px);
	margin: 0 auto 1.5rem;
	position: relative;
}

.about__tagline {
	margin: 0 0 1.75rem;
	font-size: var(--fs-sm);
	color: var(--text-on-dark-muted);
	position: relative;
}

.about__marks {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	margin: 0;
	padding: 0;
	list-style: none;
	background: rgba(236, 229, 216, 0.16);
	border: 1px solid rgba(236, 229, 216, 0.16);
	position: relative;
}

.about__marks li {
	display: grid;
	gap: 0.15rem;
	margin: 0;
	padding: 1rem 0.5rem;
	background: var(--navy);
	justify-items: center;
}

.about__mark-icon {
	color: var(--gold);
	margin-bottom: 0.35rem;
}

.about__marks strong {
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--cream);
}

.about__marks span {
	font-size: 0.62rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-on-dark-muted);
}

.about__title {
	margin-bottom: 1.25rem;
	font-size: var(--fs-h2);
}

.about__title em { font-style: italic; color: var(--gold-600); }

.about__text {
	font-size: var(--fs-lead);
	line-height: 1.8;
	color: var(--text-muted);
}

.about__text p + p { margin-top: 1.1em; }

/* ==========================================================================
   8. Pillars
   ========================================================================== */

.pillars {
	display: grid;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

@media (min-width: 640px) {
	.pillars { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
	.pillars { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
	.pillars { grid-template-columns: repeat(5, 1fr); }
}

.pillar {
	padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 1.85rem);
	background: var(--cream-50);
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	transition: background var(--dur) var(--ease);
}

.pillar:hover { background: var(--white); }

.pillar__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin-bottom: 1.25rem;
	border: 1px solid var(--gold);
	border-radius: 50%;
	color: var(--gold-600);
}

.pillar__title {
	margin-bottom: 0.5rem;
	font-size: var(--fs-h5);
	font-family: var(--font-display);
	font-weight: 600;
}

.pillar__text {
	margin: 0;
	font-size: var(--fs-sm);
	color: var(--text-muted);
	line-height: 1.65;
}

/* ==========================================================================
   9. Nutrition grid (19 kandungan)
   ========================================================================== */

/* Presented as a spec panel: a bordered sheet holding two columns of hairline
   rows, capped at a comfortable measure so it never sprawls across a wide
   screen the way a full-width card grid did. */
.nutrient-panel {
	max-width: 62rem;
	margin-inline: auto;
	padding: clamp(1.25rem, 3vw, 2.25rem) clamp(1.25rem, 3vw, 2.5rem);
	background: var(--cream-50);
	border: 1px solid var(--line);
	position: relative;
}

/* Hairline corner marks, like a printed label. */
.nutrient-panel::before,
.nutrient-panel::after {
	content: "";
	position: absolute;
	width: 14px;
	height: 14px;
	border: 1px solid var(--gold);
	opacity: 0.55;
	pointer-events: none;
}

.nutrient-panel::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.nutrient-panel::after { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }

.nutrient-panel__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 0.85rem;
	margin-bottom: 0.25rem;
	border-bottom: 2px solid var(--navy);
	font-family: var(--font-body);
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.nutrient-index {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 760px) {
	.nutrient-index {
		/* Column-major so the numbering reads down, then across. */
		grid-auto-flow: column;
		grid-template-rows: repeat(var(--rows, 10), auto);
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: clamp(2rem, 4vw, 3.75rem);
	}
}

.nutrient {
	display: grid;
	grid-template-columns: 1.9rem minmax(0, 1fr) auto;
	align-items: baseline;
	gap: 0 0.75rem;
	padding: 0.82rem 0.3rem;
	border-bottom: 1px solid var(--line);
	transition: background var(--dur) var(--ease);
}

.nutrient:hover { background: var(--white); }

.nutrient__no {
	font-family: var(--font-display);
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--gold);
	letter-spacing: 0.06em;
	font-variant-numeric: tabular-nums;
}

.nutrient__name {
	margin: 0;
	/* Body face here: Cormorant's small x-height is hard to read at this size. */
	font-family: var(--font-body);
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--navy);
	line-height: 1.45;
	letter-spacing: 0;
}

.nutrient__amount {
	font-family: var(--font-display);
	font-size: 1.18rem;
	font-weight: 600;
	color: var(--text-muted);
	white-space: nowrap;
	text-align: right;
	transition: color var(--dur) var(--ease);
}

.nutrient:hover .nutrient__amount { color: var(--navy); }

.nutrient-panel__note {
	margin: 1.25rem 0 0;
	padding-top: 1rem;
	border-top: 1px solid var(--line);
	font-size: var(--fs-xs);
	color: var(--text-muted);
}

.nutrients-note {
	margin-top: 1.25rem;
	font-size: var(--fs-xs);
	color: var(--text-muted);
}

/* ==========================================================================
   10. Composition
   ========================================================================== */

.composition {
	display: grid;
	gap: clamp(2rem, 4vw, 3.5rem);
}

@media (min-width: 900px) {
	.composition { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
}

.composition__list {
	margin: 0;
	padding: 0;
	list-style: none;
	column-gap: 2.5rem;
}

@media (min-width: 640px) {
	.composition__list { columns: 2; }
}

@media (min-width: 900px) {
	.composition__list { columns: 2; }
}

.composition__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	margin-bottom: 0.85rem;
	font-size: var(--fs-sm);
	color: var(--text);
	break-inside: avoid;
}

.composition__list .vich-icon {
	flex: none;
	margin-top: 0.28em;
	color: var(--gold);
}

.premix-card {
	padding: clamp(1.5rem, 3vw, 2.25rem);
	background: var(--navy);
	color: var(--text-on-dark);
	border-radius: var(--radius-sm);
}

.premix-card h3 {
	margin-bottom: 1.25rem;
	color: var(--cream);
	font-size: var(--fs-h4);
}

.premix-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.premix-card li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.7rem 0;
	border-bottom: 1px solid rgba(236, 229, 216, 0.16);
	font-size: var(--fs-sm);
	margin: 0;
}

.premix-card li:last-child { border-bottom: 0; }
.premix-card li .vich-icon { color: var(--gold); flex: none; }

/* ==========================================================================
   11. Serving steps
   ========================================================================== */

.steps {
	display: grid;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	counter-reset: step;
}

@media (min-width: 900px) {
	.steps { grid-template-columns: repeat(3, 1fr); }
}

.step {
	position: relative;
	text-align: center;
	padding: 0 1rem;
}

@media (min-width: 900px) {
	.step:not(:last-child)::after {
		content: "";
		position: absolute;
		top: 42px;
		right: -1.25rem;
		width: 2.5rem;
		height: 1px;
		background: var(--line);
	}
}

.step__ring {
	display: grid;
	place-items: center;
	width: 84px;
	height: 84px;
	margin: 0 auto 1.35rem;
	border: 1px solid var(--gold);
	border-radius: 50%;
	color: var(--gold-600);
	position: relative;
}

.step__ring::after {
	content: "";
	position: absolute;
	inset: 6px;
	border: 1px solid rgba(194, 152, 79, 0.28);
	border-radius: 50%;
}

.step__no {
	position: absolute;
	top: -6px;
	right: -6px;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	background: var(--navy);
	color: var(--gold-200);
	border-radius: 50%;
	font-family: var(--font-display);
	font-size: 0.85rem;
	font-weight: 600;
}

.step__title { margin-bottom: 0.5rem; font-size: var(--fs-h5); }
.step__text { margin: 0; font-size: var(--fs-sm); color: var(--text-muted); }

.serving-note {
	max-width: 46rem;
	margin: clamp(2.5rem, 4vw, 3.5rem) auto 0;
	padding: 1.25rem 1.5rem;
	background: var(--cream-200);
	border-left: 2px solid var(--gold);
	font-size: var(--fs-sm);
	color: var(--text);
	text-align: center;
}

/* ==========================================================================
   12. Moments
   ========================================================================== */

.moments {
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.moments { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
	.moments { grid-template-columns: repeat(4, 1fr); }
}

.moment {
	padding: clamp(1.5rem, 3vw, 2rem);
	background: rgba(246, 241, 231, 0.06);
	border: 1px solid rgba(236, 229, 216, 0.18);
	border-radius: var(--radius-sm);
	transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.moment:hover {
	background: rgba(246, 241, 231, 0.1);
	border-color: rgba(194, 152, 79, 0.5);
}

.moment__icon { margin-bottom: 1rem; color: var(--gold); }
.moment__title { margin-bottom: 0.4rem; font-size: var(--fs-h5); color: var(--cream); }
.moment__text { margin: 0; font-size: var(--fs-sm); color: var(--text-on-dark-muted); }

/* ==========================================================================
   13. Nutrition facts
   ========================================================================== */

.facts {
	display: grid;
	gap: clamp(2rem, 4vw, 3rem);
	align-items: start;
}

@media (min-width: 900px) {
	.facts { grid-template-columns: 0.9fr 1.1fr; }
}

.facts__panel {
	padding: clamp(1.5rem, 3vw, 2.25rem);
	background: var(--white);
	border: 1px solid var(--line);
}

.facts__head {
	padding-bottom: 1rem;
	margin-bottom: 0.5rem;
	border-bottom: 2px solid var(--navy);
}

.facts__head h3 {
	margin-bottom: 0.75rem;
	font-family: var(--font-body);
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--navy);
}

.facts__meta {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	font-size: var(--fs-sm);
	color: var(--text-muted);
	margin: 0;
}

.facts__meta strong { color: var(--navy); font-weight: 600; }

.facts__table { width: 100%; font-size: var(--fs-sm); }

.facts__table th {
	padding: 0.55rem 0;
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-muted);
	text-align: left;
	border-bottom: 1px solid var(--line);
}

.facts__table th:last-child,
.facts__table td:last-child { text-align: right; }

.facts__table td {
	padding: 0.7rem 0;
	border-bottom: 1px solid var(--line);
	font-variant-numeric: tabular-nums;
}

.facts__table tr:last-child td { border-bottom: 0; }
.facts__table td:first-child { color: var(--navy); font-weight: 500; }

.facts__note {
	margin: 1rem 0 0;
	font-size: 0.72rem;
	color: var(--text-muted);
	line-height: 1.6;
}

.facts__side .warnings {
	margin: 0 0 2rem;
	padding: 0;
	list-style: none;
}

.warnings li {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 0.9rem;
	font-size: var(--fs-sm);
	color: var(--text-muted);
	line-height: 1.6;
}

.warnings .vich-icon { flex: none; margin-top: 0.2em; color: var(--gold); }

.certs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}

@media (min-width: 640px) {
	.certs { grid-template-columns: repeat(4, 1fr); }
}

.cert {
	display: grid;
	place-items: center;
	gap: 0.15rem;
	padding: 1.35rem 0.75rem;
	background: var(--cream-50);
	text-align: center;
}

.cert__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: 0.6rem;
	border: 1px solid var(--gold);
	border-radius: 50%;
	color: var(--gold-600);
	transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
		color var(--dur) var(--ease);
}

.cert:hover .cert__icon {
	transform: translateY(-2px);
	background: var(--gold);
	color: var(--navy-900);
}

.cert__label {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--navy);
	letter-spacing: 0.02em;
}

.cert__sub {
	font-size: 0.66rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-muted);
}

/* ==========================================================================
   14. Testimonials
   ========================================================================== */

.testimonials {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 640px) {
	.testimonials { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
	.testimonials { grid-template-columns: repeat(3, 1fr); }
}

.testimonial {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: clamp(1.75rem, 3vw, 2.25rem);
	background: var(--white);
	border: 1px solid var(--line);
}

.testimonial__quote { color: var(--gold-200); }

.testimonial__text {
	flex: 1;
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
	font-style: italic;
	line-height: 1.55;
	color: var(--navy);
}

.testimonial__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--line);
}

.testimonial__author {
	margin: 0;
	font-size: var(--fs-sm);
	font-weight: 600;
	color: var(--navy);
}

.testimonial__product {
	margin: 0;
	font-size: var(--fs-xs);
	color: var(--text-muted);
}

/* ==========================================================================
   15. Journal cards
   ========================================================================== */

.posts {
	display: grid;
	gap: clamp(1.75rem, 3vw, 2.5rem);
}

@media (min-width: 640px) {
	.posts { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
	.posts--3 { grid-template-columns: repeat(3, 1fr); }
}

.post-card { display: flex; flex-direction: column; }

.post-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--cream-200);
	margin-bottom: 1.25rem;
}

.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--dur-slow) var(--ease);
}

.post-card:hover .post-card__media img { transform: scale(1.04); }

.post-card__cat {
	position: absolute;
	left: 1rem;
	top: 1rem;
	z-index: 1;
}

.post-card__title {
	margin-bottom: 0.65rem;
	font-size: var(--fs-h4);
	line-height: 1.25;
}

.post-card__title a { text-decoration: none; color: inherit; }
.post-card__title a:hover { color: var(--gold-600); }

.post-card__excerpt {
	margin-bottom: 1rem;
	font-size: var(--fs-sm);
	color: var(--text-muted);
}

.entry-meta {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin: 0 0 0.6rem;
	font-size: var(--fs-xs);
	letter-spacing: 0.06em;
	color: var(--text-muted);
	text-transform: uppercase;
}

.entry-meta__dot { color: var(--gold); }

/* ==========================================================================
   16. FAQ accordion
   ========================================================================== */

.faq {
	max-width: 56rem;
	margin-inline: auto;
	border-top: 1px solid var(--line);
}

.faq__item { border-bottom: 1px solid var(--line); }

.faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	width: 100%;
	padding: 1.5rem 0;
	background: none;
	border: 0;
	color: var(--navy);
	font-family: var(--font-display);
	font-size: clamp(1.15rem, 1rem + 0.6vw, 1.5rem);
	font-weight: 500;
	line-height: 1.35;
	text-align: left;
	cursor: pointer;
	transition: color var(--dur) var(--ease);
}

.faq__q:hover { color: var(--gold-600); }

.faq__sign {
	position: relative;
	flex: none;
	width: 22px;
	height: 22px;
	color: var(--gold);
}

.faq__sign::before,
.faq__sign::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	background: currentColor;
	transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.faq__sign::before {
	width: 16px;
	height: 1.5px;
	transform: translate(-50%, -50%);
}

.faq__sign::after {
	width: 1.5px;
	height: 16px;
	transform: translate(-50%, -50%);
}

.faq__q[aria-expanded="true"] .faq__sign::after {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}

.faq__a {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows var(--dur-slow) var(--ease);
}

.faq__item.is-open .faq__a { grid-template-rows: 1fr; }

.faq__a > div { overflow: hidden; }

.faq__a p {
	margin: 0;
	padding: 0 3rem 1.75rem 0;
	color: var(--text-muted);
	line-height: 1.75;
}

.faq__heading { margin: 0; }

/* ==========================================================================
   16b. FAQ page (page-faq.php)
   ========================================================================== */

.faq-page {
	display: grid;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: start;
}

@media (min-width: 900px) {
	.faq-page { grid-template-columns: 264px minmax(0, 1fr); }
}

/* Category rail: sticky list on desktop. */
.faq-nav { min-width: 0; }

@media (min-width: 900px) {
	.faq-nav {
		position: sticky;
		top: calc(var(--header-h) + 1.5rem);
	}
}

.faq-nav__label {
	margin: 0 0 1rem;
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold-600);
}

.faq-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.faq-nav__list li { margin: 0; }

.faq-nav__list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.85rem 1rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-xs);
	background: var(--cream-50);
	color: var(--navy);
	font-size: var(--fs-sm);
	font-weight: 500;
	text-decoration: none;
	transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease),
		color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.faq-nav__list li + li { margin-top: 0.5rem; }

.faq-nav__list a:hover,
.faq-nav__list a.is-current {
	border-color: var(--gold);
	color: var(--gold-600);
	transform: translateX(2px);
}

.faq-nav__count {
	flex: none;
	display: grid;
	place-items: center;
	min-width: 24px;
	height: 24px;
	padding: 0 6px;
	background: var(--navy);
	color: var(--cream);
	border-radius: var(--radius-pill);
	font-size: 0.68rem;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.faq-nav__list a:hover .faq-nav__count,
.faq-nav__list a.is-current .faq-nav__count {
	background: var(--gold);
	color: var(--navy-900);
}

.faq-nav__help {
	margin-top: 1.5rem;
	padding: 1.35rem;
	background: var(--navy);
	color: var(--text-on-dark);
	border-radius: var(--radius-sm);
}

.faq-nav__help-title {
	margin: 0 0 0.35rem;
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--cream);
}

.faq-nav__help-text {
	margin: 0 0 1rem;
	font-size: var(--fs-xs);
	color: var(--text-on-dark-muted);
	line-height: 1.6;
}

/* Body column: category groups. */
.faq-page__body { min-width: 0; }

.faq-group + .faq-group { margin-top: clamp(2.5rem, 5vw, 3.5rem); }

.faq-group__title {
	margin: 0 0 0.5rem;
	font-size: var(--fs-h3);
}

/* Inside the page the accordion fills its column instead of the centred,
   narrow treatment used on the homepage. */
.faq-group .faq {
	max-width: none;
	margin-inline: 0;
}

/* Closing call to action card. */
.faq-cta {
	max-width: 44rem;
	margin-inline: auto;
	padding: clamp(2rem, 5vw, 3.25rem);
	background: var(--cream-50);
	border: 1px solid var(--line);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.faq-cta::before {
	content: "";
	position: absolute;
	top: -80px;
	right: -80px;
	width: 200px;
	height: 200px;
	border: 1px solid var(--gold);
	opacity: 0.25;
	border-radius: 50%;
	pointer-events: none;
}

.faq-cta__mark { color: var(--gold); margin-bottom: 0.75rem; }

.faq-cta__title {
	margin: 0 0 0.75rem;
	font-size: var(--fs-h3);
}

.faq-cta__text {
	max-width: 32rem;
	margin: 0 auto 1.75rem;
	color: var(--text-muted);
	font-size: var(--fs-lead);
}

.faq-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

/* Mobile: the rail becomes a scrollable chip row above the questions. */
@media (max-width: 899px) {
	.faq-nav__label,
	.faq-nav__help { display: none; }

	.faq-nav__list {
		display: flex;
		gap: 0.5rem;
		overflow-x: auto;
		overscroll-behavior-x: contain;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 0.35rem;
		scrollbar-width: none;
	}

	.faq-nav__list::-webkit-scrollbar { display: none; }
	.faq-nav__list li + li { margin-top: 0; }

	.faq-nav__list a {
		white-space: nowrap;
		padding: 0.6rem 0.9rem;
		border-radius: var(--radius-pill);
	}

	.faq-nav__list a:hover,
	.faq-nav__list a.is-current { transform: none; }
}

@media (max-width: 559px) {
	.faq-cta__actions .btn { flex: 1 1 100%; }
}

/* ==========================================================================
   17. CTA band
   ========================================================================== */

.cta-band {
	position: relative;
	overflow: hidden;
	background: var(--navy);
	color: var(--text-on-dark);
	text-align: center;
}

.cta-band::before,
.cta-band::after {
	content: "";
	position: absolute;
	width: 380px;
	height: 380px;
	border: 1px solid rgba(194, 152, 79, 0.2);
	border-radius: 50%;
	pointer-events: none;
}

.cta-band::before { top: -160px; left: -110px; }
.cta-band::after { bottom: -190px; right: -120px; }

.cta-band__inner {
	position: relative;
	z-index: 1;
	max-width: 44rem;
	margin-inline: auto;
}

.cta-band__title {
	margin-bottom: 1rem;
	color: var(--cream);
	font-size: var(--fs-h2);
}

.cta-band__text {
	margin-bottom: 2rem;
	color: var(--text-on-dark-muted);
	font-size: var(--fs-lead);
}

.cta-band .btn--gold:hover { color: var(--navy-900); }

/* ==========================================================================
   18. Newsletter
   ========================================================================== */

.newsletter__form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	max-width: 28rem;
}

.newsletter__form input[type="email"] {
	flex: 1 1 12rem;
	min-height: 50px;
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(236, 229, 216, 0.32);
	border-radius: 0;
	color: var(--cream);
	padding-inline: 0;
}

.newsletter__form input[type="email"]::placeholder { color: rgba(236, 229, 216, 0.45); }

.newsletter__form input[type="email"]:focus {
	border-color: var(--gold);
	box-shadow: none;
}

.newsletter__note {
	margin-top: 0.85rem;
	font-size: var(--fs-xs);
	color: var(--text-on-dark-muted);
}

/* ==========================================================================
   19. Footer
   ========================================================================== */

.site-footer {
	background: var(--navy);
	color: var(--text-on-dark);
	padding-top: clamp(3rem, 6vw, 5rem);
}

.site-footer :is(h2, h3, h4) { color: var(--cream); }

.footer-top {
	display: grid;
	gap: clamp(2rem, 4vw, 3rem);
	padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
	border-bottom: 1px solid rgba(236, 229, 216, 0.14);
}

@media (min-width: 900px) {
	.footer-top { grid-template-columns: 1.15fr 0.85fr; align-items: center; }
}

.footer-brand__logo { width: clamp(150px, 22vw, 210px); margin-bottom: 1.35rem; }
.footer-brand__text { max-width: 34rem; color: var(--text-on-dark-muted); margin: 0; }

.footer-main {
	display: grid;
	gap: clamp(2rem, 4vw, 3rem);
	padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

@media (min-width: 640px) {
	.footer-main { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
	.footer-main { grid-template-columns: repeat(4, 1fr); }
}

.footer-col__title {
	margin-bottom: 1.25rem;
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold-200);
}

.footer-col ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-col li { margin-bottom: 0.7rem; }

.footer-col a {
	color: var(--text-on-dark);
	font-size: var(--fs-sm);
	text-decoration: none;
	transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}

.footer-col a:hover { color: var(--gold-200); padding-left: 4px; }

.footer-contact li {
	display: flex;
	gap: 0.7rem;
	font-size: var(--fs-sm);
	color: var(--text-on-dark-muted);
	line-height: 1.6;
}

.footer-contact .vich-icon { flex: none; margin-top: 0.25em; color: var(--gold); }
.footer-contact a { color: var(--text-on-dark-muted); }
.footer-contact a:hover { color: var(--gold-200); padding-left: 0; }

.footer-pending {
	font-size: var(--fs-sm);
	color: var(--text-on-dark-muted);
	font-style: italic;
}

.footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.35rem;
}

.footer-social a {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(236, 229, 216, 0.24);
	border-radius: 50%;
	color: var(--text-on-dark);
	transition: all var(--dur) var(--ease);
}

.footer-social a:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy-900);
	padding-left: 0;
}

.footer-certs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	padding-block: clamp(1.5rem, 3vw, 2rem);
	border-top: 1px solid rgba(236, 229, 216, 0.14);
}

.footer-cert {
	padding: 0.45rem 0.9rem;
	border: 1px solid rgba(236, 229, 216, 0.22);
	border-radius: var(--radius-xs);
	font-size: 0.66rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-on-dark-muted);
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-block: 1.75rem;
	border-top: 1px solid rgba(236, 229, 216, 0.14);
	font-size: var(--fs-xs);
	color: var(--text-on-dark-muted);
}

@media (min-width: 900px) {
	.footer-bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.footer-bottom p { margin: 0; }

.footer-legal {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-legal li { margin: 0; }

.footer-legal a {
	color: var(--text-on-dark-muted);
	text-decoration: none;
	font-size: var(--fs-xs);
}

.footer-legal a:hover { color: var(--gold-200); }

/* ==========================================================================
   20. Floating WhatsApp
   ========================================================================== */

.wa-float {
	position: fixed;
	right: clamp(1rem, 3vw, 1.75rem);
	bottom: calc(clamp(1rem, 3vw, 1.75rem) + env(safe-area-inset-bottom, 0px));
	z-index: 90;
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	background: #25d366;
	color: #fff;
	border-radius: 50%;
	box-shadow: 0 12px 28px -10px rgba(37, 211, 102, 0.7);
	transition: transform var(--dur) var(--ease);
}

.wa-float:hover { transform: scale(1.06); color: #fff; }

body.has-sticky-atc .wa-float { bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }

@media (min-width: 900px) {
	body.has-sticky-atc .wa-float { bottom: clamp(1rem, 3vw, 1.75rem); }
}

/* ==========================================================================
   21. Page header / breadcrumb
   ========================================================================== */

.page-hero {
	padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3.5rem);
	background:
		radial-gradient(80% 120% at 100% 0%, rgba(232, 213, 172, 0.35), transparent 60%),
		var(--cream-200);
	border-bottom: 1px solid var(--line);
	text-align: center;
}

.page-hero__title { margin-bottom: 0; }

.page-hero__lead {
	max-width: 46rem;
	margin: 1rem auto 0;
	color: var(--text-muted);
	font-size: var(--fs-lead);
}

.breadcrumb { margin-bottom: 1.25rem; }

.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: var(--fs-xs);
	color: var(--text-muted);
}

.breadcrumb__item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	letter-spacing: 0.06em;
}

.breadcrumb__item a { color: var(--text-muted); text-decoration: none; }
.breadcrumb__item a:hover { color: var(--gold-600); }
.breadcrumb__item--current { color: var(--navy); font-weight: 500; }
.breadcrumb__sep { opacity: 0.5; }

/* Left-aligned variant used on the shop */
.breadcrumb--left .breadcrumb__list { justify-content: flex-start; }

/* ==========================================================================
   22. Journal single & archive
   ========================================================================== */

.entry-hero {
	padding-block: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem);
	text-align: center;
}

.entry-hero__title { max-width: 22ch; margin-inline: auto; }

.entry-featured {
	margin-bottom: clamp(2rem, 4vw, 3rem);
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.entry-featured img { width: 100%; height: 100%; object-fit: cover; }

.entry-layout {
	display: grid;
	gap: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 1024px) {
	.vich:not(.vich--no-sidebar) .entry-layout {
		grid-template-columns: minmax(0, 1fr) 300px;
	}
}

.widget {
	padding-bottom: 1.75rem;
	margin-bottom: 1.75rem;
	border-bottom: 1px solid var(--line);
}

.widget__title {
	margin-bottom: 1rem;
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--navy);
}

.widget ul { margin: 0; padding: 0; list-style: none; }
.widget li { margin-bottom: 0.6rem; font-size: var(--fs-sm); }
.widget a { text-decoration: none; }

.entry-share {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 2.5rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--line);
}

.entry-share__label {
	font-size: var(--fs-xs);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.entry-share a {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--navy);
	transition: all var(--dur) var(--ease);
}

.entry-share a:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }

/* ==========================================================================
   23. Pagination
   ========================================================================== */

.pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	margin-top: clamp(2.5rem, 5vw, 4rem);
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	min-width: 44px;
	height: 44px;
	padding: 0 0.85rem;
	justify-content: center;
	border: 1px solid var(--line);
	color: var(--navy);
	font-size: var(--fs-sm);
	text-decoration: none;
	transition: all var(--dur) var(--ease);
}

.pagination .page-numbers:hover {
	border-color: var(--navy);
	background: var(--navy);
	color: var(--cream);
}

.pagination .page-numbers.current {
	background: var(--navy);
	border-color: var(--navy);
	color: var(--cream);
}

.pagination .page-numbers.dots {
	border-color: transparent;
	pointer-events: none;
}

/* ==========================================================================
   24. 404 / empty states
   ========================================================================== */

.state {
	max-width: 34rem;
	margin-inline: auto;
	padding-block: clamp(3rem, 8vw, 6rem);
	text-align: center;
}

.state__mark {
	font-family: var(--font-display);
	font-size: clamp(4rem, 14vw, 8rem);
	line-height: 1;
	color: var(--gold-200);
	margin-bottom: 1rem;
}

.state__text { margin-bottom: 2rem; color: var(--text-muted); }

.state__search { max-width: 24rem; margin-inline: auto; }

/* Search form */
.search-form {
	display: flex;
	gap: 0.5rem;
}

.search-form .search-field { flex: 1; }

/* ==========================================================================
   25. Comments
   ========================================================================== */

.comments {
	margin-top: clamp(3rem, 6vw, 4.5rem);
	padding-top: clamp(2rem, 4vw, 3rem);
	border-top: 1px solid var(--line);
}

.comment-list { margin: 0 0 2.5rem; padding: 0; list-style: none; }

.comment-list li { margin-bottom: 1.75rem; }

.comment-body {
	padding: 1.5rem;
	background: var(--white);
	border: 1px solid var(--line);
}

.comment-meta { margin-bottom: 0.75rem; font-size: var(--fs-xs); color: var(--text-muted); }
.comment-author { font-weight: 600; color: var(--navy); }
.comment-form { display: grid; gap: 1rem; }
.comment-form .form-submit { margin: 0; }

/* ==========================================================================
   Landing pages (Tentang, Keunggulan, Testimoni, Produk, Kontak)
   ========================================================================== */

.page-hero--tight { padding-bottom: clamp(1rem, 2vw, 1.75rem); text-align: left; }
.page-hero--tight .breadcrumb { margin-bottom: 0; }
.page-hero--tight .breadcrumb__list { justify-content: flex-start; }

/* Figures band ----------------------------------------------------------- */
.stat-band {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(1rem, 2.5vw, 2rem);
	padding: clamp(1.75rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
	background: var(--cream-50);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
}

.stat { text-align: center; }

.stat__figure {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2rem, 1.4rem + 2.4vw, 3.25rem);
	line-height: 1;
	color: var(--navy);
	font-weight: 600;
}

.stat__label {
	display: block;
	margin-top: 0.6rem;
	font-size: var(--fs-xs);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-muted);
}

@media (max-width: 640px) {
	.stat-band { grid-template-columns: repeat(2, 1fr); }
}

/* Values grid ------------------------------------------------------------ */
.values {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(1rem, 2vw, 1.5rem);
}

.value {
	padding: clamp(1.5rem, 2.5vw, 2rem);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
}

.value__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin-bottom: 1.1rem;
	color: var(--gold);
	background: var(--cream-100, #FBF8F2);
	border: 1px solid var(--line);
	border-radius: 50%;
}

.value__title { font-size: 1.12rem; margin-bottom: 0.5rem; }
.value__text { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

@media (max-width: 1100px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values { grid-template-columns: 1fr; } }

/* Differentiator checklist ---------------------------------------------- */
.diffs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(1.25rem, 2.5vw, 2rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.diff { display: flex; gap: 1rem; align-items: flex-start; }

.diff__mark {
	flex: none;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	margin-top: 2px;
	color: var(--gold);
	background: var(--cream-50);
	border: 1px solid var(--line);
	border-radius: 50%;
}

.diff__title { font-size: 1.1rem; margin-bottom: 0.35rem; }
.diff__text { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

@media (max-width: 760px) { .diffs { grid-template-columns: 1fr; } }

.certs--wide { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 640px) { .certs--wide { grid-template-columns: repeat(2, 1fr); } }

/* Assurance band --------------------------------------------------------- */
.assure-band {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(1rem, 3vw, 2.5rem);
	padding: clamp(1.5rem, 3vw, 2.25rem);
	background: var(--navy);
	color: var(--text-on-dark);
	border-radius: var(--radius-sm);
}

.assure {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	font-size: 0.92rem;
	letter-spacing: 0.02em;
}

.assure .vich-icon { color: var(--gold); flex: none; }

/* Testimonials empty state ---------------------------------------------- */
.testi-empty {
	max-width: 42rem;
	margin: 0 auto;
	padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
	text-align: center;
	background: var(--cream-50);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
}

.testi-empty__mark {
	display: inline-grid;
	place-items: center;
	width: 72px;
	height: 72px;
	margin-bottom: 1.25rem;
	color: var(--gold);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 50%;
}

.testi-empty__title { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem); margin-bottom: 0.75rem; }
.testi-empty__text { margin: 0 auto 1.75rem; max-width: 34rem; color: var(--text-muted); }

.testi-empty__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.85rem;
}

@media (max-width: 520px) {
	.testi-empty__actions { flex-direction: column; }
	.testi-empty__actions .btn { width: 100%; justify-content: center; }
}

/* Product lede ----------------------------------------------------------- */
.product-lede {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}

.product-lede__visual { position: relative; }

.product-lede__frame {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(70% 90% at 50% 15%, rgba(232, 213, 172, 0.4), transparent 65%),
		var(--cream-200);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
}

.product-lede__media { display: block; width: 100%; height: auto; }

.product-lede__stamp {
	position: absolute;
	right: clamp(-0.5rem, 1vw, 1rem);
	bottom: clamp(1rem, 3vw, 2rem);
	display: grid;
	place-items: center;
	width: clamp(92px, 12vw, 118px);
	height: clamp(92px, 12vw, 118px);
	text-align: center;
	color: var(--text-on-dark);
	background: var(--navy);
	border-radius: 50%;
	box-shadow: 0 12px 30px rgba(16, 24, 32, 0.22);
}

.product-lede__stamp strong { font-family: var(--font-display); font-size: 1.9rem; line-height: 1; }
.product-lede__stamp span { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 0.15rem; }

.product-lede__title {
	font-size: clamp(2rem, 1.5rem + 2.4vw, 3.25rem);
	margin-bottom: 1rem;
}

.product-lede__price {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
	color: var(--gold-700, #9c7a34);
	margin-bottom: 1.25rem;
}

.product-lede__price del { color: var(--text-muted); font-size: 0.7em; margin-right: 0.5rem; }
.product-lede__price ins { text-decoration: none; }

.product-lede__desc { color: var(--text-muted); margin-bottom: 1.75rem; }

@media (max-width: 860px) {
	.product-lede { grid-template-columns: 1fr; gap: clamp(1.75rem, 5vw, 2.5rem); }
	.product-lede__body { text-align: center; }
	.product-lede__body .hero__actions,
	.product-lede__body .hero__assurances { justify-content: center; }
	.product-lede__frame { max-width: 460px; margin: 0 auto; }
}

/* Contact ---------------------------------------------------------------- */
.contact {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: start;
}

.contact__subtitle {
	font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.7rem);
	margin-bottom: 1.5rem;
}

.contact-list { margin: 0 0 2rem; padding: 0; list-style: none; display: grid; gap: 1.4rem; }

.contact-item { display: flex; gap: 1rem; align-items: flex-start; }

.contact-item__icon {
	flex: none;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	color: var(--gold);
	background: var(--cream-50);
	border: 1px solid var(--line);
	border-radius: 50%;
}

.contact-item__label {
	margin: 0 0 0.2rem;
	font-size: var(--fs-xs);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.contact-item__value { margin: 0; color: var(--ink, #101820); line-height: 1.55; }
.contact-item__value a { color: inherit; }
.contact-item__value a:hover { color: var(--gold); }
.contact-item__value--muted { color: var(--text-muted); }

.contact-social__row { display: flex; gap: 0.6rem; margin-top: 0.5rem; }

.contact-social__row a {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	color: var(--navy);
	background: var(--cream-50);
	border: 1px solid var(--line);
	border-radius: 50%;
	transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.contact-social__row a:hover { color: var(--white); background: var(--navy); }

.contact__form-wrap {
	padding: clamp(1.75rem, 3.5vw, 3rem);
	background: var(--cream-50);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
}

.contact__form-note { margin: -0.75rem 0 1.75rem; color: var(--text-muted); font-size: 0.95rem; }

.contact-form { display: grid; gap: 1.15rem; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.form-field { display: block; }
.form-field__label {
	display: block;
	margin-bottom: 0.4rem;
	font-size: var(--fs-xs);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-muted);
}
.contact-form button { margin-top: 0.25rem; }

.contact-pending { text-align: center; }
.contact-pending__mark {
	display: inline-grid;
	place-items: center;
	width: 64px;
	height: 64px;
	margin-bottom: 1.25rem;
	color: var(--gold);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 50%;
}

@media (max-width: 860px) {
	.contact { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
	.contact-form .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Lifestyle gallery (homepage)
   ========================================================================== */

.lifestyle {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(0.75rem, 1.8vw, 1.25rem);
}

.lifestyle__item {
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--cream-200);
}

.lifestyle__img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	transition: transform 0.6s var(--ease-out, ease);
}

.lifestyle__item:hover .lifestyle__img { transform: scale(1.04); }

@media (max-width: 900px) {
	.lifestyle { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
	.lifestyle__img { transition: none; }
}

/* ==========================================================================
   Feature band (editorial photo + text, interspersed on the front page)
   ========================================================================== */

.feature__inner {
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

@media (min-width: 900px) {
	.feature__inner { grid-template-columns: 1.02fr 0.98fr; }
	.feature--flip .feature__media { order: 2; }
}

.feature__media { position: relative; }

.feature__main {
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--cream-200);
}

.feature__main img { display: block; width: 100%; height: auto; }

/* Small framed photo floating over the bottom-right corner of the main one.
   Kept fully inside the main image so it never causes horizontal overflow. */
.feature__inset {
	position: absolute;
	right: clamp(0.85rem, 2.5vw, 1.6rem);
	bottom: clamp(0.85rem, 2.5vw, 1.6rem);
	width: 40%;
	max-width: 220px;
	margin: 0;
	overflow: hidden;
	border: 4px solid var(--white);
	border-radius: var(--radius-sm);
	box-shadow: 0 18px 38px rgba(13, 26, 43, 0.22);
}

.feature__inset img { display: block; width: 100%; height: auto; }

.feature__title { font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.4rem); margin-bottom: 1rem; }
.feature__text { color: var(--text-muted); max-width: 42ch; margin: 0; }
.feature__cta { margin-top: 1.5rem; }

@media (max-width: 560px) {
	.feature__inset { width: 42%; border-width: 3px; }
}
