/**
 * Kourites — Geom Light design system.
 * Source of truth: references/style-guide/Kourites · Style Guide · Geom Light.html
 */

:root {
	/* Fonts */
	--font-display: "Geom", "Noto Sans", sans-serif;
	--font-body: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	/* Surfaces */
	--bg: #f5f7f9;
	--panel: #ffffff;
	--line: #e5e8ec;
	--line-2: #eef1f4;

	/* Text */
	--text: #1a1b20;
	--text-body: #3a3c44;
	--text-soft: #697079;
	--text-gold: #7c6a3c;
	--on-gold: #1a1610;
	--on-dark: #ffffff;

	/* Accent and controls */
	--gold: #b9a16b;
	--btn-border: rgba(0, 0, 0, 0.22);
	--tag-border: rgba(0, 0, 0, 0.18);
	--tag-soft: rgba(0, 0, 0, 0.04);

	/* Shape and motion */
	--r: 10px;
	--btn-r: 30px;
	--card-r: 20px;
	--motion-fast: 180ms;
	--motion-base: 340ms;
	--ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);

	/* Layout */
	--kourites-gutter: clamp(1.25rem, 4vw, 3.5rem);
	--kourites-section-space: clamp(4rem, 8vw, 6.5rem);
}

/* Homepage */
body.home #page {
	width: 100%;
	max-width: none;
	padding: 0;
}

body.home #page > .site-content {
	display: block;
	padding: 0;
}

body.home #primary,
body.home .kourites-home {
	width: 100%;
	max-width: none;
	margin: 0;
}

.kourites-home { overflow: clip; background: var(--bg); }
.kourites-home .home-wrap { width: 100%; padding-inline: var(--kourites-gutter); }
.home-section { padding-block: var(--kourites-section-space); }
.home-section--compact { padding-top: 0; }
.home-section--white { background: var(--panel); }
.home-eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 16px; color: var(--text-soft); font-size: 11px; font-weight: 700; letter-spacing: .2em; }
.home-eyebrow span { width: 9px; height: 9px; background: var(--gold); }
.home-section__head { margin-bottom: clamp(34px, 4vw, 52px); }
.home-section__head h2 { max-width: 18ch; margin: 0; }
.home-section__head > p { max-width: 60ch; margin: 18px 0 0; padding-left: 20px; border-left: 1px solid var(--gold); color: var(--text-soft); font-size: 16.5px; line-height: 1.7; }
.kourites-arrow { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--motion-fast); }
.kourites-btn, .kourites-link { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-size: 13.5px; font-weight: 600; text-decoration: none; }
.kourites-btn { min-height: 48px; padding: 0 25px; border: 1px solid var(--btn-border); border-radius: var(--btn-r); background: transparent; transition: border-color var(--motion-fast), background-color var(--motion-fast), color var(--motion-fast), filter var(--motion-fast); }
.kourites-btn:hover { border-color: var(--text); }
.kourites-btn:hover .kourites-arrow, .kourites-link:hover .kourites-arrow { transform: translateX(3px); }
.kourites-btn--gold { border-color: var(--gold); background: var(--gold); color: var(--on-gold); }
.kourites-btn--gold:hover { border-color: var(--gold); filter: brightness(1.07); }
.kourites-btn--light { border-color: rgba(255,255,255,.65); color: white; }
.kourites-btn--light:hover { border-color: white; background: rgba(255,255,255,.1); }
.kourites-link { color: var(--text-gold); transition: opacity var(--motion-fast); }
.kourites-link:hover { opacity: .8; }
.home-center { margin: 38px 0 0; text-align: center; }

