/* ==========================================================================
   Torus Leather - main stylesheet
   1. Tokens  2. Base  3. Buttons & UI  4. Header  5. Drawers & overlays
   6. Hero  7. Home sections  8. Blog & pages  9. Footer  10. Utilities
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */
:root {
	--ink: #1c130d;
	--ink-2: #2b1f17;
	--muted: #7b6a5a;
	--line: #eadfce;
	--line-2: #dccdb6;
	--cream: #faf6ef;
	--sand: #f8f2e8;
	--sand-2: #f1e9da;
	--white: #fff;
	--brown: #8a5a33;
	--brown-2: #6f4626;
	--gold: #c9a227;
	--gold-2: #dcb845;
	--gold-3: #b8901f;
	--red: #c8402f;
	--green: #2c5a45;
	--wa-1: #25d366;
	--wa-2: #128c7e;

	--radius: 20px;
	--radius-sm: 12px;
	--shadow: 0 10px 30px rgba(70, 45, 20, 0.08);
	--shadow-lg: 0 24px 60px rgba(40, 25, 10, 0.2);

	--font-body: "Jost", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--font-display: "Playfair Display", Georgia, "Times New Roman", serif;

	--container: 1680px;
	--container-wide: 1240px;
	--container-narrow: 860px;
	--gutter: clamp(16px, 2.6vw, 44px);

	--header-h: 96px;
	--topbar-h: 40px;
	--ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* 2. Base ------------------------------------------------------------------ */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
	margin: 0;
	background: var(--sand);
	color: var(--ink-2);
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.is-locked {
	overflow: hidden;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

button {
	cursor: pointer;
	background: none;
	border: 0;
	padding: 0;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 500;
	line-height: 1.2;
	color: var(--ink);
}

p {
	margin: 0 0 1em;
}

::selection {
	background: var(--gold);
	color: var(--ink);
}

:focus-visible {
	outline: 2px solid var(--gold-3);
	outline-offset: 3px;
	border-radius: 6px;
}

[hidden] {
	display: none !important;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed !important;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	clip: auto;
	padding: 12px 20px;
	background: var(--ink);
	color: #fff;
	border-radius: 999px;
	z-index: 1000;
	margin: 0;
}

.hp-field {
	position: absolute !important;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

.icon {
	width: 1.25em;
	height: 1.25em;
	flex: none;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.icon-fill {
	fill: currentColor;
	stroke: none;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.container--wide {
	max-width: calc(var(--container-wide) + var(--gutter) * 2);
}

.container--narrow {
	max-width: calc(var(--container-narrow) + var(--gutter) * 2);
}

.container--content {
	max-width: calc(1080px + var(--gutter) * 2);
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* 3. Buttons & UI ---------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	min-height: 50px;
	padding: 0 1.8rem;
	border-radius: 999px;
	border: 1.5px solid transparent;
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1;
	white-space: nowrap;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn:active {
	transform: translateY(0);
}

.btn .icon {
	width: 1.2em;
	height: 1.2em;
}

.btn--lg {
	min-height: 60px;
	padding: 0 2.2rem;
	font-size: 1.02rem;
}

.btn--sm {
	min-height: 42px;
	padding: 0 1.3rem;
	font-size: 0.82rem;
}

.btn--block {
	display: flex;
	width: 100%;
}

.btn--gold {
	background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
	color: var(--ink);
	box-shadow: 0 10px 26px rgba(184, 144, 31, 0.32);
}

.btn--gold:hover {
	box-shadow: 0 14px 32px rgba(184, 144, 31, 0.45);
}

.btn--brown {
	background: linear-gradient(135deg, #9a6a3f, var(--brown-2));
	color: #fff;
	box-shadow: 0 10px 24px rgba(111, 70, 38, 0.28);
}

.btn--brown:hover {
	box-shadow: 0 14px 30px rgba(111, 70, 38, 0.4);
}

.btn--dark {
	background: var(--ink);
	color: #fff;
}

.btn--dark:hover {
	background: #33231a;
}

.btn--outline {
	border-color: rgba(28, 19, 13, 0.75);
	color: var(--ink);
}

.btn--outline:hover {
	background: var(--ink);
	color: #fff;
}

.btn--ghost {
	background: rgba(24, 14, 9, 0.55);
	border-color: rgba(255, 255, 255, 0.22);
	color: #fff;
	backdrop-filter: blur(6px);
}

.btn--ghost:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.5);
}

.btn--whatsapp {
	background: linear-gradient(135deg, var(--wa-1), var(--wa-2));
	color: #fff;
	box-shadow: 0 10px 24px rgba(18, 140, 126, 0.28);
}

.btn--whatsapp:hover {
	box-shadow: 0 14px 30px rgba(18, 140, 126, 0.42);
}

.icon-btn {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: var(--ink);
	transition: background 0.2s, color 0.2s;
}

.icon-btn:hover {
	background: rgba(138, 90, 51, 0.1);
	color: var(--brown);
}

.icon-btn .icon {
	width: 22px;
	height: 22px;
}

.eyebrow {
	margin: 0 0 0.9rem;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--gold-3);
}

.eyebrow--light {
	color: var(--gold-2);
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.86rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold-3);
	transition: gap 0.25s var(--ease), color 0.2s;
}

.link-arrow:hover {
	gap: 0.9rem;
	color: var(--brown);
}

.chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
	background: var(--ink);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 500;
	transition: background 0.2s;
}

.chip .icon {
	width: 0.9em;
	height: 0.9em;
}

.chip:hover {
	background: var(--brown);
}

.chip--soft {
	background: #fff;
	color: var(--ink-2);
	border: 1px solid var(--line);
}

.chip--soft:hover {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}

.notice {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	padding: 0.95rem 1.2rem;
	border-radius: var(--radius-sm);
	font-size: 0.98rem;
	margin-bottom: 1.2rem;
}

.notice--success {
	background: #e8f4ec;
	color: #1e5a3a;
}

.notice--error {
	background: #fbeae6;
	color: #9b2d1f;
}

.section-head {
	margin-bottom: clamp(28px, 4vw, 54px);
}

.section-head--center {
	text-align: center;
}

.section-head--left {
	text-align: left;
}

.section-head.has-link {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
}

.section-title {
	font-size: clamp(2rem, 1.35rem + 2.1vw, 3.1rem);
	letter-spacing: -0.005em;
}

.section-head__rule {
	display: block;
	width: 64px;
	height: 3px;
	margin: 1rem auto 0;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--gold-2), var(--gold-3));
}

