/* ===================================================================
   Gold Touch — main.css
   Premium, cinematic single-page theme.
=================================================================== */

:root {
	--gt-gold:        #C8A23D;
	--gt-gold-soft:   #D9B456;
	--gt-gold-deep:   #8B6914;
	--gt-brown:       #3D2B1F;
	--gt-brown-deep:  #2A1B12;
	--gt-charcoal:    #1A1108;
	--gt-charcoal-2:  #120B05;
	--gt-cream:       #FDF8ED;
	--gt-cream-2:     #F5EDD8;
	--gt-green:       #4A7C59;

	--gt-ink:         #1A1108;
	--gt-ink-soft:    #4A382B;
	--gt-paper:       #FDF8ED;
	--gt-line:        rgba(26, 17, 8, 0.12);
	--gt-line-soft:   rgba(26, 17, 8, 0.06);
	--gt-line-on-dark: rgba(200, 162, 61, 0.22);

	--font-display:   'Cormorant Garamond', 'Bodoni Moda', Georgia, serif;
	--font-body:      'DM Sans', 'Outfit', system-ui, -apple-system, sans-serif;

	--max-w:          1320px;
	--max-w-narrow:   960px;
	--pad-x:          clamp(20px, 5vw, 56px);
	--section-y:      clamp(96px, 13vw, 180px);
	--radius:         14px;
	--radius-lg:      24px;
	--ease:           cubic-bezier(0.33, 1, 0.68, 1);
	--ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
	--dur:            650ms;

	--shadow-soft:    0 12px 40px rgba(26, 17, 8, 0.08);
	--shadow-lift:    0 24px 80px rgba(26, 17, 8, 0.16);
	--shadow-deep:    0 40px 120px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--gt-ink);
	background: var(--gt-paper);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; transition: color .2s var(--ease), opacity .2s var(--ease); }
a:hover { color: var(--gt-gold-deep); }

button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }

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

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px,1px,1px,1px);
	width: 1px; height: 1px;
	overflow: hidden;
}
.skip-link:focus {
	position: fixed; top: 16px; left: 16px;
	background: var(--gt-ink); color: var(--gt-gold);
	padding: 10px 14px; border-radius: 8px;
	clip: auto; width: auto; height: auto;
	z-index: 9999;
}

/* Typography --------------------------------------------------------- */

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -0.015em;
	margin: 0 0 .4em;
}

.section__title {
	font-size: clamp(2.2rem, 5.2vw, 4.4rem);
	font-weight: 400;
}

.section__lead {
	font-size: clamp(1.05rem, 1.35vw, 1.28rem);
	color: var(--gt-ink-soft);
	max-width: 60ch;
	line-height: 1.6;
}

.eyebrow {
	display: inline-block;
	font-family: var(--font-body);
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--gt-gold-deep);
	margin-bottom: 18px;
	position: relative;
}
.eyebrow::before {
	content: '';
	display: inline-block;
	width: 24px; height: 1px;
	background: var(--gt-gold);
	vertical-align: middle;
	margin-right: 12px;
	transform: translateY(-2px);
}

/* Layout helpers ----------------------------------------------------- */

.section { position: relative; padding: var(--section-y) 0; }
.section__container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); position: relative; z-index: 2; }
.section__head { max-width: 760px; margin: 0 auto clamp(48px, 7vw, 88px); text-align: center; }
.section__head .section__lead { margin-left: auto; margin-right: auto; }
.section__head .eyebrow::after { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--gt-gold); vertical-align: middle; margin-left: 12px; transform: translateY(-2px); }

.grain {
	position: absolute; inset: 0;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' seed='5'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/></svg>");
	mix-blend-mode: overlay;
	opacity: .22;
	pointer-events: none;
	z-index: 1;
}

/* Buttons ------------------------------------------------------------ */

.btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 10px;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: .92rem;
	letter-spacing: .06em;
	padding: 15px 30px;
	border-radius: 999px;
	border: 1px solid transparent;
	transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
	cursor: pointer;
	will-change: transform;
	text-transform: uppercase;
	position: relative;
}
.btn__arrow { display: inline-block; transition: transform .3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
	background: var(--gt-gold); color: var(--gt-charcoal);
	border-color: var(--gt-gold);
	box-shadow: 0 10px 28px rgba(200, 162, 61, 0.25);
}
.btn--primary:hover {
	background: var(--gt-gold-deep); border-color: var(--gt-gold-deep); color: var(--gt-cream);
	box-shadow: 0 14px 36px rgba(139, 105, 20, 0.4);
}

.btn--ghost {
	background: transparent; color: var(--gt-cream);
	border-color: var(--gt-line-on-dark);
}
.btn--ghost:hover { background: rgba(200,162,61,.08); border-color: var(--gt-gold); color: var(--gt-gold); }

/* Light-section ghost button override */
.section--about .btn--ghost, .section--usp .btn--ghost, .section--buy .btn--ghost, .section--recipes .btn--ghost, .section--contact .btn--ghost {
	color: var(--gt-ink); border-color: var(--gt-line);
}
.section--about .btn--ghost:hover, .section--usp .btn--ghost:hover, .section--buy .btn--ghost:hover, .section--recipes .btn--ghost:hover, .section--contact .btn--ghost:hover {
	background: rgba(200,162,61,.08); color: var(--gt-gold-deep); border-color: var(--gt-gold);
}

/* Header ------------------------------------------------------------- */

.site-header {
	position: fixed; inset: 0 0 auto 0;
	z-index: 100;
	padding: 18px var(--pad-x);
	transition: background .4s var(--ease), backdrop-filter .4s var(--ease), padding .4s var(--ease);
}
.site-header[data-scrolled="true"] {
	background: rgba(26, 17, 8, 0.82);
	backdrop-filter: saturate(160%) blur(16px);
	-webkit-backdrop-filter: saturate(160%) blur(16px);
	padding-top: 12px; padding-bottom: 12px;
	box-shadow: 0 1px 0 var(--gt-line-on-dark);
}

.site-header__inner {
	max-width: var(--max-w);
	margin: 0 auto;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 32px;
}