.home-hero { position: relative; display: flex; min-height: min(860px, calc(100svh - 25px)); margin: 1rem; overflow: hidden; border-radius: 60px; background: #14131a var(--hero-image) center / cover no-repeat; box-shadow: 0 36px 110px -28px rgba(185,161,107,.28); color: white; }
.home-hero::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,9,13,.95), rgba(10,9,13,.78) 46%, rgba(10,9,13,.22)); content: ""; }
.home-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1fr) minmax(250px,340px); align-items: end; width: 100%; padding: clamp(5rem, 11vh, 8rem) calc(var(--kourites-gutter) - 1rem); gap: clamp(2rem, 5vw, 5rem); }
.home-hero__content { max-width: 680px; }
.home-hero .home-eyebrow { color: rgba(255,255,255,.78); }
.home-hero h1 { max-width: 15ch; margin: 0; color: white; font-size: clamp(3rem, 6vw, 5.65rem); line-height: 1.01; }
.home-hero__lead { max-width: 50ch; margin: 26px 0 0; color: rgba(255,255,255,.85); font-size: 18px; line-height: 1.7; }
.home-hero__tags, .home-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.home-hero__tags { margin-top: 27px; }
.home-hero__tags span { padding: 7px 14px; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; font-size: 11px; font-weight: 600; }
.home-actions { margin-top: 34px; }
.home-hero__aside { display: grid; align-content: end; gap: 13px; }
.home-hero__aside > div, .home-hero__aside > a { padding: 20px; border: 1px solid rgba(255,255,255,.17); border-radius: 18px; background: rgba(255,255,255,.07); backdrop-filter: blur(9px); color: white; text-decoration: none; }
.home-hero__aside > a { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 14px; font-weight: 600; }
.home-hero__aside > a:hover { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.13); }
.home-hero__stat strong { display: block; color: white; font-family: var(--font-display); font-size: 38px; line-height: 1; }
.home-hero__stat strong span { color: var(--gold); }
.home-hero__stat small { color: rgba(255,255,255,.7); }
.home-hero__aside img { justify-self: end; margin-top: 32px; object-fit: contain; animation: kourites-spin 22s linear infinite; }
@keyframes kourites-spin { to { transform: rotate(360deg); } }

.home-purpose { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.home-purpose article { position: relative; min-height: 250px; padding: 38px 36px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); }
.home-purpose article::after { position: absolute; top: 8px; right: 20px; color: rgba(185,161,107,.12); content: attr(data-index); font-family: var(--font-display); font-size: 80px; font-weight: 700; }
.home-purpose h3 { position: relative; z-index: 1; margin: 0 0 18px; color: var(--text-gold); font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: .16em; }
.home-purpose p { font-size: 15.5px; line-height: 1.75; }
.home-purpose p { position: relative; z-index: 1; margin: 0; }

.home-paths { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.home-paths > a { position: relative; isolation: isolate; display: flex; align-items: end; justify-content: space-between; min-height: 58vh; padding: 38px; overflow: hidden; border-radius: 20px; color: white; text-decoration: none; transition: transform var(--motion-base) var(--ease-out), box-shadow var(--motion-base); }
.home-paths > a::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, transparent 10%, rgba(16,15,13,.82)); content: ""; }
.home-paths img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.home-paths > a:hover { box-shadow: 0 34px 64px -34px rgba(26,27,32,.5); transform: translateY(-6px); }
.home-paths a:hover img { transform: scale(1.06); }
.home-paths strong, .home-paths small { display: block; }
.home-paths strong { color: white; font-family: var(--font-display); font-size: 24px; }
.home-paths small { max-width: 32ch; margin-top: 6px; color: rgba(255,255,255,.76); }
.home-paths .kourites-arrow { width: 44px; height: 44px; padding: 13px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; }
.home-paths a:hover .kourites-arrow { border-color: var(--gold); background: var(--gold); color: var(--on-gold); transform: rotate(-8deg); }