.section-head--left .section-head__rule {
	margin-inline: 0;
}

.section-head--light .section-title {
	color: #fff;
}

.section {
	padding: clamp(56px, 7.5vw, 112px) 0;
}

.section--alt {
	background: var(--sand-2);
}

/* 4. Header ---------------------------------------------------------------- */
.topbar {
	height: var(--topbar-h);
	background: var(--ink);
	color: #f0e6d3;
	font-size: 0.92rem;
	font-weight: 500;
	overflow: hidden;
}

.topbar__track {
	display: flex;
	width: max-content;
	height: 100%;
	animation: torus-marquee 48s linear infinite;
}

.topbar:hover .topbar__track {
	animation-play-state: paused;
}

.topbar__group {
	display: flex;
	flex: none;
	align-items: center;
	min-width: 100vw;
	justify-content: space-around;
}

.topbar__group li {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0 2.2rem;
	white-space: nowrap;
}

.topbar__group .icon {
	width: 0.95em;
	height: 0.95em;
	color: var(--gold);
	fill: var(--gold);
}

@keyframes torus-marquee {
	to {
		transform: translateX(-50%);
	}
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(250, 246, 239, 0.97);
	backdrop-filter: saturate(1.4) blur(12px);
	border-bottom: 1px solid transparent;
	transition: box-shadow 0.3s, border-color 0.3s;
}

.admin-bar .site-header {
	top: 32px;
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

.site-header.is-stuck {
	box-shadow: 0 8px 28px rgba(60, 40, 20, 0.1);
	border-color: var(--line);
}

.header__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1.5rem;
	height: var(--header-h);
	transition: height 0.3s var(--ease);
}

.site-header.is-stuck .header__inner {
	height: 80px;
}

.header__menu {
	display: none;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	color: var(--brown);
}

.brand__mark {
	width: 40px;
	height: 48px;
	flex: none;
}

.brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.brand__name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.95rem;
	letter-spacing: 0.3em;
	color: var(--ink);
	margin-right: -0.3em;
}

.brand__tag {
	margin-top: 0.4rem;
	font-size: 0.66rem;
	font-weight: 500;
	letter-spacing: 0.62em;
	color: var(--brown);
}

.brand--light {
	color: var(--gold);
}

.brand--light .brand__name {
	color: #f3ecdf;
}

.brand--light .brand__tag {
	color: var(--gold);
}

.brand__img {
	max-height: 56px;
	width: auto;
}

/* Primary nav */
.nav__list {
	display: flex;
	align-items: center;
	gap: clamp(1.4rem, 2.6vw, 3rem);
}

.nav__item {
	height: var(--header-h);
	display: flex;
	align-items: center;
}

.site-header.is-stuck .nav__item {
	height: 80px;
}

.nav__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0;
	font-size: 1.06rem;
	font-weight: 500;
	color: var(--ink-2);
	transition: color 0.2s;
}

.nav__link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 2px;
	background: var(--brown);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--ease);
}

.nav__link:hover,
.nav__item.is-current > .nav__link {
	color: var(--brown);
}

.nav__link:hover::after,
.nav__item.is-current > .nav__link::after {
	transform: scaleX(1);
}

.nav__caret {
	width: 15px;
	height: 15px;
	transition: transform 0.25s;
}

.has-mega:hover .nav__caret,
.has-mega:focus-within .nav__caret {
	transform: rotate(180deg);
}

/* Mega dropdown */
.mega {
	position: absolute;
	top: 100%;
	left: 50%;
	width: min(1040px, 94vw);
	padding: 2rem 2.2rem 1.4rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 0 0 24px 24px;
	box-shadow: var(--shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 10px);
	transition: opacity 0.25s, transform 0.3s var(--ease), visibility 0.25s;
}

.has-mega:hover .mega,
.has-mega:focus-within .mega,
.has-mega.is-open .mega {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.mega__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.6rem 2rem;
}

.mega__parent {
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 0.7rem;
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 0.7rem;
}

.mega__letter {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 700;
}

.mega__list li a {
	display: block;
	padding: 0.3rem 0 0.3rem 3px;
	color: var(--muted);
	font-size: 0.98rem;
	transition: color 0.2s, padding 0.2s;
}

.mega__list li a:hover {
	color: var(--brown);
	padding-left: 8px;
}

.mega__all {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	margin-top: 1.4rem;
	padding-top: 1.1rem;
	border-top: 1px solid var(--line);
	font-size: 0.86rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--brown);
}

.header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.35rem;
}

.btn-login {
	display: inline-flex;
	align-items: center;
	height: 44px;
	margin: 0 0.5rem 0 0.35rem;
	padding: 0 1.6rem;
	border: 1.5px solid rgba(28, 19, 13, 0.28);
	border-radius: 999px;
	font-size: 0.86rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-login:hover {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}

.cart-count,
.wl-count {
	position: absolute;
	top: 0;
	right: -2px;
	display: grid;
	place-items: center;
	min-width: 21px;
	height: 21px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--gold);
	color: var(--ink);
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 0 0 2px var(--cream);
}

.wl-count {
	background: var(--brown);
	color: #fff;
	min-width: 18px;
	height: 18px;
	font-size: 0.66rem;
}