.site-header__brand {
	display: inline-flex; flex-direction: column; line-height: 1;
	color: var(--gt-cream);
}
.site-header__mark {
	font-family: var(--font-display);
	font-size: 1.6rem; letter-spacing: .02em;
	font-weight: 500;
}
.site-header__tagline {
	font-size: .64rem; letter-spacing: .28em; text-transform: uppercase;
	color: var(--gt-gold);
	margin-top: 4px;
	font-weight: 500;
}

.site-nav__list {
	display: flex; gap: 36px; justify-content: center;
	list-style: none; padding: 0; margin: 0;
}
.site-nav__list a {
	color: var(--gt-cream);
	font-size: .85rem; letter-spacing: .1em;
	text-transform: uppercase;
	position: relative;
	padding: 8px 0;
}
.site-nav__list a::after {
	content: ''; position: absolute; left: 0; bottom: 0;
	width: 100%; height: 1px; background: var(--gt-gold);
	transform: scaleX(0); transform-origin: right;
	transition: transform .4s var(--ease);
}
.site-nav__list a:hover { color: var(--gt-gold); }
.site-nav__list a:hover::after { transform: scaleX(1); transform-origin: left; }

.site-nav__toggle {
	display: none;
	width: 40px; height: 40px;
	flex-direction: column; justify-content: center; align-items: center; gap: 5px;
	color: var(--gt-cream);
}
.site-nav__toggle span {
	display: block; width: 22px; height: 1.5px; background: currentColor;
	transition: transform .3s var(--ease), opacity .3s var(--ease);
}
body.nav-open .site-nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .site-nav__toggle span:nth-child(2) { opacity: 0; }
body.nav-open .site-nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Hero --------------------------------------------------------------- */

.section--hero {
	min-height: 100vh;
	display: grid; place-items: center;
	color: var(--gt-cream);
	background: var(--gt-charcoal);
	overflow: hidden;
	padding: clamp(120px, 15vw, 180px) 0 clamp(80px, 10vw, 120px);
}

.hero__bg {
	position: absolute; inset: 0;
	background: radial-gradient(ellipse at 15% 20%, rgba(200,162,61,.22), transparent 55%),
	            radial-gradient(ellipse at 85% 80%, rgba(139,105,20,.28), transparent 50%),
	            radial-gradient(ellipse at 50% 50%, rgba(61,43,31,.6), transparent 70%),
	            var(--gt-charcoal);
}
.hero__mesh {
	position: absolute; inset: 0;
	background: conic-gradient(from 200deg at 70% 40%, transparent, rgba(200,162,61,.14), transparent 40%),
	            conic-gradient(from 40deg at 30% 60%, transparent, rgba(139,105,20,.18), transparent 35%);
	filter: blur(60px);
	opacity: .9;
	animation: gtMeshDrift 22s linear infinite;
}
@keyframes gtMeshDrift {
	0%,100% { transform: translate(0,0) scale(1); }
	50% { transform: translate(20px,-20px) scale(1.05); }
}

.hero__particles {
	position: absolute; inset: 0;
	pointer-events: none;
	overflow: hidden;
}
.hero__particle {
	position: absolute;
	width: 3px; height: 3px;
	border-radius: 50%;
	background: var(--gt-gold);
	opacity: 0;
	filter: blur(.5px);
	box-shadow: 0 0 12px rgba(200,162,61,.6);
	animation: gtFloat var(--d, 14s) linear infinite;
	animation-delay: var(--delay, 0s);
}
@keyframes gtFloat {
	0% { transform: translate3d(0, 110vh, 0) scale(.4); opacity: 0; }
	10% { opacity: .8; }
	90% { opacity: .8; }
	100% { transform: translate3d(var(--x, 20px), -10vh, 0) scale(1.2); opacity: 0; }
}

.hero__container {
	position: relative; z-index: 3;
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 var(--pad-x);
	text-align: center;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
}

.hero__copy { position: relative; z-index: 3; }

.hero__badge {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 9px 22px;
	border: 1px solid rgba(200,162,61,.45);
	border-radius: 999px;
	font-size: .7rem; letter-spacing: .28em; text-transform: uppercase;
	color: var(--gt-gold);
	margin-bottom: 32px;
	background: linear-gradient(135deg, rgba(200,162,61,.14), rgba(200,162,61,.04));
	backdrop-filter: blur(12px);
	font-weight: 500;
	box-shadow: 0 0 24px rgba(200,162,61,.12);
}
.hero__badge .dot { color: var(--gt-gold); font-size: .8em; }