.home-services { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.home-services > a { position: relative; isolation: isolate; min-height: 280px; padding: 30px 26px; overflow: hidden; border: 1px solid transparent; border-left-color: var(--line); border-radius: 20px; color: inherit; text-decoration: none; transition: transform var(--motion-base) var(--ease-out); }
.home-services > a::before { position: absolute; z-index: -1; top: -46px; right: 0; left: 0; height: 150px; background: radial-gradient(60% 100% at 50% 0%,rgba(185,161,107,.2),transparent 72%); content: ""; filter: blur(10px); opacity: 0; transition: opacity .4s; }
.home-services > a::after { position: absolute; right: 16px; bottom: -12px; color: rgba(26,27,32,.05); content: attr(data-index); font-family: var(--font-display); font-size: 92px; font-weight: 700; }
.home-services > a:hover { transform: translateY(-6px); }
.home-services > a:hover::before { opacity: 1; }
.home-services h3 { min-height: 3em; margin: 0 0 9px; font-size: clamp(19px,1.6vw,21px); font-weight: 600; line-height: 1.25; }
.home-services p { margin: 0 0 16px; color: var(--text-soft); font-size: 14.5px; line-height: 1.6; }
.home-services > a > span { position: absolute; z-index: 1; bottom: 28px; display: flex; align-items: center; gap: 7px; color: var(--text-gold); font-size: 13px; font-weight: 700; }

.home-products { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.home-products > a { padding: 10px 10px 18px; border: 1px solid transparent; border-radius: 18px; color: inherit; text-decoration: none; transition: transform var(--motion-base) var(--ease-out), box-shadow var(--motion-base), border-color var(--motion-base), background-color var(--motion-base); }
.home-products > a:hover { border-color: var(--line); background: var(--panel); box-shadow: 0 30px 60px -32px rgba(26,27,32,.34); transform: translateY(-6px); }
.home-products__image, .home-news__image { display: block; overflow: hidden; border-radius: 18px; background: var(--bg); }
.home-products__image { aspect-ratio: 1 / 1; border-radius: 11px; }
.home-products img, .home-news img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease-out); }
.home-products a:hover img { transform: scale(1.055); }
.home-products small { display: block; margin: 14px 6px 7px; color: var(--text-soft); font-size: 9.5px; font-weight: 600; letter-spacing: .18em; }
.home-news small { display: block; margin: 0 0 10px; color: var(--text-soft); font-size: 10.5px; font-weight: 600; letter-spacing: .16em; }
.home-products h3 { min-height: 2.6em; margin: 0 6px 12px; color: var(--text); font-size: 15.5px; font-weight: 600; line-height: 1.3; transition: color .25s; }
.home-products a:hover h3 { color: var(--text-gold); }
.home-products > a > strong { display: block; margin-inline: 6px; padding: 13px 0 8px; border-top: 1px solid var(--line-2); color: var(--text); font-family: var(--font-display); font-size: 15px; font-weight: 700; }