.cart-count[data-count="0"],
.wl-count[data-count="0"] {
	display: none;
}

.cart-count.is-bump {
	animation: torus-bump 0.5s var(--ease);
}

@keyframes torus-bump {
	40% {
		transform: scale(1.5);
	}
}

/* Mobile header */
@media (max-width: 1100px) {
	:root {
		--header-h: 72px;
	}

	.header__inner {
		grid-template-columns: auto 1fr auto;
		gap: 0.6rem;
	}

	.site-header.is-stuck .header__inner {
		height: 64px;
	}

	.header__menu {
		display: inline-grid;
		margin-left: -10px;
	}

	.nav,
	.header__search,
	.header__wish,
	.btn-login {
		display: none;
	}

	.brand__mark {
		width: 32px;
		height: 40px;
	}

	.brand__name {
		font-size: 1.55rem;
	}

	.brand__tag {
		font-size: 0.56rem;
		margin-top: 0.3rem;
	}
}

@media (max-width: 782px) {
	:root {
		--topbar-h: 38px;
	}

	.topbar {
		font-size: 0.85rem;
	}
}

/* 5. Drawers & overlays ---------------------------------------------------- */
.drawer-overlay {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(20, 12, 8, 0.58);
	backdrop-filter: blur(2px);
	opacity: 0;
	transition: opacity 0.3s;
}

.drawer-overlay.is-open {
	opacity: 1;
}

.cart-drawer,
.mobile-drawer {
	position: fixed;
	top: 0;
	height: 100vh;
	height: 100dvh;
	z-index: 210;
	display: flex;
	flex-direction: column;
	background: var(--cream);
	box-shadow: var(--shadow-lg);
	transition: transform 0.4s var(--ease), visibility 0.4s;
	visibility: hidden;
}

.cart-drawer {
	right: 0;
	width: min(450px, 100vw);
	transform: translateX(105%);
}

.mobile-drawer {
	left: 0;
	width: min(390px, 92vw);
	transform: translateX(-105%);
	padding: 1.2rem 1.4rem 2rem;
	overflow-y: auto;
	gap: 1.2rem;
}

.cart-drawer.is-open,
.mobile-drawer.is-open {
	transform: none;
	visibility: visible;
}

.cart-drawer__head,
.mobile-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.cart-drawer__head {
	padding: 1.2rem 1.5rem;
	border-bottom: 1px solid var(--line);
}

.cart-drawer__head h2 {
	font-size: 1.5rem;
}

.cart-drawer__count {
	color: var(--muted);
	font-family: var(--font-body);
	font-size: 1.05rem;
}

.mobile-search {
	position: relative;
}

.mobile-search input {
	width: 100%;
	height: 50px;
	padding: 0 3.2rem 0 1.2rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
}

.mobile-search button {
	position: absolute;
	right: 6px;
	top: 6px;
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
}

.drawer-nav > li > a,
.drawer-nav__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0.95rem 0.2rem;
	border-bottom: 1px solid var(--line);
	font-family: var(--font-display);
	font-size: 1.3rem;
	color: var(--ink);
	text-align: left;
}

.drawer-nav__toggle .icon {
	transition: transform 0.25s;
}

.drawer-nav__toggle[aria-expanded="true"] .icon {
	transform: rotate(180deg);
}

.drawer-nav__sub {
	padding: 0.4rem 0 0.6rem 0.8rem;
	border-bottom: 1px solid var(--line);
}

.drawer-nav__sub a {
	display: block;
	padding: 0.5rem 0;
	color: var(--muted);
}

.drawer-extra li a {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.7rem 0.2rem;
	font-weight: 500;
}

.drawer-extra .icon {
	color: var(--brown);
}

/* Search overlay */
.search-overlay {
	position: fixed;
	inset: 0;
	z-index: 220;
}

.search-overlay__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 12, 8, 0.55);
	backdrop-filter: blur(3px);
	opacity: 0;
	transition: opacity 0.3s;
}

.search-overlay__panel {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	max-height: 100vh;
	overflow-y: auto;
	padding: 1.6rem var(--gutter) 2rem;
	background: var(--cream);
	box-shadow: var(--shadow-lg);
	transform: translateY(-100%);
	transition: transform 0.4s var(--ease);
}

.search-overlay.is-open .search-overlay__backdrop {
	opacity: 1;
}

.search-overlay.is-open .search-overlay__panel {
	transform: none;
}

.search-big,
.search-popular,
.search-results {
	max-width: 860px;
	margin-inline: auto;
}

.search-big {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.5rem 0.6rem 0.5rem 1.3rem;
	background: #fff;
	border: 1.5px solid var(--line-2);
	border-radius: 999px;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.search-big:focus-within {
	border-color: var(--brown);
	box-shadow: 0 0 0 4px rgba(138, 90, 51, 0.12);
}

.search-big__icon {
	color: var(--muted);
}

.search-big__input {
	flex: 1;
	min-width: 0;
	height: 46px;
	border: 0;
	outline: 0;
	background: transparent;
	font-size: 1.15rem;
}

.search-popular {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.1rem;
}

.search-popular__label {
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
	margin-right: 0.3rem;
}

.search-results {
	margin-top: 1.3rem;
}

.search-hit {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.7rem;
	border-radius: 14px;
	transition: background 0.2s;
}

.search-hit:hover {
	background: #fff;
}

.search-hit img {
	width: 60px;
	height: 60px;
	object-fit: contain;
	border-radius: 10px;
	background: #fff;
}

.search-hit__title {
	display: block;
	font-weight: 500;
	color: var(--ink);
}

.search-hit__price {
	font-size: 0.95rem;
	color: var(--brown);
	font-weight: 600;
}

.search-hit__price del {
	color: var(--muted);
	font-weight: 400;
	margin-right: 0.3rem;
}

.search-hit__price ins {
	text-decoration: none;
}

.search-results__all {
	display: block;
	margin-top: 0.6rem;
	padding: 0.8rem;
	text-align: center;
	font-weight: 600;
	color: var(--brown);
}

.search-results__msg {
	padding: 1rem 0.4rem;
	color: var(--muted);
}

/* Floating buttons + toasts */
.whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 90;
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--wa-1), var(--wa-2));
	color: #fff;
	box-shadow: 0 12px 30px rgba(18, 140, 126, 0.45);
	transition: transform 0.25s var(--ease);
}