.hero__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(3rem, 8vw, 7.5rem);
	line-height: .95;
	letter-spacing: -0.025em;
	margin: 0 0 28px;
}
.hero__title-line { display: block; overflow: hidden; }
.hero__title-inner { display: inline-block; }
.hero__title-line--accent .hero__title-inner {
	color: var(--gt-gold);
	font-style: italic;
	background: linear-gradient(110deg, var(--gt-gold-soft) 0%, var(--gt-gold) 40%, var(--gt-gold-deep) 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero__lead {
	max-width: 54ch;
	margin: 0 auto 44px;
	font-size: clamp(1.05rem, 1.4vw, 1.32rem);
	color: rgba(253, 248, 237, .78);
	line-height: 1.55;
}

.hero__actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero__3d-wrap {
	position: relative;
	width: 100%;
	height: clamp(320px, 48vh, 540px);
	margin-top: clamp(20px, 3vw, 40px);
}
.hero__3d {
	position: absolute; inset: 0;
	pointer-events: none;
}
.hero__3d canvas { display: block; margin: 0 auto; }
.hero__3d-fallback {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	pointer-events: none;
}
.hero__3d-fallback img {
	max-height: 100%; max-width: 60%; object-fit: contain;
	filter: drop-shadow(0 40px 60px rgba(200,162,61,.35));
	animation: gtFloatJar 6s ease-in-out infinite;
}
@keyframes gtFloatJar {
	0%,100% { transform: translateY(0); }
	50% { transform: translateY(-16px); }
}
.js-three-ready .hero__3d-fallback { display: none; }

.hero__scroll {
	position: absolute; left: 50%; bottom: 28px;
	transform: translateX(-50%);
	display: inline-flex; flex-direction: column; align-items: center; gap: 14px;
	color: var(--gt-gold);
	font-size: .64rem; letter-spacing: .36em; text-transform: uppercase;
	z-index: 5;
	font-weight: 500;
}
.hero__scroll-line {
	width: 2px; height: 56px;
	background: linear-gradient(180deg, var(--gt-gold-soft), var(--gt-gold), var(--gt-gold-deep));
	border-radius: 2px;
	animation: gtScrollLine 2.4s var(--ease) infinite;
	transform-origin: top;
	box-shadow: 0 0 10px rgba(200,162,61,.6);
}
@keyframes gtScrollLine {
	0%   { transform: scaleY(0); transform-origin: top; }
	45%  { transform: scaleY(1); transform-origin: top; }
	55%  { transform: scaleY(1); transform-origin: bottom; }
	100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Marquee ----------------------------------------------------------- */

.section--marquee {
	background: linear-gradient(90deg, #1A1108 0%, #2A1B12 50%, #1A1108 100%);
	color: var(--gt-gold);
	padding: 40px 0;
	border-top: 1px solid rgba(200,162,61,.35);
	border-bottom: 1px solid rgba(200,162,61,.35);
	overflow: hidden;
	position: relative;
}
.section--marquee::before,
.section--marquee::after {
	content: '';
	position: absolute;
	top: 0; bottom: 0;
	width: 140px;
	z-index: 2;
	pointer-events: none;
}
.section--marquee::before { left: 0; background: linear-gradient(90deg, #1A1108, transparent); }
.section--marquee::after  { right: 0; background: linear-gradient(-90deg, #1A1108, transparent); }
.marquee { overflow: hidden; position: relative; z-index: 1; }
.marquee__track {
	display: flex; gap: 0;
	animation: gtMarquee 38s linear infinite;
	width: max-content;
}
.marquee__group {
	display: flex; gap: 44px; padding-right: 44px;
	align-items: center;
}
.marquee__item {
	font-family: var(--font-display); font-style: italic;
	font-size: clamp(1.4rem, 2.3vw, 2.1rem);
	white-space: nowrap;
	font-weight: 400;
	color: var(--gt-gold);
	text-shadow: 0 0 22px rgba(200,162,61,.25);
}
.marquee__sep {
	color: var(--gt-gold);
	font-size: 1em;
	line-height: 0;
	opacity: .7;
}
@keyframes gtMarquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* About ------------------------------------------------------------- */

.section--about {
	background: var(--gt-cream);
	position: relative;
	overflow: hidden;
}
.section--about::before {
	content: '';
	position: absolute; top: -120px; right: -200px;
	width: 480px; height: 480px; border-radius: 50%;
	background: radial-gradient(circle, rgba(200,162,61,.14), transparent 70%);
	z-index: 0;
}

.about__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(40px, 7vw, 112px);
	align-items: center;
}
.about__media {
	position: relative;
	aspect-ratio: 4/5;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lift);
	background:
		radial-gradient(circle at 60% 40%, rgba(217, 180, 86, 0.5), transparent 55%),
		linear-gradient(160deg, #8B6914 0%, #3D2B1F 55%, #1A1108 100%);
}
.about__media::before {
	content: '';
	position: absolute; inset: 0;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' seed='7'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/></svg>");
	mix-blend-mode: overlay;
	opacity: .25;
	pointer-events: none;
}
.about__image {
	position: absolute;
	inset: 10% 8% 18%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transform: scale(1);
	transition: transform 1.2s var(--ease);
	filter: drop-shadow(0 24px 48px rgba(0,0,0,.45));
	z-index: 2;
}
.about__media:hover .about__image { transform: scale(1.03); }
.about__media::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(200deg, transparent 50%, rgba(26,17,8,.35) 100%);
	pointer-events: none;
	z-index: 1;
}

.about__badge {
	position: absolute; bottom: 24px; right: 24px;
	background: var(--gt-cream); color: var(--gt-ink);
	padding: 18px 24px; border-radius: 12px;
	box-shadow: var(--shadow-lift);
	display: flex; flex-direction: column; align-items: center; gap: 8px;
	font-family: var(--font-display);
	z-index: 2;
}
.about__badge-top { font-size: 1rem; font-weight: 600; letter-spacing: .14em; }
.about__badge-line { width: 28px; height: 1px; background: var(--gt-gold); }
.about__badge-bot { font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; font-family: var(--font-body); }

.about__content { position: relative; z-index: 1; }

.stats {
	display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px; margin-top: 52px;
	padding-top: 40px; border-top: 1px solid var(--gt-line);
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__number-wrap {
	display: flex; align-items: baseline; gap: 2px;
	font-family: var(--font-display);
	color: var(--gt-gold-deep);
	line-height: 1;
}
.stat__number { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 500; }
.stat__suffix { font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--gt-gold); }
.stat__label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gt-ink-soft); font-weight: 500; }

/* Products ---------------------------------------------------------- */

.section--products {
	background: var(--gt-charcoal);
	color: var(--gt-cream);
	position: relative;
	overflow: hidden;
}
.section--products::before {
	content: '';
	position: absolute; inset: 0;
	background:
		radial-gradient(ellipse at 10% 0%, rgba(200,162,61,.12), transparent 45%),
		radial-gradient(ellipse at 90% 100%, rgba(139,105,20,.15), transparent 45%);
	z-index: 0;
}
.section--products .eyebrow { color: var(--gt-gold); }
.section--products .eyebrow::before, .section--products .eyebrow::after { background: var(--gt-gold); }
.section--products .section__title { color: var(--gt-cream); }
.section--products .section__lead { color: rgba(253,248,237,.75); }

.tabs {
	display: inline-flex; gap: 4px;
	background: rgba(253,248,237,.04);
	border: 1px solid var(--gt-line-on-dark);
	border-radius: 999px;
	padding: 5px;
	margin: 0 auto 56px;
	backdrop-filter: blur(12px);
}
.section--products .tabs {
	display: flex;
	width: fit-content;
	margin-left: auto; margin-right: auto;
}
.tabs__tab {
	padding: 12px 28px;
	background: transparent;
	color: rgba(253,248,237,.75);
	border-radius: 999px;
	font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
	font-weight: 500;
	transition: background .3s var(--ease), color .3s var(--ease);
}
.tabs__tab.is-active { background: var(--gt-gold); color: var(--gt-charcoal); font-weight: 600; }

.product-grid {
	display: grid; gap: 28px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
	position: relative;
	background: linear-gradient(180deg, rgba(253,248,237,.05), rgba(253,248,237,.01));
	border: 1px solid var(--gt-line-on-dark);
	border-radius: var(--radius-lg);
	padding: 36px 24px 28px;
	transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
	will-change: transform;
	overflow: hidden;
	transform-style: preserve-3d;
}
.product-card::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(circle at 50% 0%, rgba(200,162,61,.18), transparent 60%);
	opacity: 0;
	transition: opacity .6s var(--ease);
	pointer-events: none;
}
.product-card:hover {
	transform: translateY(-8px);
	border-color: rgba(200, 162, 61, 0.5);
	box-shadow: 0 32px 80px rgba(0,0,0,.5), inset 0 0 0 1px rgba(200,162,61,.1);
}
.product-card:hover::before { opacity: 1; }
.product-card__tag {
	position: absolute; top: 18px; right: 18px;
	font-size: .58rem; letter-spacing: .22em; text-transform: uppercase;
	color: var(--gt-charcoal); background: var(--gt-gold);
	padding: 5px 10px; border-radius: 3px;
	font-weight: 600;
	z-index: 2;
}
.product-card__media {
	aspect-ratio: 3/4;
	background-size: contain; background-repeat: no-repeat; background-position: center;
	transition: transform .6s var(--ease);
	position: relative;
	z-index: 1;
}
.product-card:hover .product-card__media { transform: scale(1.08) translateY(-4px); }
.product-card__body { text-align: center; margin-top: 20px; position: relative; z-index: 1; }
.product-card__name {
	font-family: var(--font-display);
	font-size: 1.35rem;
	margin: 0 0 6px;
	color: var(--gt-cream);
	font-weight: 500;
}
.product-card__size {
	font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
	color: var(--gt-gold); font-weight: 500;
}

/* Spotlight --------------------------------------------------------- */

.section--spotlight {
	background: var(--gt-charcoal-2);
	color: var(--gt-cream);
	overflow: hidden;
	padding: clamp(120px, 16vw, 220px) 0;
}
.section--spotlight .eyebrow { color: var(--gt-gold); }
.section--spotlight .eyebrow::before, .section--spotlight .eyebrow::after { background: var(--gt-gold); }
.section--spotlight .section__title { color: var(--gt-cream); }
.section--spotlight .section__lead { color: rgba(253,248,237,.75); }

.spotlight__bg {
	position: absolute; inset: 0;
	background:
		radial-gradient(ellipse at center, rgba(200,162,61,.2) 0%, rgba(200,162,61,.06) 30%, transparent 60%),
		radial-gradient(circle at 20% 80%, rgba(139,105,20,.2), transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(74,124,89,.08), transparent 50%);
}
.spotlight__stage { position: relative; text-align: center; }
.spotlight__product {
	position: relative;
	aspect-ratio: 1/1;
	max-width: 640px;
	margin: clamp(48px, 8vw, 96px) auto 0;
}
.spotlight__image {
	position: absolute; inset: 0;
	background-size: contain; background-repeat: no-repeat; background-position: center;
	filter: drop-shadow(0 50px 80px rgba(0,0,0,.6)) drop-shadow(0 0 80px rgba(200,162,61,.25));
}
.spotlight__halo {
	position: absolute; inset: 10%;
	background: radial-gradient(circle, rgba(200,162,61,.4), transparent 60%);
	filter: blur(40px);
	animation: gtHaloPulse 4s ease-in-out infinite;
	z-index: 0;
}
@keyframes gtHaloPulse {
	0%,100% { opacity: .6; transform: scale(1); }
	50% { opacity: .9; transform: scale(1.08); }
}

.spotlight__point {
	position: absolute;
	display: flex; align-items: center; gap: 14px;
	font-size: .82rem; letter-spacing: .14em; color: var(--gt-cream);
	text-transform: uppercase; font-weight: 500;
	z-index: 3;
}
.spotlight__point-dot {
	width: 10px; height: 10px; border-radius: 50%;
	background: var(--gt-gold);
	box-shadow: 0 0 0 5px rgba(200,162,61,.2), 0 0 20px rgba(200,162,61,.6);
	flex-shrink: 0;
	position: relative;
}
.spotlight__point-dot::after {
	content: '';
	position: absolute; inset: -8px;
	border-radius: 50%;
	border: 1px solid var(--gt-gold);
	opacity: .3;
	animation: gtPulseRing 2.4s ease-out infinite;
}
@keyframes gtPulseRing {
	0% { transform: scale(.6); opacity: .6; }
	100% { transform: scale(2.4); opacity: 0; }
}
.spotlight__point-label { white-space: nowrap; }

.spotlight__point--tl { top: 12%; left: -10%; }
.spotlight__point--tr { top: 12%; right: -10%; flex-direction: row-reverse; }
.spotlight__point--bl { bottom: 16%; left: -10%; }
.spotlight__point--br { bottom: 16%; right: -10%; flex-direction: row-reverse; }

/* USP --------------------------------------------------------------- */

.section--usp {
	background: var(--gt-cream);
	position: relative;
	overflow: hidden;
}
.section--usp::before {
	content: '';
	position: absolute; top: -180px; left: -180px;
	width: 480px; height: 480px; border-radius: 50%;
	background: radial-gradient(circle, rgba(200,162,61,.12), transparent 70%);
	pointer-events: none;
}
.usp-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	background: rgba(200,162,61,.18);
	border: 1px solid rgba(200,162,61,.28);
	border-radius: var(--radius-lg);
	overflow: hidden;
	position: relative;
	z-index: 1;
	box-shadow: var(--shadow-soft);
}
.usp-card {
	position: relative;
	background: var(--gt-cream);
	padding: 48px 36px 52px;
	transition: background .4s var(--ease), transform .4s var(--ease);
	border-right: 1px solid rgba(200,162,61,.22);
	border-bottom: 1px solid rgba(200,162,61,.22);
	overflow: hidden;
}
.usp-card::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(circle at 50% 0%, rgba(200,162,61,.14), transparent 70%);
	opacity: 0;
	transition: opacity .5s var(--ease);
	pointer-events: none;
}
.usp-card:nth-child(3n) { border-right: 0; }
.usp-card:nth-last-child(-n+3) { border-bottom: 0; }
.usp-card:hover { background: #fff; }
.usp-card:hover::before { opacity: 1; }
.usp-card__index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px; height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(232,212,139,.3), rgba(200,162,61,.2));
	border: 1px solid rgba(200,162,61,.4);
	font-family: var(--font-display);
	font-size: 1rem;
	color: var(--gt-gold-deep);
	margin-bottom: 24px;
	letter-spacing: .04em;
	font-style: italic;
	font-weight: 500;
	transition: background .4s var(--ease), border-color .4s var(--ease), color .4s var(--ease);
}
.usp-card:hover .usp-card__index {
	background: var(--gt-gold);
	border-color: var(--gt-gold);
	color: var(--gt-charcoal);
}
.usp-card__title {
	font-size: 1.55rem;
	margin: 0 0 14px;
	font-weight: 500;
	color: var(--gt-ink);
	transition: color .3s var(--ease);
	position: relative; z-index: 1;
}
.usp-card:hover .usp-card__title { color: var(--gt-gold-deep); }
.usp-card__body {
	color: var(--gt-ink-soft);
	font-size: .95rem;
	line-height: 1.55;
	position: relative; z-index: 1;
}
.usp-card__border {
	position: absolute; left: 0; top: 0; bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, var(--gt-gold-soft), var(--gt-gold), var(--gt-gold-deep));
	transform: scaleY(0); transform-origin: top;
	transition: transform .55s var(--ease);
}
.usp-card:hover .usp-card__border { transform: scaleY(1); }