.home-about { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); align-items: start; gap: clamp(32px,5vw,64px); }
.home-about__image { aspect-ratio: 4 / 5; min-height: 0; overflow: hidden; border-radius: 18px; }
.home-about__image img { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.home-about h2 { max-width: 15ch; margin: 0 0 24px; }
.home-about > div > p:not(.home-eyebrow) { max-width: 52ch; margin-top: 18px; font-size: 16px; line-height: 1.75; }
.home-stats { display: flex; flex-wrap: wrap; gap: 38px; margin: 26px 0 22px; }
.home-stats strong, .home-stats small { display: block; }
.home-stats strong { color: var(--text); font-family: var(--font-display); font-size: 30px; letter-spacing: -.01em; }
.home-stats small { margin-top: 4px; color: var(--text-soft); font-size: 12.5px; }

.home-news { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.home-news > a { display: flex; flex-direction: column; padding: 0 0 24px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--panel); color: inherit; text-decoration: none; transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s; }
.home-news > a:hover { border-color: var(--gold); box-shadow: 0 30px 60px -34px rgba(26,27,32,.3); transform: translateY(-6px); }
.home-news__image { aspect-ratio: 16 / 10; border-radius: 0; }
.home-news a:hover img { transform: scale(1.05); }
.home-news > a > :not(.home-news__image) { margin-right: 22px; margin-left: 22px; }
.home-news > a > small { margin-top: 22px; }
.home-news h3 { margin-top: 0; margin-bottom: 10px; font-size: clamp(19px,1.6vw,21px); font-weight: 600; line-height: 1.25; }
.home-news p { flex: 1; min-height: 0; margin-top: 0; margin-bottom: 16px; color: var(--text-soft); font-size: 14px; line-height: 1.6; }

.home-newsletter { padding-block: var(--kourites-section-space); background: #121117; }
.home-newsletter__band { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(30px,5vw,60px); padding: clamp(34px,4vw,56px); overflow: hidden; border: 1px solid var(--gold); border-radius: 24px; background: linear-gradient(150deg,#1c1b23,#141319); }
.home-newsletter__band::before { position: absolute; top: -170px; right: -120px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle,rgba(185,161,107,.22),transparent 70%); content: ""; pointer-events: none; }
.home-newsletter__band > div { position: relative; }
.home-newsletter h2 { max-width: 14ch; margin-top: 0; color: white; }
.home-newsletter p { max-width: 52ch; color: rgba(255,255,255,.67); }
.home-newsletter__offer { display: inline-flex; align-items: center; gap: 14px; margin-top: 24px; padding: 12px 22px 12px 16px; border: 1px solid rgba(185,161,107,.45); border-radius: 16px; background: rgba(185,161,107,.09); color: var(--gold); font-family: var(--font-display); font-size: 40px; line-height: 1; }
.home-newsletter__offer span { color: white; font-family: var(--font-body); font-size: 13px; font-weight: 600; line-height: 1.3; letter-spacing: .02em; }
.home-newsletter form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.home-newsletter input { min-width: 0; border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: white; }
.home-newsletter ul { margin: 24px 0 0; padding: 0; color: rgba(255,255,255,.7); font-size: 13px; list-style: none; }
.home-newsletter li { margin-top: 10px; }
.home-newsletter li::before { margin-right: 9px; color: var(--gold); content: "✓"; }

/* Shared site footer */
footer.site { padding: clamp(56px, 6vw, 80px) 0 36px; background: var(--text); color: var(--on-dark); }
footer.site .wrap { width: 100%; max-width: none; margin: 0; padding-inline: var(--kourites-gutter); }
footer.site .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
footer.site .logo img { display: block; width: auto; height: 64px; margin-bottom: 18px; }
footer.site p.intro { max-width: 34ch; color: rgba(255,255,255,.6); font-size: 13.5px; line-height: 1.7; }
footer.site h6 { margin-bottom: 16px; color: var(--gold); }
footer.site ul { margin: 0; padding: 0; list-style: none; }
footer.site li { margin-bottom: 11px; }
footer.site a { color: rgba(255,255,255,.78); font-size: 14px; text-decoration: none; transition: color var(--motion-fast); }
footer.site a:hover { color: var(--gold); }
footer.site a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
footer.site .contact { color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.8; }
footer.site .contact b { color: #fff; font-weight: 600; }
footer.site .social { display: flex; gap: 10px; margin-top: 20px; }
footer.site .social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
footer.site .social a:hover { border-color: var(--gold); background: var(--gold); color: var(--on-gold); }
footer.site .social svg { width: 17px; height: 17px; }
footer.site .legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); font-size: 12.5px; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out) var(--reveal-delay,0ms), transform .7s var(--ease-out) var(--reveal-delay,0ms); }
[data-reveal].is-visible, .kourites-no-reveal [data-reveal] { opacity: 1; transform: none; }

@media (max-width: 1040px) {
	.home-services, .home-products { grid-template-columns: repeat(2,1fr); }
	.home-services > a { border-bottom: 1px solid var(--line); }
	footer.site .cols { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 800px) {
	.home-section__head, .home-hero__inner, .home-newsletter__band, .home-about { grid-template-columns: 1fr; }
	.home-hero { min-height: auto; border-radius: 34px; }
	.home-hero__inner { padding-top: 7rem; }
	.home-hero__aside { grid-template-columns: repeat(2,1fr); }
	.home-hero__aside img { display: none; }
	.home-purpose, .home-paths, .home-news { grid-template-columns: 1fr; }
	.home-paths > a { min-height: 470px; }
	.home-about__image, .home-about__image img { min-height: 480px; }
}
@media (max-width: 560px) {
	.home-hero { margin: .5rem; border-radius: 24px; }
	.home-hero__inner { padding: 5rem calc(var(--kourites-gutter) - .5rem) 3rem; }
	.home-hero h1 { font-size: clamp(2.65rem,13vw,4rem); }
	.home-hero__aside, .home-services, .home-products, .home-stats { grid-template-columns: 1fr; }
	.home-hero__aside { display: none; }
	.home-section__head > p { padding: 16px 0 0; border-top: 1px solid var(--gold); border-left: 0; }
	.home-purpose article { padding: 30px 24px; }
	.home-paths > a { min-height: 400px; padding: 26px; }
	.home-products h3, .home-news p { min-height: 0; }
	.home-newsletter form { grid-template-columns: 1fr; }
	.home-newsletter .kourites-btn { justify-content: center; }
	footer.site .cols { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
	.home-hero__aside img { animation: none; }
	[data-reveal] { opacity: 1; transform: none; transition: none; }
}

body.kourites-menu-open {
	overflow: hidden;
}

.kourites-header {
	display: contents;
	font-family: var(--font-body);
}

.kourites-utility {
	border-bottom: 1px solid var(--line-2);
	background: var(--bg);
}

.kourites-utility__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 38px;
	padding-inline: var(--kourites-gutter);
	gap: 20px;
}

.kourites-socials,
.kourites-utility__actions,
.kourites-language {
	display: flex;
	align-items: center;
}

.kourites-socials {
	gap: 14px;
}

.kourites-socials a,
.kourites-platform-link {
	display: inline-flex;
	align-items: center;
	color: var(--text-soft);
	text-decoration: none;
	transition: color var(--motion-fast);
}

.kourites-socials a:hover,
.kourites-platform-link:hover {
	color: var(--text-gold);
}

.kourites-socials svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.kourites-socials svg .is-fill {
	fill: currentColor;
	stroke: none;
}

.kourites-utility__actions {
	gap: 14px;
	font-size: 12px;
	font-weight: 600;
}

.kourites-platform-link {
	gap: 6px;
}

.kourites-platform-link svg {
	width: 12px;
	height: 12px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.kourites-utility__separator {
	width: 1px;
	height: 13px;
	background: var(--line);
}

.kourites-language {
	gap: 6px;
	color: var(--text-soft);
}

.kourites-language [aria-current="page"] {
	color: var(--text);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.kourites-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
}

.admin-bar .kourites-site-header {
	top: 32px;
}

.kourites-header-pill {
	display: flex;
	align-items: center;
	min-height: 68px;
	margin: 14px var(--kourites-gutter);
	padding: 0 14px 0 26px;
	gap: 24px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 24px 64px -28px rgba(185, 161, 107, 0.34), 0 6px 22px -12px rgba(0, 0, 0, 0.1);
	backdrop-filter: saturate(120%) blur(14px);
	-webkit-backdrop-filter: saturate(120%) blur(14px);
	transition: min-height 250ms, margin 250ms, box-shadow 250ms;
}

.kourites-header.is-scrolled .kourites-header-pill {
	min-height: 60px;
	margin-top: 10px;
	box-shadow: 0 18px 50px -26px rgba(0, 0, 0, 0.34);
}

.kourites-brand,
.kourites-brand .custom-logo-link,
.kourites-brand__fallback {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.kourites-brand .custom-logo-link,
.kourites-brand__fallback {
	gap: 11px;
	color: var(--text);
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1;
	text-decoration: none;
}

.kourites-brand .custom-logo {
	display: block;
	width: auto;
	max-width: 160px;
	height: 38px;
	object-fit: contain;
}

.kourites-brand__logo {
	display: block;
	width: 40px;
	height: 38px;
	object-fit: contain;
}

.kourites-nav {
	display: flex;
	align-items: center;
	margin-left: 0;
}

.kourites-nav__list,
.kourites-nav__list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.kourites-nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
}

.kourites-nav__list > li {
	position: relative;
}

.kourites-nav__list a {
	display: flex;
	align-items: center;
	min-height: 42px;
	padding: 0 13px;
	border-radius: 999px;
	color: var(--text);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: color var(--motion-fast), background-color var(--motion-fast);
}

.kourites-nav__list > li > a {
	position: relative;
	min-height: 0;
	padding: 22px 12px;
	border-radius: 0;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.kourites-nav__list > li > a::before {
	position: absolute;
	right: 12px;
	bottom: 14px;
	left: 12px;
	height: 1.5px;
	background: var(--gold);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.kourites-nav__list a[target="_blank"]::after {
	display: inline-block;
	margin-left: 6px;
	content: "↗";
	font-family: var(--font-body);
	font-size: 0.82em;
	font-weight: 500;
	line-height: 1;
	transform: translateY(-1px);
}

.kourites-nav__list > li > a:hover,
.kourites-nav__list > li > a:focus-visible,
.kourites-nav__list > .current-menu-item > a,
.kourites-nav__list > .current-menu-ancestor > a {
	background: transparent;
	color: var(--text-gold);
}

.kourites-nav__list > li > a:hover::before,
.kourites-nav__list > li > a:focus-visible::before,
.kourites-nav__list > .current-menu-item > a::before,
.kourites-nav__list > .current-menu-ancestor > a::before {
	transform: scaleX(1);
}

.kourites-nav__list .menu-item-has-children > a::after {
	width: 6px;
	height: 6px;
	margin-left: 8px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	content: "";
	transform: translateY(-2px) rotate(45deg);
}

.kourites-nav__list .sub-menu {
	position: absolute;
	top: calc(100% - 2px);
	left: 0;
	min-width: 280px;
	padding: 10px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: var(--panel);
	box-shadow: 0 30px 70px -30px rgba(26, 27, 32, 0.4);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 200ms, visibility 200ms, transform 200ms;
}

.kourites-nav__list li:hover > .sub-menu,
.kourites-nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.kourites-nav__list .sub-menu a {
	min-height: 0;
	padding: 12px 15px;
	border-radius: 12px;
	font-size: 13.5px;
}

.kourites-nav__list .sub-menu a:hover,
.kourites-nav__list .sub-menu a:focus-visible {
	background: rgba(185, 161, 107, 0.14);
	color: var(--text-gold);
}

.kourites-header-actions {
	display: flex;
	align-items: center;
	margin-left: auto;
	gap: 8px;
	flex: 0 0 auto;
}

.kourites-nav-close {
	display: none;
}

.kourites-icon-button,
.kourites-menu-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	min-height: 42px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: transparent;
	color: var(--text);
	text-decoration: none;
	transition: color var(--motion-fast), border-color var(--motion-fast), background-color var(--motion-fast);
}

.kourites-icon-button:hover,
.kourites-menu-toggle:hover {
	border-color: var(--gold);
	background: transparent;
	color: var(--text-gold);
}

.kourites-icon-button svg,
.kourites-menu-toggle svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.kourites-cart__count {
	position: absolute;
	top: -3px;
	right: -3px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--on-gold);
	font-size: 10px;
	font-weight: 700;
}

.kourites-menu-toggle {
	display: none;
	width: auto;
	padding-inline: 16px;
	border-radius: 999px;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: none;
}

.kourites-menu-scrim {
	position: fixed;
	z-index: 90;
	inset: 0;
	background: rgba(16, 16, 16, 0.24);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	opacity: 0;
	pointer-events: none;
	transition: opacity 250ms;
}

.kourites-menu-scrim.is-open {
	opacity: 1;
	pointer-events: auto;
}

@media (max-width: 1180px) {
	.kourites-header-pill {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.kourites-menu-toggle {
		display: inline-flex;
	}

	.kourites-nav {
		position: fixed;
		z-index: 1000;
		inset: 0 0 0 auto;
		width: min(420px, 90vw);
		height: 100vh;
		height: 100dvh;
		margin: 0;
		padding: 90px 26px 40px;
		border-left: 2px solid var(--gold);
		background: var(--panel);
		box-shadow: -30px 0 70px -30px rgba(0, 0, 0, 0.4);
		overflow-y: auto;
		transform: translateX(100%);
		transition: transform 340ms cubic-bezier(0.4, 0, 0.2, 1);
	}

	.kourites-nav-close {
		position: absolute;
		top: 26px;
		right: 26px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 42px;
		height: 42px;
		min-height: 42px;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: transparent;
		color: var(--text);
		cursor: pointer;
	}

	.kourites-nav-close:hover {
		background: rgba(185, 161, 107, 0.14);
		color: var(--text-gold);
	}

	.kourites-nav-close svg {
		width: 20px;
		height: 20px;
		fill: none;
		stroke: currentColor;
		stroke-linecap: round;
		stroke-width: 1.8;
	}

	.kourites-nav.is-open {
		transform: translateX(0);
	}

	.kourites-nav__list {
		display: block;
	}

	.kourites-nav__list a {
		min-height: 50px;
		padding-inline: 6px;
		border-bottom: 1px solid var(--line-2);
		border-radius: 0;
		font-size: 15px;
	}

	.kourites-nav__list > li > a:hover,
	.kourites-nav__list > li > a:focus-visible,
	.kourites-nav__list > .current-menu-item > a,
	.kourites-nav__list > .current-menu-ancestor > a {
		background: transparent;
	}

	.kourites-nav__list > li > a::before {
		display: none;
	}

	.kourites-nav__list .sub-menu {
		position: static;
		min-width: 0;
		padding: 2px 0 8px 18px;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.kourites-nav__list .sub-menu a {
		min-height: 42px;
		padding: 8px 6px;
		border: 0;
		font-size: 13px;
		font-weight: 500;
	}
}

@media (max-width: 782px) {
	.admin-bar .kourites-site-header {
		top: 46px;
	}
}

@media (max-width: 640px) {
	.kourites-socials {
		display: none;
	}

	.kourites-utility__inner {
		justify-content: flex-end;
	}

	.kourites-header-pill {
		min-height: 60px;
		margin: 10px 12px;
		padding: 0 10px 0 18px;
		gap: 12px;
	}

	.kourites-brand .custom-logo {
		max-width: 120px;
		height: 32px;
	}

	.kourites-icon-button {
		display: none;
	}

	.kourites-icon-button.kourites-cart {
		display: inline-flex;
	}

	.kourites-menu-toggle {
		display: inline-flex;
	}
}

html {
	scroll-behavior: smooth;
}

body,
button,
input,
select,
textarea {
	font-family: var(--font-body);
}

body {
	background: var(--bg);
	color: var(--text-body);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-title {
	font-family: var(--font-display);
	color: var(--text);
}

h1 {
	font-size: clamp(34px, 4.4vw, 50px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.02em;
}

h2 {
	font-size: clamp(28px, 3.2vw, 38px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.015em;
}

h3 {
	font-size: clamp(22px, 2.4vw, 28px);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -0.01em;
}

h4 {
	font-size: clamp(19px, 1.6vw, 21px);
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.005em;
}

h5 {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
}

h6 {
	color: var(--text-soft);
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.14em;
	text-transform: none;
}

p {
	color: var(--text-body);
	font-size: 16px;
	line-height: 1.7;
}

a {
	color: var(--text-gold);
	text-underline-offset: 0.18em;
	text-decoration-thickness: 1px;
}

a:hover,
a:focus {
	color: var(--text);
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
}

::selection {
	background: var(--gold);
	color: var(--on-gold);
}

.kourites-wrap {
	width: 100%;
	padding-inline: var(--kourites-gutter);
}

.kourites-section {
	padding-block: var(--kourites-section-space);
}

.kourites-section--paper {
	background: var(--bg);
}

.kourites-section--white {
	background: var(--panel);
}

.kourites-section--dark {
	background: #121117;
	color: var(--on-dark);
}

.body-l {
	color: var(--text-body);
	font-size: 18px;
	line-height: 1.7;
}

.small {
	color: var(--text-soft);
	font-size: 13px;
	line-height: 1.6;
}

.eyebrow,
.overline {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--text-soft);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.22em;
	text-transform: none;
}

.eyebrow::before,
.eyebrow .mk {
	width: 9px;
	height: 9px;
	border-radius: 1px;
	background: var(--gold);
	content: "";
	flex: 0 0 auto;
}

.eyebrow:has(.mk)::before {
	display: none;
}

.btn,
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 14px 26px;
	border: 1px solid var(--btn-border);
	border-radius: var(--btn-r);
	background: transparent;
	color: var(--text);
	font-family: var(--font-body);
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: color var(--motion-fast), background-color var(--motion-fast), border-color var(--motion-fast), transform var(--motion-fast), filter var(--motion-fast);
}

.btn:hover,
.button:hover,
button:hover,
input[type="submit"]:hover,
.wp-element-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	border-color: var(--text);
	background: transparent;
	color: var(--text);
}

.btn.solid,
.button.alt,
.wp-element-button,
input[type="submit"],
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
	border-color: var(--gold);
	background: var(--gold);
	color: var(--on-gold);
}

.btn.solid:hover,
.button.alt:hover,
.wp-element-button:hover,
input[type="submit"]:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
	border-color: var(--gold);
	background: var(--gold);
	color: var(--on-gold);
	filter: brightness(1.06);
}

.btn.light {
	border-color: rgba(255, 255, 255, 0.85);
	color: var(--on-dark);
}

.btn.light:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.lk {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--text-gold);
	font-size: 13.5px;
	font-weight: 600;
	text-decoration: none;
	transition: opacity var(--motion-fast);
}

.lk:hover {
	color: var(--text-gold);
	opacity: 0.8;
}

.tag {
	display: inline-flex;
	align-items: center;
	padding: 8px 15px;
	border: 1px solid var(--tag-border);
	border-radius: 999px;
	color: var(--text);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.tag.solid {
	border-color: var(--gold);
	background: var(--gold);
	color: var(--on-gold);
}

.tag.soft {
	border-color: transparent;
	background: var(--tag-soft);
}

blockquote,
.wp-block-quote {
	max-width: 60ch;
	margin: 18px 0;
	padding: 6px 0 6px 20px;
	border-left: 3px solid var(--gold);
	color: var(--text-soft);
	font-size: 18px;
	line-height: 1.6;
}

:where(.entry-content, .editor-styles-wrapper) li::marker {
	color: var(--gold);
}

label,
.field-label {
	display: block;
	margin-bottom: 7px;
	color: var(--text);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.01em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="password"],
input[type="number"],
textarea,
select {
	width: 100%;
	padding: 13px 15px;
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: var(--panel);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 15px;
	transition: border-color var(--motion-fast), box-shadow var(--motion-fast);
}

input::placeholder,
textarea::placeholder {
	color: var(--text-soft);
	opacity: 1;
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(185, 161, 107, 0.2);
}

textarea {
	min-height: 118px;
	line-height: 1.6;
	resize: vertical;
}

select {
	padding-right: 42px;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23697079' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
}

input[type="checkbox"],
input[type="radio"] {
	accent-color: var(--gold);
}

:where(input, textarea, select, button):disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.field-error :where(input, textarea, select),
.woocommerce-invalid :where(input, textarea, select) {
	border-color: #b00020;
}

.field-error__message,
.woocommerce-error {
	color: #b00020;
	font-size: 12.5px;
}

.sec-head .lead {
	max-width: 60ch;
	margin-top: 16px;
	padding-left: 20px;
	border-left: 1px solid var(--gold);
	color: var(--text-soft);
	font-size: 16px;
	line-height: 1.7;
}

.sec-head.center {
	text-align: center;
}

.sec-head.center .eyebrow {
	justify-content: center;
}

.sec-head.center .lead {
	margin-inline: auto;
	padding-left: 0;
	border-left: 0;
}

.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(272px, 100%), 1fr));
	gap: 14px;
}