.whatsapp-float::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: inherit;
	z-index: -1;
	animation: torus-pulse 2.6s ease-out infinite;
}

.whatsapp-float:hover {
	transform: scale(1.08);
}

.whatsapp-float .icon {
	width: 32px;
	height: 32px;
}

@keyframes torus-pulse {
	0% {
		transform: scale(1);
		opacity: 0.55;
	}
	100% {
		transform: scale(1.7);
		opacity: 0;
	}
}

.to-top {
	position: fixed;
	left: 22px;
	bottom: 22px;
	z-index: 90;
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--ink);
	color: var(--gold);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s, transform 0.3s, background 0.2s;
}

.to-top.is-visible {
	opacity: 1;
	transform: none;
}

.to-top:hover {
	background: var(--brown);
	color: #fff;
}

.toasts {
	position: fixed;
	left: 50%;
	bottom: 26px;
	z-index: 300;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
	transform: translateX(-50%);
	pointer-events: none;
}

.toast {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.85rem 1.3rem;
	border-radius: 999px;
	background: var(--ink);
	color: #fff;
	font-size: 0.95rem;
	box-shadow: var(--shadow-lg);
	animation: torus-toast 0.4s var(--ease) both;
}

.toast .icon {
	color: var(--gold);
}

.toast.is-leaving {
	animation: torus-toast-out 0.3s ease forwards;
}

@keyframes torus-toast {
	from {
		opacity: 0;
		transform: translateY(14px) scale(0.96);
	}
}

@keyframes torus-toast-out {
	to {
		opacity: 0;
		transform: translateY(8px);
	}
}

/* 6. Hero ------------------------------------------------------------------ */
.hero {
	position: relative;
	overflow: hidden;
	color: #fff;
	background: #120b07;
}

.hero__slides {
	position: relative;
	min-height: clamp(580px, 84vh, 800px);
}

.hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.9s ease, visibility 0.9s;
}

.hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.hero__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(90% 80% at 75% 20%, rgba(184, 144, 31, 0.28), transparent 60%),
		linear-gradient(135deg, #2a190f 0%, #120b07 70%);
}

.hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.04);
}

.hero__slide.is-active .hero__img {
	animation: torus-kenburns 16s ease-out forwards;
}

@keyframes torus-kenburns {
	to {
		transform: scale(1.12);
	}
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(16, 9, 5, calc(var(--overlay, 0.6) + 0.3)) 0%, rgba(16, 9, 5, var(--overlay, 0.6)) 42%, rgba(16, 9, 5, 0.12) 100%),
		linear-gradient(0deg, rgba(16, 9, 5, 0.6), transparent 38%);
}

.hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	height: 100%;
	padding-bottom: 96px;
}

.hero__copy {
	max-width: 780px;
}

.hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 0 0 1.3rem;
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.36em;
	text-transform: uppercase;
	color: var(--gold);
}

.hero__line {
	width: 58px;
	height: 1px;
	background: var(--gold);
}

.hero__title {
	font-size: clamp(2.4rem, 1rem + 4.4vw, 4.9rem);
	line-height: 1.12;
	font-weight: 500;
	color: #fff;
	letter-spacing: -0.01em;
	text-wrap: balance;
}

.hero__text {
	max-width: 560px;
	margin: 1.3rem 0 0;
	font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.3rem);
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.55;
}

.hero__btns {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2.2rem;
}

.hero__slide.is-active .hero__eyebrow,
.hero__slide.is-active .hero__title,
.hero__slide.is-active .hero__text,
.hero__slide.is-active .hero__btns {
	animation: torus-rise 0.9s var(--ease) both;
}

.hero__slide.is-active .hero__title {
	animation-delay: 0.1s;
}

.hero__slide.is-active .hero__text {
	animation-delay: 0.2s;
}

.hero__slide.is-active .hero__btns {
	animation-delay: 0.3s;
}

@keyframes torus-rise {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
}

.hero__nav {
	position: absolute;
	top: 50%;
	z-index: 4;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin-top: -29px;
	border-radius: 50%;
	background: rgba(22, 13, 8, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(6px);
	color: #fff;
	transition: background 0.2s, transform 0.2s;
}

.hero__nav:hover {
	background: var(--brown);
	transform: scale(1.06);
}

.hero__nav .icon {
	width: 26px;
	height: 26px;
}

.hero__nav--prev {
	left: 14px;
}

.hero__nav--next {
	right: 14px;
}

.hero__dots {
	position: absolute;
	right: var(--gutter);
	bottom: 100px;
	z-index: 4;
	display: flex;
	gap: 0.6rem;
}

.hero__dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.4);
	transition: width 0.3s var(--ease), background 0.3s;
}

.hero__dot.is-active {
	width: 34px;
	background: var(--gold);
}

.hero__trust {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 2.6rem;
	padding-block: 1.3rem;
}

.hero__trust li {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	font-size: 0.98rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.92);
}

.hero__trust .icon {
	color: var(--gold);
	width: 1.35rem;
	height: 1.35rem;
}