/* Buy --------------------------------------------------------------- */

.section--buy {
	background: var(--gt-paper);
	position: relative;
}
.platforms {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}
.platform-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 28px 24px;
	min-height: 140px;
	border: 1px solid rgba(200,162,61,.28);
	border-radius: var(--radius);
	background: #fff;
	transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
	position: relative;
	overflow: hidden;
}
.platform-card::before {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(135deg, rgba(232,212,139,.16), rgba(200,162,61,.08));
	opacity: 0;
	transition: opacity .4s var(--ease);
	z-index: 0;
}
.platform-card::after {
	content: '';
	position: absolute; top: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--gt-gold-soft), var(--gt-gold), var(--gt-gold-deep));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .5s var(--ease);
	z-index: 2;
}
.platform-card:hover {
	transform: translateY(-6px);
	border-color: var(--gt-gold);
	box-shadow: 0 24px 60px rgba(139,105,20,.18);
}
.platform-card:hover::before { opacity: 1; }
.platform-card:hover::after { transform: scaleX(1); }
.platform-card__name {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 500;
	position: relative; z-index: 1;
	color: var(--gt-ink);
}
.platform-card__meta {
	font-size: .68rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--gt-ink-soft);
	position: relative; z-index: 1;
	margin-top: 6px;
	display: block;
}
.platform-card__arrow {
	color: var(--gt-gold-deep);
	font-size: 1.4rem;
	align-self: flex-end;
	transition: transform .4s var(--ease);
	position: relative; z-index: 1;
}
.platform-card:hover .platform-card__arrow { transform: translate(6px, -6px); color: var(--gt-gold); }