.card {
	position: relative;
	isolation: isolate;
	display: block;
	overflow: hidden;
	padding: 30px 28px 28px;
	border: 1px solid transparent;
	border-radius: var(--card-r);
	background: transparent;
	color: inherit;
	text-decoration: none;
	transition: transform var(--motion-base) var(--ease-out), box-shadow var(--motion-base), border-color var(--motion-base), background-color var(--motion-base);
}

.card::before {
	position: absolute;
	z-index: -1;
	top: -46px;
	right: 0;
	left: 0;
	height: 150px;
	background: radial-gradient(60% 100% at 50% 0%, rgba(185, 161, 107, 0.2), transparent 72%);
	content: "";
	filter: blur(10px);
	opacity: 0;
	transition: opacity 400ms ease;
}

.card::after {
	position: absolute;
	z-index: -1;
	right: 20px;
	bottom: 2px;
	color: rgba(26, 27, 32, 0.05);
	content: attr(data-idx);
	font-family: var(--font-display);
	font-size: 96px;
	font-weight: 700;
	line-height: 1;
}

.card:hover {
	color: inherit;
	transform: translateY(-6px);
}

.card:hover::before {
	opacity: 1;
}

.card .icn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 22px;
	border: 1px solid rgba(185, 161, 107, 0.34);
	border-radius: 15px;
	background: linear-gradient(155deg, rgba(185, 161, 107, 0.2), rgba(185, 161, 107, 0.05));
	color: var(--text-gold);
	transition: transform var(--motion-base) var(--ease-out), background-color 300ms, color 300ms, border-color 300ms;
}