@media (max-width: 782px) {
	.hero__slides {
		min-height: clamp(560px, 88svh, 720px);
	}

	.hero__content {
		align-items: flex-end;
		padding-bottom: 150px;
	}

	.hero__overlay {
		background:
			linear-gradient(0deg, rgba(16, 9, 5, 0.92) 0%, rgba(16, 9, 5, 0.55) 55%, rgba(16, 9, 5, 0.25) 100%);
	}

	.hero__btns {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.8rem;
	}

	.hero__btns .btn {
		min-width: 250px;
	}

	.hero__nav {
		display: none;
	}

	.hero__dots {
		right: auto;
		left: var(--gutter);
		bottom: 92px;
	}

	.hero__trust {
		gap: 0.6rem 1.4rem;
		padding-block: 0.9rem;
	}

	.hero__trust li {
		font-size: 0.85rem;
	}
}

/* 7. Home sections --------------------------------------------------------- */
.stats {
	background: var(--cream);
	border-bottom: 1px solid var(--line);
}

.stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.15rem;
	padding: clamp(22px, 3vw, 40px) 1rem;
	text-align: center;
}

.stat + .stat {
	border-left: 1px solid var(--line);
}

.stat__num {
	font-family: var(--font-display);
	font-size: clamp(2rem, 1.4rem + 2vw, 3rem);
	font-weight: 600;
	color: var(--brown);
	line-height: 1.1;
}

.stat__suffix {
	color: var(--gold-3);
}

.stat__label {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--muted);
}

.cat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(14px, 1.7vw, 28px);
}

.cat-card {
	position: relative;
	display: block;
	aspect-ratio: 3 / 4;
	border-radius: 26px;
	overflow: hidden;
	background: #fff;
	box-shadow: var(--shadow);
	isolation: isolate;
}

.cat-card__media {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, #fff, #f3eadc);
}

.cat-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.9s var(--ease);
}

.cat-card:hover .cat-card__img {
	transform: scale(1.07);
}

.cat-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 38%, rgba(24, 14, 8, 0.82) 100%);
	z-index: 1;
	transition: opacity 0.3s;
}

.cat-card__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	padding: clamp(18px, 2vw, 30px);
	color: #fff;
}

.cat-card__name {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 1.1rem + 0.9vw, 1.85rem);
	line-height: 1.15;
}

.cat-card__meta {
	margin-top: 0.3rem;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.85);
}

.cat-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.9rem;
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold-2);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s, transform 0.35s var(--ease);
}

.cat-card:hover .cat-card__cta,
.cat-card:focus-visible .cat-card__cta {
	opacity: 1;
	transform: none;
}

@media (hover: none) {
	.cat-card__cta {
		opacity: 1;
		transform: none;
	}
}

/* Story */
.story {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: clamp(32px, 6vw, 96px);
}

.story__media {
	position: relative;
	border-radius: 30px;
	background: #fff;
	box-shadow: var(--shadow);
	aspect-ratio: 4 / 4.6;
}

.story__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 30px;
}

.story__badge {
	position: absolute;
	left: clamp(-10px, -1vw, 0px);
	bottom: 28px;
	max-width: 260px;
	padding: 1.1rem 1.4rem;
	border-radius: 20px;
	background: var(--ink);
	color: #e9dfcd;
	box-shadow: var(--shadow-lg);
	transform: translateX(-4%);
}

.story__badge strong {
	display: block;
	font-family: var(--font-display);
	font-size: 2.6rem;
	line-height: 1;
	color: var(--gold);
}

.story__badge span {
	display: block;
	margin-top: 0.4rem;
	font-size: 0.9rem;
	line-height: 1.45;
}

.story__title em,
.offer__title em {
	font-style: italic;
	color: var(--gold-3);
}

.story__copy .section-head__rule {
	margin-inline: 0;
}

.story__text {
	margin: 1.4rem 0 1.6rem;
	color: var(--muted);
	font-size: 1.1rem;
}

.story__text p:last-child {
	margin-bottom: 0;
}

.story__points {
	display: grid;
	gap: 1rem;
	margin-bottom: 2rem;
}

.story__points li {
	display: flex;
	gap: 0.9rem;
	align-items: flex-start;
}

.story__points .icon {
	margin-top: 0.15rem;
	width: 1.5rem;
	height: 1.5rem;
	color: var(--brown);
}

.story__points strong {
	display: block;
	font-weight: 600;
	color: var(--ink);
}

.story__points span {
	font-size: 0.9rem;
	color: var(--muted);
}

.story__btns {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 1.6rem;
}

/* Why */
.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(14px, 1.7vw, 26px);
}

.why-card {
	padding: clamp(24px, 2.6vw, 38px) clamp(20px, 2vw, 30px);
	border: 1px solid var(--line);
	border-radius: 24px;
	background: #fff;
	text-align: center;
	box-shadow: var(--shadow);
	transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.why-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.why-card__icon {
	display: inline-grid;
	place-items: center;
	width: 68px;
	height: 68px;
	margin-bottom: 1.1rem;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(220, 184, 69, 0.28), rgba(184, 144, 31, 0.14));
	color: var(--brown);
}

.why-card__icon .icon {
	width: 30px;
	height: 30px;
}

.why-card h3 {
	margin-bottom: 0.5rem;
	font-size: 1.28rem;
}

.why-card p {
	margin: 0;
	color: var(--muted);
	font-size: 0.98rem;
}

/* Offer */
.offer {
	position: relative;
	overflow: hidden;
	padding: clamp(56px, 7vw, 100px) 0;
	color: #fff;
	background:
		radial-gradient(60% 120% at 88% 0%, rgba(201, 162, 39, 0.28), transparent 60%),
		linear-gradient(120deg, #2e1c11, #150d08 70%);
}

.offer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.offer__title {
	font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.6rem);
	color: #fff;
	line-height: 1.12;
}

.offer__text {
	margin: 1rem 0 0;
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.8);
}

.offer__btns {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.offer--center .offer__inner {
	flex-direction: column;
	text-align: center;
}

/* Reviews */
.review-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(14px, 1.7vw, 26px);
}