.buy__retail {
	text-align: center;
	margin-top: 64px;
	padding-top: 48px;
	border-top: 1px solid var(--gt-line);
}
.buy__retail-label {
	display: block;
	font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
	color: var(--gt-ink-soft); margin-bottom: 20px;
	font-weight: 500;
}
.buy__retail-list {
	list-style: none; padding: 0; margin: 0;
	display: inline-flex; flex-wrap: wrap;
	gap: 14px 32px; justify-content: center;
	font-family: var(--font-display); font-size: 1.2rem; font-style: italic;
	color: var(--gt-ink-soft);
}
.buy__retail-list li::before {
	content: '✦';
	color: var(--gt-gold);
	font-size: .7em;
	margin-right: 14px;
	display: inline-block;
	transform: translateY(-2px);
}
.buy__retail-list li:first-child::before { content: none; }

/* Recipes ----------------------------------------------------------- */

.section--recipes { background: var(--gt-cream); position: relative; }
.recipes-grid {
	display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px;
}
.recipe-card {
	background: #fff;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	transition: transform .5s var(--ease), box-shadow .5s var(--ease);
	position: relative;
	border: 1px solid rgba(200,162,61,.15);
}
.recipe-card::before {
	content: '';
	position: absolute; top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--gt-gold-soft), var(--gt-gold), var(--gt-gold-deep));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .6s var(--ease);
	z-index: 3;
}
.recipe-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 28px 64px rgba(139,105,20,.22);
	border-color: var(--gt-gold);
}
.recipe-card:hover::before { transform: scaleX(1); }
.recipe-card__media {
	aspect-ratio: 4/3;
	background: linear-gradient(135deg, var(--gt-gold-soft), var(--gt-brown));
	background-size: cover; background-position: center;
	transition: transform .7s var(--ease);
	position: relative;
}
.recipe-card__media::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(26,17,8,.3));
}
.recipe-card:hover .recipe-card__media { transform: scale(1.08); }
.recipe-card__body { padding: 28px 28px 32px; position: relative; }
.recipe-card__time {
	font-size: .64rem; letter-spacing: .28em; text-transform: uppercase;
	color: var(--gt-gold-deep); font-weight: 600;
}
.recipe-card__title {
	font-size: 1.7rem;
	margin: 10px 0 12px;
	font-weight: 500;
}
.recipe-card__text {
	color: var(--gt-ink-soft);
	font-size: .96rem;
	margin: 0 0 18px;
	line-height: 1.55;
}
.recipe-card__link {
	font-size: .72rem;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--gt-gold-deep);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.recipe-card__link::after {
	content: '→';
	transition: transform .3s var(--ease);
}
.recipe-card:hover .recipe-card__link::after { transform: translateX(6px); }