.card:hover .icn {
	border-color: var(--gold);
	background: var(--gold);
	color: var(--on-gold);
	transform: rotate(-5deg) scale(1.05);
}

.card.cta-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-color: var(--text);
	background: var(--text);
	color: var(--on-dark);
}

.card.cta-card::after {
	display: none;
}

.card.cta-card :where(h2, h3, h4, h5, h6) {
	color: var(--on-dark);
}

.card.cta-card p {
	color: rgba(255, 255, 255, 0.72);
}

.woocommerce ul.products li.product {
	padding: 10px 10px 8px;
	border: 1px solid transparent;
	border-radius: 16px;
	transition: transform var(--motion-base) var(--ease-out), box-shadow var(--motion-base), border-color var(--motion-base), background-color var(--motion-base);
}

.woocommerce ul.products li.product:hover {
	border-color: var(--line);
	background: var(--panel);
	box-shadow: 0 30px 60px -32px rgba(26, 27, 32, 0.34);
	transform: translateY(-6px);
}

.woocommerce ul.products li.product img {
	border-radius: 11px;
	transition: transform 600ms var(--ease-out);
}

.woocommerce ul.products li.product:hover img {
	transform: scale(1.035);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	color: var(--text);
	font-family: var(--font-display);
	font-size: clamp(19px, 1.6vw, 21px);
	font-weight: 600;
	line-height: 1.25;
}

.woocommerce div.product .product_title {
	font-family: var(--font-display);
	font-size: clamp(34px, 4.4vw, 50px);
	font-weight: 700;
	line-height: 1.05;
}

.woocommerce .price {
	color: var(--text);
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 700;
}

.woocommerce .price del {
	color: var(--text-soft);
	font-family: var(--font-body);
	font-size: 0.82em;
	font-weight: 400;
	opacity: 1;
}

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

	.btn,
	.button,
	button,
	input[type="submit"],
	.wp-element-button {
		min-height: 46px;
		padding-inline: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