.review {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 0;
	padding: clamp(24px, 2.4vw, 36px);
	border: 1px solid var(--line);
	border-radius: 24px;
	background: #fff;
	box-shadow: var(--shadow);
}

.review__quote {
	position: absolute;
	top: 22px;
	right: 24px;
	width: 42px;
	height: 42px;
	color: rgba(201, 162, 39, 0.28);
	stroke-width: 1.4;
}

.review blockquote {
	flex: 1;
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.65;
	color: var(--ink-2);
}

.review figcaption {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding-top: 1rem;
	border-top: 1px solid var(--line);
}

.review figcaption strong {
	display: block;
	color: var(--ink);
}

.review figcaption small {
	color: var(--muted);
	font-size: 0.85rem;
}

.review__avatar {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
	color: var(--ink);
	font-weight: 700;
}

/* Gram */
.gram-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: clamp(8px, 1vw, 16px);
}

.gram-grid a {
	position: relative;
	display: block;
	aspect-ratio: 1;
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
}

.gram-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--ease);
}

.gram-grid a:hover img {
	transform: scale(1.1);
}

.gram-grid__hover {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: rgba(28, 19, 13, 0.5);
	color: #fff;
	opacity: 0;
	transition: opacity 0.3s;
}

.gram-grid__hover .icon {
	width: 34px;
	height: 34px;
}

.gram-grid a:hover .gram-grid__hover {
	opacity: 1;
}

/* FAQ */
.faq-list {
	display: grid;
	gap: 0.85rem;
}

.faq {
	border: 1px solid var(--line);
	border-radius: 18px;
	background: #fff;
	transition: box-shadow 0.25s, border-color 0.25s;
}

.faq[open] {
	border-color: var(--line-2);
	box-shadow: var(--shadow);
}

.faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.15rem 1.5rem;
	font-weight: 600;
	font-size: 1.08rem;
	color: var(--ink);
	cursor: pointer;
	list-style: none;
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq__icon {
	color: var(--brown);
	transition: transform 0.3s var(--ease);
}

.faq[open] .faq__icon {
	transform: rotate(45deg);
}

.faq__answer {
	padding: 0 1.5rem 1.3rem;
	color: var(--muted);
}

.faq__answer p:last-child {
	margin-bottom: 0;
}

.faq-more {
	margin-top: 2rem;
	text-align: center;
}

.cta-box {
	margin-top: 3rem;
	padding: clamp(28px, 4vw, 48px);
	border-radius: 26px;
	background: #fff;
	border: 1px solid var(--line);
	text-align: center;
	box-shadow: var(--shadow);
}

.cta-box h2 {
	font-size: 1.9rem;
}

.cta-box p {
	margin: 0.6rem 0 1.4rem;
	color: var(--muted);
}

/* Newsletter */
.newsletter {
	padding: clamp(60px, 8vw, 110px) 0;
	color: #fff;
	text-align: center;
	background:
		radial-gradient(50% 90% at 50% 0%, rgba(138, 90, 51, 0.5), transparent 65%),
		var(--ink);
}

.newsletter__inner {
	max-width: 760px;
}

.newsletter__title {
	font-size: clamp(2rem, 1.3rem + 2.4vw, 3.2rem);
	color: #fff;
}

.newsletter__text {
	margin: 1rem auto 2rem;
	color: rgba(255, 255, 255, 0.75);
	max-width: 560px;
}

.newsletter__form {
	display: flex;
	gap: 0.5rem;
	max-width: 560px;
	margin-inline: auto;
	padding: 0.4rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter__form input[type="email"] {
	flex: 1;
	min-width: 0;
	padding: 0 1.3rem;
	border: 0;
	outline: 0;
	background: transparent;
	color: #fff;
}

.newsletter__form input::placeholder {
	color: rgba(255, 255, 255, 0.55);
}

.newsletter__note {
	margin: 1rem 0 0;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
}

.newsletter__note.is-ok {
	color: var(--gold-2);
}

.newsletter__note.is-error {
	color: #ff9d8f;
}

/* 8. Blog & pages ---------------------------------------------------------- */
.crumbs {
	background: var(--sand-2);
	border-bottom: 1px solid var(--line);
}

.breadcrumb {
	padding: 0.85rem 0;
	font-size: 0.9rem;
	color: var(--muted);
}

.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
}

.breadcrumb__list li {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.breadcrumb a:hover {
	color: var(--brown);
}

.breadcrumb [aria-current] {
	color: var(--ink);
	font-weight: 500;
}

.crumbs__sep {
	width: 0.85em;
	height: 0.85em;
	opacity: 0.6;
}

.page-head {
	padding: clamp(40px, 6vw, 80px) 0 clamp(8px, 2vw, 24px);
	text-align: center;
}

.page-head__title {
	font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.6rem);
}

.page-head--left {
	text-align: left;
}

.page-title-row {
	padding-top: clamp(28px, 4vw, 48px);
}

.page-title {
	font-size: clamp(2rem, 1.4rem + 2vw, 2.9rem);
}