/* Testimonials ------------------------------------------------------ */

.section--testimonials {
	background: var(--gt-brown-deep);
	color: var(--gt-cream);
	position: relative;
	overflow: hidden;
}
.section--testimonials::before {
	content: '';
	position: absolute; inset: 0;
	background:
		radial-gradient(ellipse at 20% 30%, rgba(200,162,61,.18), transparent 50%),
		radial-gradient(ellipse at 80% 70%, rgba(139,105,20,.18), transparent 50%);
	z-index: 0;
}
.section--testimonials .eyebrow { color: var(--gt-gold); }
.section--testimonials .eyebrow::before, .section--testimonials .eyebrow::after { background: var(--gt-gold); }
.section--testimonials .section__title { color: var(--gt-cream); }

.testimonials {
	position: relative;
	z-index: 2;
	max-width: 840px;
	margin: 0 auto;
	padding-top: 32px;
}
.testimonials__bigmark {
	position: absolute;
	top: -40px; left: 50%;
	transform: translateX(-50%);
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(140px, 18vw, 220px);
	line-height: 1;
	color: var(--gt-gold);
	opacity: .22;
	pointer-events: none;
	z-index: 1;
	text-shadow: 0 0 40px rgba(200,162,61,.25);
}
.testimonials__swiper {
	position: relative;
	z-index: 2;
	overflow: hidden;
	padding: 0 8px;
}
/* Swiper's fade effect handles opacity + absolute positioning on .swiper-slide. */
.testimonials__swiper .swiper-slide {
	height: auto;
}
.testimonials__swiper.swiper-fade .swiper-slide {
	pointer-events: none;
}
.testimonials__swiper.swiper-fade .swiper-slide.swiper-slide-active {
	pointer-events: auto;
}
.testimonial {
	text-align: center;
	padding: 16px 20px 24px;
	box-sizing: border-box;
	max-width: 800px;
	margin: 0 auto;
}
.testimonial__quote {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(1.4rem, 2.6vw, 2.2rem);
	line-height: 1.4;
	margin: 0 0 32px;
	position: relative;
	color: var(--gt-cream);
	font-weight: 400;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}
.testimonial__cite {
	display: flex; flex-direction: column; gap: 4px;
	align-items: center;
}
.testimonial__divider {
	width: 36px; height: 1px; background: var(--gt-gold);
	margin-bottom: 14px;
}
.testimonial__name {
	font-weight: 600;
	letter-spacing: .08em;
	font-size: .95rem;
	color: var(--gt-gold);
}
.testimonial__role {
	font-size: .7rem;
	color: rgba(253,248,237,.7);
	letter-spacing: .2em;
	text-transform: uppercase;
	margin-top: 4px;
}
.testimonials__pagination {
	position: relative !important;
	margin-top: 48px;
	display: flex;
	justify-content: center;
	gap: 10px;
}
.testimonials__pagination .swiper-pagination-bullet {
	background: transparent;
	border: 1px solid rgba(200,162,61,.45);
	opacity: 1;
	width: 10px; height: 10px;
	margin: 0 !important;
	transition: all .35s var(--ease);
}
.testimonials__pagination .swiper-pagination-bullet-active {
	background: var(--gt-gold);
	border-color: var(--gt-gold);
	width: 36px;
	border-radius: 6px;
	box-shadow: 0 0 14px rgba(200,162,61,.5);
}

/* Contact ----------------------------------------------------------- */

.section--contact { background: var(--gt-cream); position: relative; overflow: hidden; }
.section--contact::before {
	content: '';
	position: absolute; bottom: -200px; left: -200px;
	width: 500px; height: 500px; border-radius: 50%;
	background: radial-gradient(circle, rgba(200,162,61,.12), transparent 70%);
}
.contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: clamp(48px, 7vw, 96px);
	align-items: start;
}
.contact__list {
	list-style: none; padding: 0;
	margin: 36px 0 0;
	display: flex; flex-direction: column; gap: 24px;
}
.contact__label {
	display: block;
	font-size: .66rem; letter-spacing: .28em; text-transform: uppercase;
	color: var(--gt-gold-deep); margin-bottom: 8px;
	font-weight: 600;
}
.contact__value {
	font-family: var(--font-display);
	font-size: 1.25rem;
	color: var(--gt-ink);
	line-height: 1.4;
}

.contact__form {
	background: #fff;
	padding: clamp(28px, 4vw, 48px);
	border-radius: var(--radius-lg);
	border: 1px solid var(--gt-line);
	display: flex; flex-direction: column; gap: 22px;
	box-shadow: var(--shadow-soft);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
	font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
	color: var(--gt-ink-soft); font-weight: 600;
}
.field input, .field select, .field textarea {
	width: 100%;
	padding: 15px 18px;
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--gt-ink);
	background: var(--gt-cream);
	border: 1px solid rgba(200,162,61,.28);
	border-radius: 10px;
	transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
	outline: none;
	border-color: var(--gt-gold);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(200,162,61,.22), 0 8px 24px rgba(200,162,61,.12);
}
.field textarea { resize: vertical; min-height: 120px; font-family: inherit; }

.contact__form .btn { align-self: flex-start; }
.contact__form-note { font-size: .8rem; color: var(--gt-ink-soft); margin: 0; }

.contact__form-status {
	padding: 14px 18px;
	border-radius: 10px;
	font-size: .9rem;
	display: none;
}
.contact__form-status.is-success {
	display: block;
	background: rgba(74,124,89,.12);
	color: var(--gt-green);
	border: 1px solid rgba(74,124,89,.25);
}
.contact__form-status.is-error {
	display: block;
	background: rgba(200,70,70,.08);
	color: #a33;
	border: 1px solid rgba(200,70,70,.25);
}

/* Footer ------------------------------------------------------------ */

.site-footer {
	background: var(--gt-charcoal);
	color: var(--gt-cream);
	padding: 96px 0 36px;
	position: relative;
	overflow: hidden;
}
.site-footer::before {
	content: '';
	position: absolute; top: 0; left: 0; right: 0; height: 2px;
	background: linear-gradient(90deg, transparent, var(--gt-gold), var(--gt-gold), transparent);
	opacity: .7;
}
.site-footer::after {
	content: '';
	position: absolute; bottom: -120px; left: 50%; transform: translateX(-50%);
	width: 600px; height: 300px; border-radius: 50%;
	background: radial-gradient(ellipse, rgba(200,162,61,.1), transparent 70%);
	pointer-events: none;
}
.site-footer__container {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 var(--pad-x);
	display: grid;
	grid-template-columns: 1.2fr 2fr;
	gap: 56px;
}
.site-footer__mark {
	font-family: var(--font-display);
	font-size: 2.4rem;
	color: var(--gt-gold);
	display: block;
	margin-bottom: 10px;
	font-weight: 500;
}
.site-footer__desc {
	color: rgba(253,248,237,.65);
	max-width: 42ch;
	line-height: 1.6;
	font-size: .95rem;
}
.site-footer__badges-mini {
	display: flex; gap: 18px; margin-top: 24px; flex-wrap: wrap;
}
.site-footer__badges-mini span {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: .66rem; letter-spacing: .24em; text-transform: uppercase;
	color: var(--gt-gold); font-weight: 600;
	padding: 6px 12px;
	border: 1px solid var(--gt-line-on-dark);
	border-radius: 999px;
}
.site-footer__cols {
	display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 36px;
}
.site-footer__col h3 {
	font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
	color: var(--gt-gold); font-family: var(--font-body); font-weight: 600;
	margin: 0 0 20px;
}
.site-footer__col ul {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-direction: column; gap: 12px;
	font-size: .95rem; color: rgba(253,248,237,.72);
}
.site-footer__col a:hover { color: var(--gt-gold); }

.site-footer__bar {
	max-width: var(--max-w);
	margin: 72px auto 0;
	padding: 28px var(--pad-x) 0;
	border-top: 1px solid var(--gt-line-on-dark);
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
	font-size: .78rem; color: rgba(253,248,237,.5);
	letter-spacing: .08em;
}

/* Custom cursor ----------------------------------------------------- */

.cursor {
	position: fixed; top: 0; left: 0;
	width: 12px; height: 12px;
	pointer-events: none;
	z-index: 9000;
	transform: translate3d(-100px,-100px,0);
	mix-blend-mode: difference;
	display: none;
	will-change: transform;
}
.cursor__dot {
	position: absolute; inset: 0;
	display: block;
	background: var(--gt-gold);
	border-radius: 50%;
	transition: transform .35s var(--ease-out), background .25s var(--ease), opacity .25s var(--ease);
	box-shadow: 0 0 10px rgba(200,162,61,.6);
}
.cursor__label {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%) scale(0);
	font-family: var(--font-body);
	font-size: .62rem;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--gt-charcoal);
	opacity: 0;
	white-space: nowrap;
	transition: transform .3s var(--ease-out), opacity .25s var(--ease);
	font-weight: 600;
	pointer-events: none;
}
.cursor.is-hover .cursor__dot {
	transform: scale(3.6);
	background: var(--gt-gold);
}
.cursor.is-hover .cursor__label {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}
.cursor.is-text .cursor__dot { transform: scaleX(.25) scaleY(1.6); }

@media (hover: hover) and (pointer: fine) {
	.cursor { display: block; }
	body.cursor-ready,
	body.cursor-ready * { cursor: none !important; }
}

/* Page-load overlay ------------------------------------------------- */

.page-loader {
	position: fixed; inset: 0;
	z-index: 10000;
	background: linear-gradient(135deg, #1A1108 0%, #2A1B12 50%, #1A1108 100%);
	display: flex; align-items: center; justify-content: center;
	pointer-events: auto;
	overflow: hidden;
}
.page-loader__bg {
	position: absolute; inset: 0;
	background:
		radial-gradient(ellipse at 30% 30%, rgba(200,162,61,.2), transparent 55%),
		radial-gradient(ellipse at 70% 70%, rgba(139,105,20,.18), transparent 50%);
}
.page-loader__inner {
	position: relative;
	text-align: center;
	z-index: 2;
}
.page-loader__mark {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.6rem, 6vw, 4.4rem);
	color: var(--gt-gold);
	font-weight: 400;
	letter-spacing: .02em;
	opacity: 0;
	transform: translateY(12px);
	background: linear-gradient(110deg, var(--gt-gold-soft) 0%, var(--gt-gold) 45%, var(--gt-gold-deep) 90%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gtLoaderMark .9s var(--ease-out) .15s forwards;
}
.page-loader__line {
	display: block;
	width: 0; height: 2px;
	background: linear-gradient(90deg, transparent, var(--gt-gold), transparent);
	margin: 20px auto 14px;
	animation: gtLoaderLine 1s var(--ease-out) .6s forwards;
}
.page-loader__tagline {
	display: block;
	font-size: .62rem;
	letter-spacing: .36em;
	text-transform: uppercase;
	color: rgba(253,248,237,.6);
	opacity: 0;
	animation: gtLoaderTag .7s ease .9s forwards;
}
@keyframes gtLoaderMark {
	to { opacity: 1; transform: translateY(0); }
}
@keyframes gtLoaderLine {
	to { width: 180px; }
}
@keyframes gtLoaderTag {
	to { opacity: 1; }
}
.page-loader__veil-top,
.page-loader__veil-bot {
	position: absolute; left: 0; right: 0;
	height: 50%;
	background: #1A1108;
	transition: transform 1s var(--ease-out);
}
.page-loader__veil-top { top: 0; }
.page-loader__veil-bot { bottom: 0; }
html.loader-done .page-loader__veil-top { transform: translateY(-100%); }
html.loader-done .page-loader__veil-bot { transform: translateY(100%); }
html.loader-done .page-loader__inner { opacity: 0; transition: opacity .4s ease; }
html.loader-done .page-loader { pointer-events: none; }
html.loader-gone .page-loader { display: none; }

/* Prevent scroll while loader is visible */
html.loading, html.loading body { overflow: hidden !important; height: 100%; }

@media (prefers-reduced-motion: reduce) {
	.page-loader__mark,
	.page-loader__line,
	.page-loader__tagline { animation: none; opacity: 1; transform: none; width: 180px; }
	.page-loader__veil-top, .page-loader__veil-bot { transition: none; }
}

/* Image reveal (clip-path) ------------------------------------------ */

[data-image-reveal] {
	clip-path: inset(0 100% 0 0);
	-webkit-clip-path: inset(0 100% 0 0);
	will-change: clip-path;
}
[data-image-reveal="up"] {
	clip-path: inset(100% 0 0 0);
	-webkit-clip-path: inset(100% 0 0 0);
}

/* Spotlight: gold dotted connector lines (CSS-only) ----------------- */
.spotlight__point-dot {
	position: relative;
}
.spotlight__point--tl .spotlight__point-dot::before,
.spotlight__point--bl .spotlight__point-dot::before {
	content: '';
	position: absolute; top: 50%; left: 100%;
	width: clamp(30px, 6vw, 72px); height: 1px;
	background: linear-gradient(90deg, var(--gt-gold), transparent);
	transform: translateY(-50%);
	opacity: .6;
}
.spotlight__point--tr .spotlight__point-dot::before,
.spotlight__point--br .spotlight__point-dot::before {
	content: '';
	position: absolute; top: 50%; right: 100%;
	width: clamp(30px, 6vw, 72px); height: 1px;
	background: linear-gradient(-90deg, var(--gt-gold), transparent);
	transform: translateY(-50%);
	opacity: .6;
}

@media (max-width: 768px) {
	.spotlight__point--tl .spotlight__point-dot::before,
	.spotlight__point--tr .spotlight__point-dot::before,
	.spotlight__point--bl .spotlight__point-dot::before,
	.spotlight__point--br .spotlight__point-dot::before { display: none; }
}

/* Section gold divider (decorative) --------------------------------- */
.section-divider {
	display: block;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(200,162,61,.4), transparent);
	border: 0;
}