.page-body {
	padding-block: clamp(28px, 4vw, 56px) clamp(56px, 7vw, 96px);
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > h2 {
	margin: 2rem 0 0.8rem;
	font-size: 1.6rem;
}

.entry-content > h3 {
	margin: 1.6rem 0 0.6rem;
	font-size: 1.3rem;
}

.entry-content > ul,
.entry-content > ol {
	margin: 0 0 1.2em;
	padding-left: 1.3rem;
	list-style: revert;
}

.entry-content > ul > li,
.entry-content > ol > li {
	margin-bottom: 0.4rem;
}

.entry-content > p a,
.entry-content > ul a,
.entry-content > ol a,
.entry-content > table a {
	color: var(--brown);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry-content > p img,
.entry-content > figure img {
	border-radius: 16px;
}

.entry-content > table {
	width: 100%;
	margin-bottom: 1.4rem;
	border-collapse: collapse;
}

.entry-content > table th,
.entry-content > table td {
	padding: 0.8rem 1rem;
	border-bottom: 1px solid var(--line);
	text-align: left;
}

.entry-content > table th {
	background: var(--sand-2);
	font-weight: 600;
}

.container--narrow .entry {
	padding: clamp(24px, 4vw, 52px);
	border: 1px solid var(--line);
	border-radius: 26px;
	background: #fff;
	box-shadow: var(--shadow);
}

.site-main--faq .container--narrow .entry,
.site-main--about .container--narrow .entry {
	padding: 0;
	border: 0;
	background: none;
	box-shadow: none;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(16px, 2vw, 32px);
}

.post-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: #fff;
	box-shadow: var(--shadow);
	transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.post-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.post-card__media {
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: linear-gradient(135deg, #f3eadc, #e8dcc8);
}

.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--ease);
}

.post-card:hover .post-card__media img {
	transform: scale(1.06);
}

.post-card__ph {
	display: grid;
	place-items: center;
	height: 100%;
	color: var(--gold-3);
}

.post-card__ph .icon {
	width: 54px;
	height: 54px;
	opacity: 0.6;
}

.post-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.6rem;
	padding: clamp(20px, 2vw, 30px);
}

.post-card__date {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold-3);
}

.post-card__title {
	font-size: 1.35rem;
	line-height: 1.3;
}

.post-card__title a:hover {
	color: var(--brown);
}

.post-card__excerpt {
	flex: 1;
	margin: 0;
	color: var(--muted);
	font-size: 0.98rem;
}

.post-card .link-arrow {
	margin-top: 0.6rem;
}

.pagination {
	margin-top: clamp(32px, 4vw, 56px);
}

.pagination ul,
.woocommerce-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
}

.pagination li > .page-numbers,
.woocommerce-pagination li > .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 0.8rem;
	border-radius: 12px;
	background: #fff;
	border: 1px solid var(--line);
	font-weight: 600;
	transition: background 0.2s, color 0.2s;
}

.pagination li > a.page-numbers:hover,
.woocommerce-pagination li > a.page-numbers:hover {
	background: var(--sand-2);
}

.pagination li > .page-numbers.current,
.woocommerce-pagination li > .page-numbers.current {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}

.empty-state {
	padding: clamp(40px, 7vw, 90px) 1rem;
	text-align: center;
}

.empty-state__icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.2rem;
	color: var(--gold-3);
	stroke-width: 1.3;
}

.empty-state h1,
.empty-state h2 {
	font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.6rem);
}

.empty-state p {
	margin: 0.8rem auto 1.6rem;
	max-width: 480px;
	color: var(--muted);
}

.empty-state__code {
	font-family: var(--font-display);
	font-size: clamp(5rem, 14vw, 9rem) !important;
	line-height: 1;
	color: var(--gold-3) !important;
	max-width: none !important;
	margin: 0 !important;
}

.empty-state__btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.8rem;
}

.search-inline {
	display: flex;
	gap: 0.6rem;
	max-width: 520px;
	margin: 1.6rem auto;
}

.search-inline input {
	flex: 1;
	min-width: 0;
	height: 50px;
	padding: 0 1.2rem;
	border: 1px solid var(--line-2);
	border-radius: 999px;
	background: #fff;
}

/* Single post */
.post__head {
	padding-top: clamp(36px, 5vw, 64px);
	text-align: center;
}

.post__title {
	font-size: clamp(2rem, 1.3rem + 2.6vw, 3.4rem);
}

.post__meta {
	margin: 1rem 0 0;
	color: var(--muted);
	font-size: 0.95rem;
}

.post__media {
	margin-block: clamp(24px, 3vw, 40px);
}

.post__img {
	width: 100%;
	max-height: 560px;
	object-fit: cover;
	border-radius: 28px;
	box-shadow: var(--shadow);
}

.post__content {
	font-size: 1.15rem;
	line-height: 1.8;
}

.post__share {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2.4rem;
	padding-top: 1.4rem;
	border-top: 1px solid var(--line);
	font-weight: 500;
}

.post__share ul,
.pdp-share ul {
	display: flex;
	gap: 0.5rem;
}

.share {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	color: #fff;
	transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.share:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.share .icon {
	width: 17px;
	height: 17px;
}

.share--facebook {
	background: #1877f2;
}

.share--twitter {
	background: #111;
}

.share--whatsapp {
	background: #25d366;
}

.share--pinterest {
	background: #e60023;
}

.share--mail {
	background: var(--brown);
}

.share--copy {
	background: var(--sand-2);
	color: var(--ink);
	border: 1px solid var(--line-2);
}

.post__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin: 2.4rem 0 1rem;
}

.comments {
	margin-top: 3rem;
}

.comments__title {
	font-size: 1.6rem;
	margin-bottom: 1rem;
}

.comment-list {
	display: grid;
	gap: 1rem;
	margin-bottom: 2rem;
}

.comment-body {
	padding: 1.2rem 1.4rem;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: #fff;
}

.comment-form label {
	display: block;
	margin-bottom: 0.3rem;
	font-weight: 500;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
}

/* About */
.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(16px, 2vw, 32px);
	counter-reset: step;
}

.step {
	position: relative;
	padding: 2.2rem 2rem;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: #fff;
	box-shadow: var(--shadow);
}

.step__num {
	display: block;
	margin-bottom: 0.6rem;
	font-family: var(--font-display);
	font-size: 3.6rem;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--gold);
}

.step h3 {
	margin-bottom: 0.5rem;
	font-size: 1.35rem;
}

.step p {
	margin: 0;
	color: var(--muted);
}

/* Contact */
.contact {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: clamp(28px, 5vw, 80px);
	align-items: start;
	padding-block: clamp(28px, 4vw, 56px) clamp(56px, 7vw, 96px);
}

.contact__info .section-head__rule {
	margin-inline: 0;
}