/* Magnetic button subtle gold glow on hover ------------------------- */
.btn--primary.btn--magnetic:hover {
	box-shadow: 0 14px 36px rgba(139, 105, 20, 0.45), 0 0 0 1px var(--gt-gold), 0 0 40px rgba(200,162,61,.35);
}

/* Responsive -------------------------------------------------------- */

@media (max-width: 1024px) {
	.product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.usp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.usp-card:nth-child(3n) { border-right: 1px solid var(--gt-line); }
	.usp-card:nth-child(2n) { border-right: 0; }
	.usp-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--gt-line); }
	.usp-card:nth-last-child(-n+2) { border-bottom: 0; }
	.platforms { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.spotlight__point--tl, .spotlight__point--bl { left: -4%; }
	.spotlight__point--tr, .spotlight__point--br { right: -4%; }
}

@media (max-width: 768px) {
	:root { --section-y: clamp(72px, 14vw, 120px); }

	.site-nav { display: none; }
	.site-header__cta { display: none; }
	.site-nav__toggle { display: flex; }
	body.nav-open .site-nav {
		display: block;
		position: fixed; inset: 0;
		background: var(--gt-charcoal);
		padding: 120px 32px 40px;
		z-index: 90;
	}
	body.nav-open .site-nav__list {
		flex-direction: column; gap: 28px;
		align-items: flex-start;
	}
	body.nav-open .site-nav__list a { font-size: 1.6rem; font-family: var(--font-display); text-transform: none; letter-spacing: 0; }

	.about__grid, .contact__grid { grid-template-columns: 1fr; }
	.product-grid { grid-template-columns: repeat(2, 1fr); }
	.usp-grid { grid-template-columns: 1fr; }
	.usp-card { border-right: 0 !important; border-bottom: 1px solid var(--gt-line); }
	.usp-card:last-child { border-bottom: 0; }
	.platforms { grid-template-columns: repeat(2, 1fr); }
	.recipes-grid { grid-template-columns: 1fr; }
	.stats { grid-template-columns: 1fr 1fr; gap: 20px; }
	.stats .stat:last-child { grid-column: 1 / -1; }
	.site-footer__container { grid-template-columns: 1fr; gap: 40px; }
	.site-footer__cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
	.field--two { grid-template-columns: 1fr; }

	.hero__3d-wrap { height: 340px; }
	.spotlight__point { font-size: .7rem; }
	.spotlight__point-line { display: none; }
	.spotlight__point--tl, .spotlight__point--tr { top: -2%; }
	.spotlight__point--bl, .spotlight__point--br { bottom: -2%; }
	.spotlight__point--tl, .spotlight__point--bl { left: 0; }
	.spotlight__point--tr, .spotlight__point--br { right: 0; }
}

@media (max-width: 480px) {
	.product-grid { grid-template-columns: 1fr; }
	.platforms { grid-template-columns: 1fr; }
	.stats { grid-template-columns: 1fr; }
	.stats .stat:last-child { grid-column: 1; }
	.site-footer__cols { grid-template-columns: 1fr; }
	.hero__actions .btn { width: 100%; }

	.testimonials__bigmark {
		font-size: 110px;
		top: -20px;
	}
	.testimonial { padding: 12px 14px 16px; }
	.testimonial__quote { font-size: 1.2rem; line-height: 1.5; }

	/* Ensure min tap target */
	.btn, .tabs__tab, .platform-card, .site-nav__toggle { min-height: 44px; }

	/* Spotlight on tiny phones — keep labels inside */
	.spotlight__point-label { font-size: .62rem; }

	.site-footer__bar { flex-direction: column; text-align: center; }
}

/* Reduced motion ---------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
		animation-iteration-count: 1 !important;
	}
	.marquee__track { animation: none; }
	.hero__mesh { animation: none; }
	.spotlight__halo { animation: none; }
}