.contact__lead {
	margin: 1.3rem 0 1.8rem;
	color: var(--muted);
}

.contact-cards {
	display: grid;
	gap: 0.9rem;
}

.contact-card {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	padding: 1.1rem 1.3rem;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: #fff;
	transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.contact-card:hover {
	transform: translateX(4px);
	box-shadow: var(--shadow);
}

.contact-card__icon {
	display: grid;
	place-items: center;
	flex: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(184, 144, 31, 0.16);
	color: var(--brown);
}

.contact-card__icon.is-wa {
	background: linear-gradient(135deg, var(--wa-1), var(--wa-2));
	color: #fff;
}

.contact-card strong {
	display: block;
	font-size: 0.8rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
}

.contact-card a,
.contact-card span span {
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--ink);
}

.contact__follow {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 1.6rem;
	font-weight: 500;
}

.social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.social a {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	transition: background 0.2s, transform 0.2s var(--ease), color 0.2s;
}

.social a:hover {
	background: var(--gold);
	color: var(--ink);
	transform: translateY(-3px);
}

.social .icon {
	width: 18px;
	height: 18px;
}

.card-box {
	padding: clamp(24px, 3vw, 44px);
	border: 1px solid var(--line);
	border-radius: 28px;
	background: #fff;
	box-shadow: var(--shadow);
}

.card-box__title {
	margin-bottom: 1.3rem;
	font-size: 1.8rem;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 1.1rem;
}

.field {
	margin: 0 0 1.1rem;
}

.field--wide {
	grid-column: 1 / -1;
}

.field label {
	display: block;
	margin-bottom: 0.4rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}

.field abbr {
	color: var(--red);
	text-decoration: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="search"],
select,
textarea {
	width: 100%;
	padding: 0.85rem 1.05rem;
	border: 1.5px solid var(--line);
	border-radius: 14px;
	background: var(--cream);
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

input:focus,
select:focus,
textarea:focus {
	outline: 0;
	border-color: var(--brown);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(138, 90, 51, 0.12);
}

textarea {
	resize: vertical;
	min-height: 96px;
}

.contact__wa {
	margin: 1.2rem 0 0;
	text-align: center;
	color: var(--muted);
}

.contact__wa a {
	color: var(--wa-2);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* 9. Footer ---------------------------------------------------------------- */
.site-footer {
	background: #140d08;
	color: #cdbfae;
}

.footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
	gap: clamp(28px, 4vw, 72px);
	padding-block: clamp(48px, 6vw, 88px);
}

.footer__brand p {
	max-width: 380px;
	margin: 1.3rem 0 1.4rem;
	font-size: 1rem;
	line-height: 1.7;
}

.social--footer a {
	background: rgba(255, 255, 255, 0.08);
}

.footer__col h3 {
	position: relative;
	margin-bottom: 1.5rem;
	padding-bottom: 0.8rem;
	font-size: 1.15rem;
	color: #fff;
}

.footer__col h3::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 34px;
	height: 2px;
	background: var(--gold);
}

.footer-links {
	display: grid;
	gap: 0.7rem;
}

.footer-links a {
	transition: color 0.2s, padding 0.2s;
}

.footer-links a:hover {
	color: var(--gold-2);
	padding-left: 6px;
}

.footer__contact ul {
	display: grid;
	gap: 0.95rem;
}

.footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	line-height: 1.5;
}

.footer__contact .icon {
	margin-top: 0.15rem;
	color: var(--gold);
}

.footer__contact a:hover {
	color: var(--gold-2);
}

.footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	padding-block: 1.4rem;
	font-size: 0.92rem;
}

.footer__bottom p {
	margin: 0;
}

.pay-badges {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

.pay-badges li:not(.pay-badges__label) {
	padding: 0.3rem 0.8rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #e8dcc8;
}

.pay-badges__label {
	margin-right: 0.4rem;
}

/* Responsive grids -------------------------------------------------------- */
@media (max-width: 1100px) {
	.cat-grid,
	.why-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.review-grid,
	.post-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gram-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.story,
	.contact {
		grid-template-columns: 1fr;
	}

	.story__media {
		max-width: 560px;
	}
}

@media (max-width: 782px) {
	.stats__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.stat:nth-child(3) {
		border-left: 0;
	}

	.stat:nth-child(n + 3) {
		border-top: 1px solid var(--line);
	}

	.section-head.has-link {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.6rem;
	}

	.offer__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.offer--center .offer__inner {
		align-items: center;
	}

	.review-grid,
	.post-grid,
	.steps {
		grid-template-columns: 1fr;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.footer__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.whatsapp-float {
		right: 16px;
		bottom: 16px;
		width: 56px;
		height: 56px;
	}

	.to-top {
		left: 14px;
		bottom: 16px;
		width: 44px;
		height: 44px;
	}

	.newsletter__form {
		flex-direction: column;
		border-radius: 24px;
		padding: 0.6rem;
	}

	.newsletter__form input[type="email"] {
		height: 48px;
		text-align: center;
	}

	.hero__dots {
		bottom: 100px;
	}
}

@media (max-width: 520px) {
	.cat-grid {
		gap: 12px;
	}

	.cat-card {
		border-radius: 20px;
		aspect-ratio: 3 / 4.2;
	}

	.why-grid {
		grid-template-columns: 1fr;
	}

	.gram-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Scroll reveal (only when JS is on) ---------------------------------------- */
html.js .reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.8s var(--ease) var(--d, 0ms), transform 0.8s var(--ease) var(--d, 0ms);
}

html.js .reveal.is-in {
	opacity: 1;
	transform: none;
}

/* 10. Print ---------------------------------------------------------------- */
@media print {
	.topbar,
	.site-header,
	.site-footer,
	.whatsapp-float,
	.to-top,
	.cart-drawer,
	.mobile-drawer {
		display: none !important;
	}
}
