:root {
	--gf-ink: #0d0d0b;
	--gf-paper: #f4f0e8;
	--gf-paper-soft: #fffaf1;
	--gf-muted: #777064;
	--gf-line: rgba(13, 13, 11, 0.18);
	--gf-accent: #e8ff3f;
	--gf-red: #f04d2f;
	--gf-blue: #2257ff;
	--gf-max: 1320px;
	--gf-pad: clamp(20px, 4vw, 64px);
	--gf-radius: 8px;
	--gf-font: "Neue Haas Grotesk Text", "Helvetica Neue", Arial, sans-serif;
	--gf-display: "Arial Narrow", "Helvetica Neue Condensed", Impact, sans-serif;
}

html {
	scroll-behavior: smooth;
}

body.gf-theme {
	background: var(--gf-paper);
	color: var(--gf-ink);
	font-family: var(--gf-font);
	text-rendering: geometricPrecision;
}

.gf-theme a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

.gf-wrap {
	inline-size: min(100% - (var(--gf-pad) * 2), var(--gf-max));
	margin-inline: auto;
}

.gf-section {
	border-top: 1px solid var(--gf-line);
	padding: clamp(72px, 10vw, 150px) 0;
}

.gf-eyebrow {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 18px;
	align-items: start;
	margin-bottom: clamp(28px, 5vw, 72px);
	color: var(--gf-muted);
	font-size: clamp(12px, 1.4vw, 15px);
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.gf-eyebrow::before {
	content: attr(data-index);
	color: var(--gf-ink);
}

.gf-display,
.gf-hero-title {
	font-family: var(--gf-display);
	font-size: clamp(76px, 17vw, 250px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 0.78;
	text-transform: uppercase;
}

.gf-hero {
	min-height: 92svh;
	display: grid;
	align-items: end;
	padding: clamp(96px, 14vw, 180px) 0 clamp(28px, 6vw, 84px);
	border-bottom: 1px solid var(--gf-line);
}

.gf-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
	gap: clamp(28px, 5vw, 80px);
	align-items: end;
}

.gf-hero-title span {
	display: block;
}

.gf-hero-copy {
	font-size: clamp(18px, 2.4vw, 32px);
	line-height: 1.08;
	max-width: 14em;
}

.gf-pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 26px;
}

.gf-pill {
	border: 1px solid var(--gf-ink);
	border-radius: 999px;
	padding: 7px 12px 8px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.gf-button {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	border: 1px solid var(--gf-ink);
	border-radius: 999px;
	background: var(--gf-ink);
	color: var(--gf-paper-soft);
	padding: 0 22px;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
	transition: border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.gf-button::before {
	content: "";
	position: absolute;
	inset: auto auto 50% 50%;
	z-index: -1;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: #fff;
	transform: translate(-50%, 50%);
	transition: width 360ms cubic-bezier(.2, .9, .2, 1), height 360ms cubic-bezier(.2, .9, .2, 1);
}

.gf-button:hover,
.gf-button:focus-visible {
	color: var(--gf-ink);
	transform: translateY(-2px);
}

.gf-button:hover::before,
.gf-button:focus-visible::before {
	width: 280px;
	height: 280px;
}

.gf-service-list {
	display: grid;
	border-top: 1px solid var(--gf-line);
}

.gf-service {
	display: grid;
	grid-template-columns: 96px 1fr minmax(220px, 0.7fr);
	gap: 24px;
	align-items: baseline;
	border-bottom: 1px solid var(--gf-line);
	padding: clamp(22px, 4vw, 44px) 0;
}

.gf-service-number {
	color: var(--gf-muted);
	font-weight: 800;
}

.gf-service-title {
	margin: 0;
	font-family: var(--gf-display);
	font-size: clamp(42px, 8vw, 104px);
	font-weight: 900;
	line-height: 0.9;
	text-transform: uppercase;
}

.gf-service-copy {
	margin: 0;
	color: var(--gf-muted);
	font-size: clamp(15px, 1.6vw, 18px);
	line-height: 1.42;
}

.gf-split {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
	gap: clamp(32px, 7vw, 96px);
	align-items: start;
}

.gf-lede {
	margin: 0;
	font-size: clamp(30px, 5.6vw, 82px);
	font-weight: 850;
	line-height: 0.95;
	letter-spacing: 0;
}

.gf-body-copy {
	color: var(--gf-muted);
	font-size: clamp(17px, 2vw, 22px);
	line-height: 1.28;
}

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

.gf-work-card {
	position: relative;
	min-height: clamp(280px, 38vw, 520px);
	display: grid;
	align-content: end;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(13, 13, 11, 0.1), rgba(13, 13, 11, 0)),
		var(--gf-paper-soft);
	padding: clamp(20px, 4vw, 42px);
	text-decoration: none;
}

.gf-work-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, transparent 49%, rgba(13, 13, 11, 0.08) 50%, transparent 51%),
		linear-gradient(0deg, transparent 49%, rgba(13, 13, 11, 0.08) 50%, transparent 51%);
	background-size: 48px 48px;
	opacity: 0.35;
	transition: transform 400ms ease, opacity 300ms ease;
}

.gf-work-card:hover::before,
.gf-work-card:focus-visible::before {
	opacity: 0.75;
	transform: scale(1.08);
}

.gf-work-meta,
.gf-work-title {
	position: relative;
	z-index: 1;
}

.gf-work-meta {
	color: var(--gf-muted);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.gf-work-title {
	margin: 10px 0 0;
	font-family: var(--gf-display);
	font-size: clamp(40px, 7vw, 96px);
	font-weight: 900;
	line-height: 0.9;
	text-transform: uppercase;
}

.gf-cta {
	background: var(--gf-ink);
	color: var(--gf-paper-soft);
	padding: clamp(76px, 11vw, 156px) 0;
}

.gf-cta .gf-wrap {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(26px, 5vw, 64px);
	align-items: end;
}

.gf-cta-title {
	margin: 0;
	font-family: var(--gf-display);
	font-size: clamp(70px, 13vw, 190px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 0.8;
	text-transform: uppercase;
}

.gf-cta .gf-button {
	background: var(--gf-accent);
	color: var(--gf-ink);
	border-color: var(--gf-accent);
}

.gf-cta .gf-button:hover,
.gf-cta .gf-button:focus-visible {
	background: var(--gf-paper-soft);
	border-color: var(--gf-paper-soft);
}

/* ─── Header ─────────────────────────────────────────────── */

.gf-header-minimal {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	color: white;
	padding: 20px var(--gf-pad);
	background: rgba(13, 13, 11, 0.72);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	transition:
		background 300ms ease,
		box-shadow 300ms ease,
		padding 280ms ease,
		transform 360ms cubic-bezier(.2, .9, .2, 1);
}

.gf-header-minimal .gf-wrap {
	display: flex;
	align-items: center;
	gap: clamp(16px, 2.5vw, 36px);
	inline-size: min(100%, var(--gf-max));
}

.gf-header-minimal.is-solid {
	background: rgba(13, 13, 11, 0.96);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 32px rgba(0, 0, 0, 0.4);
	padding-top: 14px;
	padding-bottom: 14px;
}

.gf-header-minimal.is-hidden {
	transform: translateY(-110%);
}

/* ─── Brand ──────────────────────────────────────────────── */

.gf-brand {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	font-weight: 900;
	font-size: 15px;
	letter-spacing: 0.06em;
	text-decoration: none;
	text-transform: uppercase;
	color: white;
	flex-shrink: 0;
}

.gf-brand-logo {
	width: auto;
	max-width: 160px;
	max-height: 38px;
	object-fit: contain;
}

/* ─── Desktop nav ────────────────────────────────────────── */

.gf-nav {
	display: flex;
	align-items: center;
	margin-inline-start: auto;
}

.gf-menu,
.gf-footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(12px, 2vw, 32px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.gf-menu a,
.gf-footer-menu a {
	position: relative;
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	padding-bottom: 3px;
	color: rgba(255, 255, 255, 0.78);
	transition: color 200ms ease;
}

.gf-menu a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--gf-accent);
	transition: width 280ms cubic-bezier(.2, .9, .2, 1);
}

.gf-menu a:hover,
.gf-menu a:focus-visible {
	color: white;
}

.gf-menu a:hover::after,
.gf-menu a:focus-visible::after {
	width: 100%;
}

.gf-menu li.current-menu-item > a,
.gf-menu li.current_page_item > a {
	color: white;
}

.gf-menu li.current-menu-item > a::after,
.gf-menu li.current_page_item > a::after {
	width: 100%;
	background: var(--gf-accent);
}

/* ─── Nav CTA button ─────────────────────────────────────── */

.gf-nav-cta {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 9px 20px;
	background: var(--gf-accent);
	color: var(--gf-ink);
	font-size: 12px;
	font-weight: 750;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 999px;
	white-space: nowrap;
	flex-shrink: 0;
	transition: transform 220ms cubic-bezier(.2, .9, .2, 1), box-shadow 220ms ease, background 200ms ease;
}

.gf-nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(232, 255, 63, 0.28);
}

.gf-nav-cta span {
	font-style: normal;
}

/* ─── Hamburger toggle ───────────────────────────────────── */

.gf-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 38px;
	height: 38px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	margin-inline-start: auto;
	flex-shrink: 0;
}

.gf-nav-toggle span {
	display: block;
	height: 1.5px;
	background: white;
	transition: transform 300ms cubic-bezier(.2, .9, .2, 1), opacity 200ms ease;
	transform-origin: center;
}

.gf-header-minimal.menu-open .gf-nav-toggle span:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}

.gf-header-minimal.menu-open .gf-nav-toggle span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.gf-header-minimal.menu-open .gf-nav-toggle span:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── Mobile dropdown ────────────────────────────────────── */

.gf-nav-mobile {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: rgba(13, 13, 11, 0.98);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	max-height: 0;
	overflow: hidden;
	transition: max-height 420ms cubic-bezier(.2, .9, .2, 1);
}

.gf-header-minimal.menu-open .gf-nav-mobile {
	max-height: 480px;
}

.gf-menu-mobile {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 8px var(--gf-pad) 0;
	list-style: none;
}

.gf-menu-mobile li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.gf-menu-mobile a {
	display: block;
	padding: 17px 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 180ms ease;
}

.gf-menu-mobile a:hover {
	color: white;
}

.gf-nav-mobile-cta {
	padding: 20px var(--gf-pad) 24px;
}

.gf-nav-mobile-cta .gf-nav-cta {
	width: 100%;
	justify-content: center;
	border-radius: 8px;
	padding: 14px 20px;
	font-size: 13px;
}

.gf-footer {
	border-top: 1px solid var(--gf-line);
	padding: clamp(42px, 6vw, 84px) 0 24px;
	color: var(--gf-muted);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.gf-footer-main {
	display: grid;
	grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1fr);
	gap: clamp(28px, 6vw, 90px);
	align-items: start;
	margin-bottom: clamp(34px, 5vw, 72px);
}

.gf-footer-brand {
	display: grid;
	gap: 18px;
}

.gf-footer-brand .gf-brand {
	width: max-content;
	color: var(--gf-ink);
	font-family: var(--gf-display);
	font-size: clamp(38px, 6vw, 92px);
	font-weight: 900;
	line-height: 0.84;
}

.gf-footer-brand p {
	max-width: 420px;
	margin: 0;
	color: var(--gf-muted);
	font-size: clamp(17px, 2vw, 24px);
	font-weight: 650;
	line-height: 1.15;
	text-transform: none;
}

.gf-footer-nav {
	justify-self: end;
}

.gf-footer-menu {
	justify-content: flex-end;
	font-size: clamp(16px, 2vw, 24px);
	font-weight: 650;
	text-transform: none;
}

.gf-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	border-top: 1px solid var(--gf-line);
	padding-top: 24px;
}

.gf-reveal {
	opacity: 0;
	transform: translateY(42px);
	transition: opacity 900ms cubic-bezier(.2, .9, .2, 1), transform 900ms cubic-bezier(.2, .9, .2, 1);
}

.gf-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 900px) {
	.gf-hero-grid,
	.gf-split,
	.gf-cta .gf-wrap {
		grid-template-columns: 1fr;
	}

	.gf-footer-main {
		grid-template-columns: 1fr;
	}

	.gf-footer-nav {
		justify-self: start;
	}

	.gf-footer-menu {
		justify-content: flex-start;
	}

	.gf-service {
		grid-template-columns: 56px 1fr;
	}

	.gf-service-copy {
		grid-column: 2;
	}

	.gf-work-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.gf-section {
		padding: 64px 0;
	}

	.gf-eyebrow {
		grid-template-columns: 48px 1fr;
	}

	.gf-hero {
		min-height: 86svh;
	}

	.gf-nav,
	.gf-nav-cta {
		display: none;
	}

	.gf-nav-toggle {
		display: flex;
	}

	.gf-footer .gf-wrap {
		flex-direction: column;
	}

	.gf-footer-bottom {
		flex-direction: column;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
	}
}

/* Cunnet lorem homepage -------------------------------------------------- */
.gf-cunnet-home {
	--gf-cunnet-paper: #fff5f3;
	--gf-cunnet-paper-2: #f7e9e4;
	--gf-cunnet-ink: #09090b;
	--gf-cunnet-muted: #6d6461;
	--gf-cunnet-line: rgba(9, 9, 11, 0.13);
	--gf-cunnet-red: #fb4b37;
	--gf-cunnet-dark: #09090b;
	--gf-cunnet-white: #fffaf7;
	--gf-cunnet-max: 1886px;
	--gf-cunnet-pad: clamp(18px, 3.2vw, 62px);
	--gf-cunnet-marquee-duration: 34s;
	background: var(--gf-cunnet-paper);
	color: var(--gf-cunnet-ink);
	cursor: none;
	overflow-x: hidden;
}

.gf-cunnet-home a,
.gf-cunnet-home button {
	cursor: none;
}

.gf-cunnet-wrap {
	width: min(100% - (var(--gf-cunnet-pad) * 2), var(--gf-cunnet-max));
	margin-inline: auto;
}

.gf-cunnet-preloader {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 28px;
	background: var(--gf-cunnet-loader-bg, var(--gf-cunnet-paper));
	transition: opacity 700ms ease, visibility 700ms ease;
}

.gf-cunnet-preloader.is-done {
	opacity: 0;
	visibility: hidden;
}

.gf-cunnet-preloader-logo {
	width: auto;
	height: clamp(48px, 7vw, 88px);
	max-width: 240px;
	object-fit: contain;
	animation: gf-cunnet-float 3s ease-in-out infinite;
}

.gf-cunnet-preloader-text {
	font-size: clamp(28px, 4vw, 52px);
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--gf-cunnet-loader-text, var(--gf-cunnet-ink));
	white-space: nowrap;
}

.gf-cunnet-preloader-text::after {
	content: "|";
	margin-left: 2px;
	animation: gf-cunnet-blink 700ms step-start infinite;
	color: var(--gf-cunnet-loader-text, var(--gf-cunnet-red));
}

@keyframes gf-cunnet-blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}

@keyframes gf-cunnet-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

.gf-cunnet-cursor {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	width: 58px;
	height: 58px;
	pointer-events: none;
	border-radius: 50%;
	background: var(--gf-cunnet-white);
	border: 1px solid rgba(255, 250, 247, 0.58);
	box-shadow: none;
	transform: translate(-50%, -50%);
	transition:
		width 180ms ease,
		height 180ms ease,
		background 180ms ease,
		border-color 180ms ease;
	mix-blend-mode: difference;
}

.gf-cunnet-cursor.is-active {
	width: 82px;
	height: 82px;
	background: var(--gf-cunnet-white);
	border-color: rgba(255, 250, 247, 0.74);
}

body:has(.gf-cunnet-offcanvas.is-open) .gf-cunnet-cursor,
body:has(.gf-cunnet-contact-modal.is-open) .gf-cunnet-cursor {
	background: var(--gf-cunnet-white);
}

body:has(.gf-cunnet-lightbox.is-open) .gf-cunnet-cursor {
	background: rgba(255, 250, 247, 0.9);
	mix-blend-mode: normal;
	z-index: 2001;
	width: 48px;
	height: 48px;
}

.gf-cunnet-btn-group {
	display: inline-flex;
	align-items: center;
	color: inherit;
	text-decoration: none;
}

.gf-cunnet-btn-dot,
.gf-cunnet-btn-pill {
	min-height: 48px;
	border: 1px solid currentColor;
	background: transparent;
	transition: background 240ms ease, color 240ms ease, transform 240ms ease;
}

.gf-cunnet-btn-dot {
	width: 48px;
	display: grid;
	place-items: center;
	border-radius: 50%;
}

.gf-cunnet-btn-pill {
	display: inline-flex;
	align-items: center;
	margin-inline: -1px;
	border-radius: 999px;
	padding: 0 24px;
	font-size: 14px;
	font-weight: 700;
	overflow: hidden;
	text-transform: uppercase;
}

.gf-cunnet-btn-group:hover .gf-cunnet-btn-dot,
.gf-cunnet-btn-group:hover .gf-cunnet-btn-pill,
.gf-cunnet-btn-group:focus-visible .gf-cunnet-btn-dot,
.gf-cunnet-btn-group:focus-visible .gf-cunnet-btn-pill {
	background: var(--gf-cunnet-white);
	color: var(--gf-cunnet-dark);
	transform: translateY(-2px);
}

.gf-cunnet-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 80;
	background: var(--gf-cunnet-dark);
	color: var(--gf-cunnet-white);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	padding: 18px 0;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
	transition: padding 260ms ease, box-shadow 260ms ease;
}

.gf-cunnet-header.is-solid {
	padding: 12px 0;
	background: rgba(9, 9, 11, 0.96);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(18px);
}

.gf-cunnet-header-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	gap: clamp(18px, 2vw, 34px);
	align-items: center;
	width: min(100% - (clamp(28px, 4vw, 78px) * 2), var(--gf-cunnet-max));
}

.gf-cunnet-main-nav {
	display: flex;
	gap: clamp(18px, 2vw, 34px);
	align-items: center;
	font-size: 15px;
	font-weight: 700;
}

.gf-cunnet-main-nav a {
	position: relative;
	color: inherit;
	text-decoration: none;
}

.gf-cunnet-main-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 260ms ease;
}

.gf-cunnet-main-nav a:hover::after,
.gf-cunnet-main-nav a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

.gf-cunnet-brand {
	justify-self: center;
	display: inline-flex;
	align-items: center;
	color: inherit;
	font-size: clamp(24px, 2.2vw, 38px);
	font-weight: 900;
	letter-spacing: -0.03em;
	text-decoration: none;
	line-height: 1;
}

.gf-cunnet-brand-text {
	display: block;
}

.gf-cunnet-brand-image {
	display: block;
	width: auto;
	max-width: min(220px, 32vw);
	max-height: 54px;
	object-fit: contain;
}

.gf-cunnet-header-actions {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: clamp(10px, 1.1vw, 18px);
	padding-right: clamp(8px, 1.8vw, 28px);
}

.gf-cunnet-icon-btn {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 999px;
	background: transparent;
	color: var(--gf-cunnet-white);
	transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.gf-cunnet-icon-btn:hover,
.gf-cunnet-icon-btn:focus-visible {
	background: var(--gf-cunnet-white);
	border-color: var(--gf-cunnet-white);
	color: var(--gf-cunnet-dark);
	transform: translateY(-2px);
}

.gf-cunnet-header .gf-cunnet-btn-dot,
.gf-cunnet-header .gf-cunnet-btn-pill {
	border-color: rgba(255, 255, 255, 0.34);
	color: var(--gf-cunnet-white);
}

.gf-cunnet-menu-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.gf-cunnet-menu-btn span {
	width: 20px;
	height: 1.5px;
	display: block;
	background: currentColor;
	border-radius: 1px;
	transition: transform 280ms ease, opacity 280ms ease;
}

.gf-cunnet-offcanvas,
.gf-cunnet-search-panel {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: grid;
	grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 0.45fr);
	background: var(--gf-cunnet-dark);
	color: var(--gf-cunnet-white);
	overflow: hidden auto;
	pointer-events: none;
	transform: translateY(-104%);
	transition: transform 650ms cubic-bezier(.22, 1, .36, 1);
	visibility: hidden;
}

.gf-cunnet-search-panel {
	grid-template-columns: 1fr;
	place-items: center;
}

.gf-cunnet-offcanvas.is-open,
.gf-cunnet-search-panel.is-open {
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

.gf-cunnet-offcanvas-main,
.gf-cunnet-offcanvas-side {
	padding: clamp(28px, 5vw, 76px);
}

.gf-cunnet-offcanvas-main {
	display: grid;
	align-content: space-between;
}

.gf-cunnet-panel-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gf-cunnet-close {
	min-width: 54px;
	min-height: 54px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	background: transparent;
	color: inherit;
	font-size: 28px;
}

.gf-cunnet-offcanvas-menu {
	display: grid;
	gap: 14px;
	margin: 70px 0;
}

.gf-cunnet-offcanvas-menu a {
	width: max-content;
	color: inherit;
	font-family: var(--gf-display);
	font-size: clamp(62px, 8vw, 140px);
	font-weight: 900;
	line-height: 0.86;
	text-decoration: none;
	text-transform: uppercase;
}

.gf-cunnet-offcanvas-cart {
	width: fit-content;
	margin-top: clamp(18px, 3vw, 36px);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--gf-cunnet-white);
	padding: 12px 16px;
	font: inherit;
	font-size: clamp(14px, 1.2vw, 18px);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.gf-cunnet-offcanvas-cart:hover,
.gf-cunnet-offcanvas-cart:focus-visible {
	transform: translateY(-2px);
	background: var(--gf-cunnet-white);
	border-color: var(--gf-cunnet-white);
	color: var(--gf-cunnet-dark);
}

.gf-cunnet-offcanvas-side {
	display: grid;
	align-content: end;
	gap: 34px;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 250, 247, 0.68);
}

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

.gf-cunnet-contact-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 180;
	background: var(--gf-cunnet-dark);
	color: var(--gf-cunnet-white);
	overflow-y: auto;
	transition: transform 650ms cubic-bezier(.22, 1, .36, 1);
}

.gf-cunnet-contact-modal.is-open {
	display: flex;
	flex-direction: column;
}

.gf-cunnet-contact-inner {
	display: flex;
	flex-direction: column;
	min-height: 100svh;
	padding: clamp(28px, 5vw, 72px);
}

.gf-cunnet-contact-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: clamp(48px, 9vw, 96px);
}

.gf-cunnet-contact-body {
	flex: 1;
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: clamp(32px, 6vw, 80px);
	align-items: start;
}

.gf-cunnet-contact-heading {
	font-size: clamp(38px, 5.5vw, 88px);
	font-weight: 900;
	line-height: 0.88;
	letter-spacing: -0.035em;
	text-transform: uppercase;
}

.gf-cunnet-contact-subtext {
	margin-top: 24px;
	font-size: clamp(14px, 1.4vw, 18px);
	color: rgba(255, 250, 247, 0.55);
	line-height: 1.5;
	max-width: 34ch;
}

.gf-cunnet-contact-form {
	padding-top: 8px;
}

/* ---- Search box ---- */

.gf-cunnet-search-box {
	width: min(100% - 40px, 1180px);
}

.gf-cunnet-search-box .gf-cunnet-panel-top {
	margin-bottom: clamp(42px, 7vw, 96px);
}

.gf-cunnet-search-box input {
	width: 100%;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.52);
	background: transparent;
	color: var(--gf-cunnet-white);
	font-size: clamp(38px, 6vw, 112px);
	font-weight: 700;
	outline: 0;
	padding: 18px 0;
}

.gf-cunnet-hero {
	position: relative;
	min-height: 100svh;
	padding: clamp(112px, 10vw, 168px) 0 58px;
	overflow: hidden;
	color: var(--gf-cunnet-white);
}

/* ─── Hero gallery strip ─────────────────────────────────── */

.gf-cunnet-hero-gallery-strip {
	position: absolute;
	inset: 0;
	z-index: -3;
	overflow: hidden;
	background: var(--gf-cunnet-dark);
}

.gf-cunnet-hero-gallery-track {
	display: flex;
	height: 100%;
	gap: 5px;
	width: max-content;
	animation: gf-cunnet-gallery-scroll 50s linear infinite;
	will-change: transform;
}

.gf-cunnet-hero-gallery-track:hover {
	animation-play-state: paused;
}

.gf-cunnet-gallery-slide {
	flex-shrink: 0;
	width: clamp(190px, 15vw, 290px);
	height: 100%;
	overflow: hidden;
	cursor: none;
}

.gf-cunnet-gallery-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	filter: saturate(0.82) brightness(0.88);
	transition:
		transform 700ms cubic-bezier(.22, 1, .36, 1),
		filter 500ms ease;
}

.gf-cunnet-gallery-slide:hover img {
	transform: scale(1.07);
	filter: saturate(1.1) brightness(1.04) contrast(1.04);
}


.gf-cunnet-hero-bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.38), transparent 18%),
		radial-gradient(circle at 75% 40%, rgba(255, 98, 77, 0.52), transparent 22%),
		linear-gradient(120deg, #131313 0%, #33302e 35%, #d85b49 36%, #f29c83 54%, #251e1c 55%, #09090b 100%);
	transform: scale(1.03);
}

.gf-cunnet-hero.has-media .gf-cunnet-hero-bg {
	background:
		radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.22), transparent 20%),
		radial-gradient(circle at 72% 42%, rgba(251, 75, 55, 0.32), transparent 26%),
		linear-gradient(90deg, rgba(9, 9, 11, 0.86), rgba(9, 9, 11, 0.28) 48%, rgba(9, 9, 11, 0.74));
}

.gf-cunnet-hero.has-gallery .gf-cunnet-hero-bg {
	background:
		linear-gradient(
			90deg,
			rgba(9, 9, 11, 0.97) 0%,
			rgba(9, 9, 11, 0.92) 18%,
			rgba(9, 9, 11, 0.72) 34%,
			rgba(9, 9, 11, 0.28) 56%,
			rgba(9, 9, 11, 0.12) 80%,
			rgba(9, 9, 11, 0.08) 100%
		);
}

.gf-cunnet-hero.has-gallery .gf-cunnet-hero-bg::before {
	opacity: 0.18;
}

.gf-cunnet-hero-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 60px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 60px),
		radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(0, 0, 0, 0.5) 85%);
	opacity: 0.62;
}

.gf-cunnet-hero-grid {
	position: relative;
	z-index: 1;
	min-height: calc(100svh - 220px);
	display: grid;
	grid-template-columns: 0.55fr 0.45fr;
	gap: clamp(28px, 5vw, 90px);
	align-content: end;
}

.gf-cunnet-hero-copy {
	grid-column: 1;
	grid-row: 1;
	align-self: start;
	max-width: 440px;
	margin: 0 0 0 clamp(0px, 4vw, 70px);
	color: rgba(255, 250, 247, 0.86);
	font-size: clamp(18px, 1.45vw, 25px);
	font-weight: 600;
	line-height: 1.2;
}

.gf-cunnet-hero-badge {
	grid-column: 2;
	grid-row: 1;
	justify-self: end;
	align-self: start;
	position: relative;
	width: clamp(116px, 11vw, 184px);
	aspect-ratio: 1;
	margin-right: clamp(0px, 4vw, 70px);
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 250, 247, 0.08);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.22),
		0 18px 54px rgba(0, 0, 0, 0.24);
	backdrop-filter: blur(10px);
}

.gf-cunnet-hero-badge::before {
	content: "";
	position: absolute;
	inset: 14%;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.gf-cunnet-hero-badge-ring {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	animation: gf-cunnet-rotate 18s linear infinite;
}

.gf-cunnet-hero-badge-ring text {
	fill: rgba(255, 250, 247, 0.86);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 5px;
	text-transform: uppercase;
}

.gf-cunnet-hero-badge-core {
	position: relative;
	z-index: 1;
	width: 42%;
	aspect-ratio: 1;
	display: grid;
	place-items: center;
	border-radius: 50%;
}

.gf-cunnet-hero-badge-core strong {
	color: var(--gf-cunnet-white);
	font-size: clamp(30px, 3.1vw, 58px);
	font-weight: 900;
	line-height: 1;
}

.gf-cunnet-hero-badge-core img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.gf-cunnet-hero-title-wrap {
	grid-column: 1 / -1;
	margin-top: clamp(60px, 8vw, 110px);
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	overflow: hidden;
}

.gf-cunnet-hero-title {
	display: flex;
	align-items: center;
	gap: clamp(28px, 4vw, 80px);
	width: max-content;
	animation: gf-cunnet-marquee var(--gf-cunnet-marquee-duration) linear infinite;
}

.gf-cunnet-hero-title span {
	font-family: var(--gf-display);
	font-size: clamp(116px, 17vw, 330px);
	font-weight: 1000;
	letter-spacing: -0.04em;
	line-height: 0.72;
	text-transform: uppercase;
	white-space: nowrap;
}

.gf-cunnet-hero-title i {
	color: var(--gf-cunnet-red);
	font-family: var(--gf-display);
	font-size: clamp(112px, 15vw, 290px);
	font-style: normal;
	font-weight: 1000;
	line-height: 0.7;
}

.gf-cunnet-hero-bottom {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(260px, 0.5fr) 1fr;
	gap: clamp(30px, 5vw, 88px);
	align-items: end;
}

.gf-cunnet-tag-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	max-width: 620px;
	margin-left: clamp(0px, 4vw, 70px);
}

.gf-cunnet-tag-cloud a {
	border: 1px solid rgba(255, 255, 255, 0.52);
	border-radius: 999px;
	padding: 8px 13px;
	color: rgba(255, 250, 247, 0.86);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: background 220ms ease, color 220ms ease;
}

.gf-cunnet-tag-cloud a:hover,
.gf-cunnet-tag-cloud a:focus-visible {
	background: var(--gf-cunnet-white);
	color: var(--gf-cunnet-ink);
}

.gf-cunnet-scroll-link {
	justify-self: end;
	margin-right: clamp(0px, 4vw, 70px);
	color: rgba(255, 250, 247, 0.9);
	font-size: 15px;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

.gf-cunnet-section {
	padding: clamp(86px, 9vw, 160px) 0;
}

.gf-cunnet-portfolio-grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.43fr) minmax(0, 0.57fr);
	gap: clamp(36px, 7vw, 130px);
	align-items: start;
}

.gf-cunnet-section-title {
	margin: 0;
	font-family: var(--gf-display);
	font-size: clamp(62px, 6.3vw, 118px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 0.92;
	text-transform: uppercase;
}

.gf-cunnet-portfolio-copy {
	max-width: 610px;
	margin: 0;
	color: var(--gf-cunnet-muted);
	font-size: clamp(16px, 1.15vw, 20px);
	font-weight: 600;
	line-height: 1.44;
}

.gf-cunnet-sticky-block {
	position: sticky;
	top: 120px;
	display: grid;
	gap: 32px;
}

.gf-cunnet-project-list {
	display: grid;
	gap: clamp(44px, 5vw, 76px);
}

.gf-cunnet-project-card {
	color: inherit;
	text-decoration: none;
}

.gf-cunnet-project-media {
	min-height: clamp(360px, 44vw, 760px);
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.32) 0 1px, transparent 1px 44px),
		radial-gradient(circle at 64% 18%, rgba(255, 255, 255, 0.8), transparent 14%),
		linear-gradient(135deg, hsl(var(--gf-cunnet-hue), 70%, 58%), #111 64%);
	background-size: 44px 44px, auto, auto;
	transition: transform 460ms cubic-bezier(.22, 1, .36, 1), filter 460ms ease;
}

.gf-cunnet-project-card:hover .gf-cunnet-project-media,
.gf-cunnet-project-card:focus-visible .gf-cunnet-project-media {
	filter: saturate(1.14) contrast(1.05);
	transform: scale(0.985);
}

.gf-cunnet-project-content {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
	padding-top: 20px;
}

.gf-cunnet-project-content h3 {
	margin: 0;
	font-family: var(--gf-display);
	font-size: clamp(36px, 3.2vw, 62px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
}

.gf-cunnet-project-tags,
.gf-cunnet-about-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.gf-cunnet-project-tags {
	justify-content: flex-end;
}

.gf-cunnet-project-tags span,
.gf-cunnet-about-tags span {
	border: 1px solid var(--gf-cunnet-line);
	border-radius: 999px;
	padding: 7px 11px;
	color: var(--gf-cunnet-muted);
	font-size: 13px;
	font-weight: 700;
}

/* =============================================================
   About — Cinematic scroll-jacked section
   ============================================================= */

/* Scroll trap: N panels × 100svh — page "pauses" inside */
.gf-about-root {
	height: calc(var(--ab-count, 3) * 100svh);
	position: relative;
}

/* Sticky viewport: always fills the screen */
.gf-about-sticky {
	position: sticky;
	top: 0;
	height: 100svh;
	display: grid;
	grid-template-columns: 42vw 1fr;
	overflow: hidden;
	background: var(--gf-cunnet-paper);
}

/* ── Left media ── */
.gf-about-media {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.gf-about-media video,
.gf-about-media-ph {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gf-about-media-ph {
	background: var(--gf-cunnet-ink);
}

/* Subtle vignette on right edge of video */
.gf-about-media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, transparent 70%, var(--gf-cunnet-paper) 100%);
	pointer-events: none;
}

/* ── Right panels viewport ── */
.gf-about-track-wrap {
	position: relative;
	height: 100svh;
	overflow: hidden;
	z-index: 2;
}

.gf-about-track {
	display: flex;
	flex-direction: column;
	will-change: transform;
	transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Each panel = full viewport height */
.gf-about-panel {
	flex: 0 0 100svh;
	height: 100svh;
	display: flex;
	align-items: center;
	padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4.5vw, 5.5rem);
	overflow: hidden;
}

.gf-about-panel__inner {
	width: 100%;
	max-width: 580px;
	display: flex;
	flex-direction: column;
	gap: clamp(1.25rem, 2vw, 2rem);
}

/* ── Panel typography ── */
.gf-about-panel__head {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.gf-about-panel__title {
	margin: 0;
	font-family: var(--gf-display);
	font-size: clamp(48px, 6vw, 108px);
	font-weight: 900;
	letter-spacing: -0.045em;
	line-height: 0.86;
	text-transform: uppercase;
	color: var(--gf-cunnet-ink);
}

.gf-about-panel__text {
	margin: 0;
	font-size: clamp(14px, 1.1vw, 17px);
	line-height: 1.55;
	color: var(--gf-cunnet-muted);
	max-width: 42ch;
}

/* ── Photos strip ── */
.gf-about-panel__photos {
	display: flex;
	gap: clamp(8px, 0.8vw, 14px);
	overflow: hidden;
	border-radius: 8px;
	flex-shrink: 0;
}

.gf-about-photo {
	flex: 0 0 calc((100% - (clamp(8px, 0.8vw, 14px) * 2)) / 3);
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.gf-about-photo img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	display: block;
	transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gf-about-photo:hover img {
	transform: scale(1.06);
}

.gf-about-panel__cta {
	align-self: flex-start;
}

/* ── Panel counter / progress dots ── */
.gf-about-dots {
	position: absolute;
	right: clamp(1rem, 1.8vw, 2rem);
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	z-index: 10;
}

.gf-about-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--gf-cunnet-muted);
	border: none;
	padding: 0;
	cursor: pointer;
	opacity: 0.35;
	transition: opacity 200ms, transform 200ms, background 200ms;
}

.gf-about-dot.is-active {
	background: var(--gf-cunnet-ink);
	opacity: 1;
	transform: scale(1.7);
}

/* ── Scroll hint ── */
.gf-about-hint {
	position: absolute;
	bottom: 2rem;
	left: 42vw;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	color: var(--gf-cunnet-muted);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	pointer-events: none;
	transition: opacity 500ms ease;
	z-index: 10;
}

.gf-about-hint i {
	display: block;
	width: 1px;
	height: 28px;
	background: var(--gf-cunnet-muted);
	transform-origin: top;
	animation: gf-about-hint-drop 1.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes gf-about-hint-drop {
	0%   { transform: scaleY(0); opacity: 0; }
	30%  { opacity: 1; }
	70%  { transform: scaleY(1); opacity: 1; }
	100% { transform: scaleY(1); opacity: 0; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.gf-about-root {
		height: auto;
	}

	.gf-about-sticky {
		position: relative;
		height: auto;
		grid-template-columns: 1fr;
	}

	.gf-about-media {
		height: 50svh;
	}

	.gf-about-media::after {
		background: linear-gradient(to bottom, transparent 60%, var(--gf-cunnet-paper) 100%);
	}

	.gf-about-track-wrap {
		height: auto;
		overflow: visible;
	}

	.gf-about-track {
		transform: none !important;
		transition: none;
	}

	.gf-about-panel {
		flex: none;
		height: auto;
		min-height: 70svh;
		padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
		border-top: 1px solid var(--gf-cunnet-line);
	}

	.gf-about-dots,
	.gf-about-hint {
		display: none;
	}

	.gf-about-photo {
		flex-basis: calc((100% - 8px) / 2);
	}
}

@media (max-width: 640px) {
	.gf-about-media {
		height: 38svh;
	}

	.gf-about-panel__title {
		font-size: clamp(42px, 12vw, 68px);
	}

	.gf-about-panel__photos {
		flex-wrap: wrap;
	}

	.gf-about-photo {
		flex-basis: calc(50% - 4px);
	}
}

/* Legacy classes — kept for Pricing header */
.gf-cunnet-about {
	padding-top: clamp(50px, 7vw, 120px);
	overflow: hidden;
}

.gf-cunnet-about-big {
	margin: 0 0 clamp(42px, 6vw, 96px);
	border-bottom: 1px solid var(--gf-cunnet-line);
	padding-bottom: clamp(38px, 5vw, 72px);
	text-align: center;
	font-family: var(--gf-display);
	font-size: clamp(74px, 13.8vw, 260px);
	font-weight: 900;
	letter-spacing: -0.055em;
	line-height: 0.74;
	text-transform: uppercase;
	animation: gf-cunnet-float-y 4200ms ease-in-out infinite alternate;
}

.gf-cunnet-about-grid {
	display: grid;
	grid-template-columns: 0.34fr 0.66fr;
	gap: clamp(34px, 7vw, 125px);
}

.gf-cunnet-eyebrow {
	color: var(--gf-cunnet-ink);
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.gf-cunnet-eyebrow span {
	color: var(--gf-cunnet-red);
}

.gf-cunnet-about-lede {
	margin: 0 0 34px;
	font-size: clamp(32px, 3.3vw, 64px);
	font-weight: 700;
	letter-spacing: -0.055em;
	line-height: 1;
}

/* Gallery intro header uses gf-cunnet-section + gf-cunnet-about-big/grid — no extra CSS needed */
.gf-gallery-intro {
	background: var(--gf-cunnet-paper);
}

.gf-cunnet-gallery {
	padding-block: clamp(40px, 5vw, 80px);
	overflow: hidden;
	background: #fff;
}

.gf-cunnet-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 5px;
	align-items: start;
}

.gf-cunnet-gallery-column {
	display: grid;
	gap: 5px;
	align-content: start;
	will-change: transform;
}

.gf-cunnet-gallery-tile {
	min-height: clamp(280px, 38vw, 700px);
	background:
		linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent 40%),
		radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.62), transparent 18%),
		linear-gradient(135deg, hsl(var(--gf-cunnet-hue), 78%, 62%), #1a1514);
}

.gf-cunnet-gallery-tile.is-short {
	min-height: clamp(210px, 26vw, 520px);
}

/* Gallery items — image mode */
.gf-cunnet-gallery-item {
	display: block;
	width: 100%;
	padding: 0;
	border: none;
	background: none;
	cursor: none;
	overflow: hidden;
	border-radius: 4px;
}

.gf-cunnet-gallery-item.is-hidden {
	display: none;
}

.gf-cunnet-gallery-item img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 700ms cubic-bezier(.22, 1, .36, 1), filter 500ms ease;
	filter: saturate(0.9) brightness(0.96);
}

.gf-cunnet-gallery-item:hover img {
	transform: scale(1.04);
	filter: saturate(1.08) brightness(1.03);
}

/* Load more */
.gf-cunnet-gallery-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: clamp(36px, 5vw, 72px);
}

.gf-cunnet-gallery-more {
	position: relative;
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	background: transparent;
	padding: 10px;
	border-radius: 999px;
	color: var(--gf-cunnet-dark);
	cursor: pointer;
	outline: none;
	isolation: isolate;
}

.gf-cunnet-gallery-more::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: inherit;
	background: color-mix(in srgb, var(--gf-cunnet-dark) 4%, transparent);
	opacity: 0;
	transform: scale(0.92);
	transition: opacity 240ms ease, transform 240ms cubic-bezier(.22, 1, .36, 1);
}

.gf-cunnet-gallery-more .gf-cunnet-btn-dot,
.gf-cunnet-gallery-more .gf-cunnet-btn-pill {
	background: color-mix(in srgb, var(--gf-cunnet-paper) 92%, #fff 8%);
	box-shadow: 0 16px 46px rgba(9, 9, 11, 0.06);
	transition:
		background 260ms ease,
		color 260ms ease,
		border-color 260ms ease,
		box-shadow 260ms ease,
		transform 260ms cubic-bezier(.22, 1, .36, 1);
}

.gf-cunnet-gallery-more:hover::before,
.gf-cunnet-gallery-more:focus-visible::before {
	opacity: 1;
	transform: scale(1);
}

.gf-cunnet-gallery-more:hover .gf-cunnet-btn-dot,
.gf-cunnet-gallery-more:hover .gf-cunnet-btn-pill,
.gf-cunnet-gallery-more:focus-visible .gf-cunnet-btn-dot,
.gf-cunnet-gallery-more:focus-visible .gf-cunnet-btn-pill {
	background: var(--gf-cunnet-dark);
	color: var(--gf-cunnet-white);
	border-color: var(--gf-cunnet-dark);
	box-shadow: 0 20px 56px rgba(9, 9, 11, 0.16);
	transform: translateY(-3px);
}

.gf-cunnet-gallery-more:focus-visible {
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--gf-cunnet-dark) 12%, transparent);
}

/* Lightbox */
.gf-cunnet-lightbox {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(9, 9, 11, 0.94);
	backdrop-filter: blur(10px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 280ms ease;
}

.gf-cunnet-lightbox.is-open {
	opacity: 1;
	pointer-events: auto;
}

.gf-cunnet-lightbox-img {
	max-width: min(88vw, 1280px);
	max-height: 86svh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 4px;
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
	opacity: 0;
	transition: opacity 240ms ease;
}

.gf-cunnet-lightbox-video {
	display: none;
	max-width: min(88vw, 1280px);
	max-height: 86svh;
	width: auto;
	height: auto;
	border-radius: 4px;
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
	opacity: 0;
	transition: opacity 240ms ease;
}

.gf-cunnet-lightbox.is-video .gf-cunnet-lightbox-img {
	display: none;
}

.gf-cunnet-lightbox.is-video .gf-cunnet-lightbox-video {
	display: block;
}

.gf-cunnet-lightbox.is-open .gf-cunnet-lightbox-img,
.gf-cunnet-lightbox.is-open .gf-cunnet-lightbox-video {
	opacity: 1;
}

.gf-cunnet-lightbox-close,
.gf-cunnet-lightbox-prev,
.gf-cunnet-lightbox-next {
	position: absolute;
	display: grid;
	place-items: center;
	background: rgba(255, 250, 247, 0.08);
	border: 1px solid rgba(255, 250, 247, 0.16);
	border-radius: 50%;
	color: rgba(255, 250, 247, 0.85);
	cursor: pointer;
	transition: background 200ms ease, transform 200ms ease;
}

.gf-cunnet-lightbox-close:hover,
.gf-cunnet-lightbox-prev:hover,
.gf-cunnet-lightbox-next:hover {
	background: rgba(255, 250, 247, 0.18);
	transform: scale(1.08);
}

.gf-cunnet-lightbox-close {
	top: clamp(16px, 3vw, 32px);
	right: clamp(16px, 3vw, 32px);
	width: 48px;
	height: 48px;
	font-size: 22px;
}

.gf-cunnet-lightbox-prev {
	left: clamp(12px, 2.5vw, 28px);
	width: 52px;
	height: 52px;
	font-size: 20px;
}

.gf-cunnet-lightbox-next {
	right: clamp(12px, 2.5vw, 28px);
	width: 52px;
	height: 52px;
	font-size: 20px;
}

.gf-cunnet-lightbox-counter {
	position: absolute;
	bottom: clamp(16px, 3vw, 28px);
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 250, 247, 0.45);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
}

.gf-cunnet-awards-head {
	display: grid;
	grid-template-columns: 0.25fr 0.5fr 0.25fr;
	gap: 34px;
	align-items: end;
	margin-bottom: clamp(44px, 6vw, 86px);
}

.gf-cunnet-awards-title {
	display: grid;
	margin: 0;
}

.gf-cunnet-awards-title strong {
	font-family: var(--gf-display);
	font-size: clamp(82px, 9vw, 170px);
	font-weight: 900;
	letter-spacing: -0.055em;
	line-height: 0.74;
	text-transform: uppercase;
}

.gf-cunnet-awards-title span {
	justify-self: end;
	font-family: var(--gf-display);
	font-size: clamp(36px, 4vw, 78px);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 0.9;
}

.gf-cunnet-awards-list {
	width: min(100%, 1280px);
	margin-left: auto;
	border-top: 1px solid var(--gf-cunnet-line);
}

.gf-cunnet-award-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 28px;
	align-items: center;
	border-bottom: 1px solid var(--gf-cunnet-line);
	padding: clamp(24px, 3vw, 42px) 0;
	transition: padding-left 260ms ease, color 260ms ease;
}

.gf-cunnet-award-row:hover {
	padding-left: 18px;
	color: var(--gf-cunnet-red);
}

.gf-cunnet-award-row strong {
	display: block;
	margin-top: 8px;
	font-size: clamp(26px, 2.6vw, 48px);
	line-height: 1;
}

.gf-cunnet-award-row small {
	color: var(--gf-cunnet-muted);
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
}

.gf-cunnet-award-row time {
	font-size: clamp(24px, 2.6vw, 44px);
	font-weight: 800;
}

.gf-cunnet-footer {
	position: relative;
	overflow: hidden;
	background: var(--gf-cunnet-dark);
	color: var(--gf-cunnet-white);
	padding: clamp(72px, 7vw, 132px) 0 0;
}

.gf-cunnet-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px);
	background-size: 4px 4px;
	opacity: 0.12;
	pointer-events: none;
}

.gf-cunnet-footer-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(260px, 0.34fr) minmax(420px, 0.66fr);
	gap: clamp(44px, 7vw, 136px);
	align-items: center;
}

.gf-cunnet-footer h2 {
	margin: 0;
	font-size: clamp(44px, 4.55vw, 84px);
	font-weight: 700;
	letter-spacing: -0.05em;
	line-height: 0.96;
	overflow-wrap: normal;
	text-wrap: balance;
	word-break: normal;
}

.gf-cunnet-footer h2 .gf-tr-unit {
	white-space: nowrap;
}

.gf-cunnet-footer-connect {
	display: grid;
	justify-items: start;
	gap: clamp(20px, 2vw, 32px);
	min-width: 0;
}

.gf-cunnet-footer-email {
	color: inherit;
	font-size: clamp(36px, 4.25vw, 78px);
	font-weight: 700;
	letter-spacing: -0.052em;
	line-height: 0.96;
	text-decoration: none;
	overflow-wrap: break-word;
	word-break: normal;
}

.gf-cunnet-footer-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.gf-cunnet-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 44px;
	padding: 0 16px;
	border: 1px solid rgba(255, 250, 247, 0.18);
	border-radius: 999px;
	color: rgba(255, 250, 247, 0.72);
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.gf-cunnet-social-link svg {
	width: 18px;
	height: 18px;
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.gf-cunnet-social-link:hover,
.gf-cunnet-social-link:focus-visible {
	background: var(--gf-cunnet-white);
	border-color: var(--gf-cunnet-white);
	color: var(--gf-cunnet-dark);
	transform: translateY(-2px);
}

.gf-cunnet-footer-main {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(230px, 1fr));
	gap: clamp(32px, 5vw, 86px);
	width: min(820px, 100%);
	margin: clamp(76px, 7vw, 124px) 0 0 auto;
}

.gf-cunnet-footer-main h3 {
	margin: 0 0 18px;
	font-size: 18px;
}

.gf-cunnet-footer-main a,
.gf-cunnet-footer-main p {
	display: block;
	margin: 0 0 10px;
	color: rgba(255, 250, 247, 0.62);
	font-size: 16px;
	line-height: 1.35;
	text-decoration: none;
}

.gf-cunnet-footer-bottom {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	margin-top: 52px;
	padding-top: 22px;
	color: rgba(255, 250, 247, 0.5);
	font-size: 14px;
}

.gf-cunnet-footer-bottom a {
	color: rgba(255, 250, 247, 0.7);
	text-decoration: none;
	transition: color 200ms ease;
}

.gf-cunnet-footer-bottom a:hover {
	color: var(--gf-cunnet-white);
}

.gf-cunnet-footer-legal {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.gf-cunnet-footer-big-wrap {
	position: relative;
	z-index: 1;
	width: 100%;
	margin-top: clamp(40px, 4vw, 70px);
	overflow: hidden;
}

.gf-cunnet-footer-big-track {
	display: flex;
	align-items: center;
	width: max-content;
	animation: gf-cunnet-marquee var(--gf-cunnet-marquee-duration) linear infinite;
	will-change: transform;
}

.gf-cunnet-footer-big-track span {
	padding-right: clamp(60px, 8vw, 160px);
	color: rgba(255, 250, 247, 0.08);
	font-family: var(--gf-display);
	font-size: clamp(110px, 19vw, 360px);
	font-weight: 900;
	letter-spacing: -0.055em;
	line-height: 0.78;
	text-transform: uppercase;
	white-space: nowrap;
	flex-shrink: 0;
}

.gf-cunnet-reveal {
	opacity: 0;
	transform: translateY(42px);
	transition: opacity 900ms cubic-bezier(.22, 1, .36, 1), transform 900ms cubic-bezier(.22, 1, .36, 1);
}

.gf-cunnet-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* =============================================================
   Text Reveal — per-char / per-word / slide-left
   ============================================================= */

/* Units (chars or words) start hidden */
.gf-tr-unit {
	display: inline-block;
	opacity: 0;
	will-change: transform, opacity, filter;
}

.gf-tr-word {
	display: inline-block;
	white-space: nowrap;
}

/* Chars: fall from below + blur */
[data-gf-text-reveal="chars"] .gf-tr-unit {
	transform: translateY(0.75em) rotate(3deg);
	filter: blur(6px);
}

/* Words: rise from below, no blur */
[data-gf-text-reveal="words"] .gf-tr-unit {
	transform: translateY(0.45em);
}

/* Slide-left element: whole element slides in */
[data-gf-text-reveal="slide-left"] {
	opacity: 0;
	transform: translateX(-28px);
	transition: opacity 600ms cubic-bezier(.22, 1, .36, 1),
	            transform 600ms cubic-bezier(.22, 1, .36, 1);
}
[data-gf-text-reveal="slide-left"].is-revealed {
	opacity: 1;
	transform: none;
}

/* Char/word animation (triggered by .is-revealed on parent) */
[data-gf-text-reveal="chars"].is-revealed .gf-tr-unit,
[data-gf-text-reveal="words"].is-revealed .gf-tr-unit {
	animation: gf-tr-in var(--gf-tr-dur, 680ms) cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes gf-tr-in {
	to {
		opacity: 1;
		transform: none;
		filter: blur(0);
	}
}

/* Reduced motion — instant reveal */
@media (prefers-reduced-motion: reduce) {
	.gf-tr-unit,
	[data-gf-text-reveal="slide-left"] {
		opacity: 1 !important;
		transform: none !important;
		filter: none !important;
		animation: none !important;
		transition: none !important;
	}
}

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

@keyframes gf-cunnet-gallery-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-25%);
	}
}


@keyframes gf-cunnet-rotate {
	to {
		transform: rotate(360deg);
	}
}


@keyframes gf-cunnet-float-y {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-18px);
	}
}

@media (max-width: 1100px) {
	.gf-cunnet-home,
	.gf-cunnet-home a,
	.gf-cunnet-home button {
		cursor: auto;
	}

	.gf-cunnet-cursor {
		display: none;
	}

	.gf-cunnet-main-nav {
		display: none;
	}

	.gf-cunnet-header-grid {
		display: flex;
		justify-content: space-between;
		gap: clamp(14px, 2vw, 22px);
		width: calc(100% - clamp(32px, 5vw, 72px));
	}

	.gf-cunnet-brand {
		justify-self: auto;
		min-width: 0;
		font-size: clamp(22px, 3vw, 32px);
	}

	.gf-cunnet-brand-image {
		max-width: min(190px, 38vw);
		max-height: 48px;
	}

	.gf-cunnet-header-actions {
		justify-self: auto;
		flex-shrink: 0;
		gap: 10px;
		padding-right: 0;
	}

	.gf-cunnet-icon-btn {
		width: 46px;
		height: 46px;
	}

	.gf-cunnet-contact-body {
		grid-template-columns: 1fr;
	}

	.gf-cunnet-portfolio-grid,
	.gf-cunnet-about-grid,
	.gf-cunnet-awards-head,
	.gf-cunnet-footer-grid,
	.gf-cunnet-hero-grid,
	.gf-cunnet-hero-bottom {
		grid-template-columns: 1fr;
	}

	.gf-cunnet-brand,
	.gf-cunnet-hero-badge,
	.gf-cunnet-scroll-link {
		justify-self: start;
	}

	.gf-cunnet-hero-copy,
	.gf-cunnet-hero-badge {
		grid-column: auto;
		grid-row: auto;
	}

	.gf-cunnet-hero-badge,
	.gf-cunnet-scroll-link {
		margin-right: 0;
	}

	.gf-cunnet-tag-cloud,
	.gf-cunnet-hero-copy {
		margin-left: 0;
	}

	.gf-cunnet-sticky-block {
		position: static;
	}

	.gf-cunnet-offcanvas {
		grid-template-columns: 1fr;
	}

	.gf-cunnet-offcanvas-side {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}
}

@media (max-width: 960px) {
	.gf-cunnet-header-actions .gf-cunnet-btn-group {
		display: none;
	}
}

@media (max-width: 720px) {
	.gf-cunnet-header-grid {
		display: flex;
		justify-content: space-between;
		gap: 16px;
		width: calc(100% - 32px);
	}

	.gf-cunnet-brand {
		justify-self: auto;
		min-width: 0;
		font-size: clamp(20px, 6vw, 26px);
	}

	.gf-cunnet-brand-image {
		max-width: min(160px, 44vw);
		max-height: 42px;
	}

	.gf-cunnet-header-actions {
		justify-self: auto;
		flex-shrink: 0;
		gap: 8px;
		padding-right: 0;
	}

	.gf-cunnet-icon-btn {
		width: 44px;
		height: 44px;
	}

	.gf-cunnet-gallery-slide {
		width: 82vw;
	}

	.gf-cunnet-hero-gallery-track:hover {
		animation-play-state: running;
	}

	.gf-cunnet-gallery-slide:hover img {
		transform: none;
	}

	.gf-cunnet-header-actions .gf-cunnet-btn-group {
		display: none;
	}

	.gf-cunnet-hero {
		padding-top: 104px;
	}

	.gf-cunnet-hero-copy {
		max-width: calc(100vw - 48px);
		font-size: clamp(17px, 5vw, 22px);
	}

	.gf-cunnet-hero-title-wrap {
		margin-top: clamp(38px, 12vw, 62px);
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		overflow: visible;
	}

	.gf-cunnet-hero-title {
		width: 100%;
		animation: none;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
	}

	.gf-cunnet-hero-title span {
		max-width: 100%;
		font-size: clamp(52px, 15vw, 86px);
		line-height: 0.86;
		white-space: normal;
		text-wrap: balance;
	}

	.gf-cunnet-hero-title span:nth-of-type(n+3),
	.gf-cunnet-hero-title i {
		display: none;
	}

	.gf-cunnet-tag-cloud {
		max-width: calc(100vw - 48px);
	}

	.gf-cunnet-gallery-grid {
		grid-template-columns: 1fr;
	}

	.gf-cunnet-project-content,
	.gf-cunnet-award-row,
	.gf-cunnet-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		display: flex;
	}

	.gf-cunnet-footer-main {
		grid-template-columns: 1fr;
	}

	.gf-cunnet-footer h2 {
		font-size: clamp(42px, 13vw, 72px);
		line-height: 0.94;
	}

	.gf-cunnet-footer-email {
		font-size: clamp(32px, 10vw, 56px);
		letter-spacing: -0.045em;
	}

	.gf-cunnet-social-link {
		min-height: 40px;
		padding-inline: 13px;
		font-size: 11px;
	}

	.gf-cunnet-offcanvas-menu a {
		font-size: clamp(48px, 17vw, 92px);
	}
}

/* About lorem template --------------------------------------------------- */
.gf-about-lorem {
	--gf-paper: #ffffff;
	--gf-paper-soft: #f0f1f1;
	overflow-x: hidden;
}

.gf-about-header {
	color: var(--gf-ink);
}

.gf-about-hero {
	display: grid;
	align-items: center;
	min-height: 78svh;
	padding: clamp(96px, 10vw, 160px) 0 clamp(64px, 8vw, 112px);
	background: #fff;
	color: var(--gf-ink);
}

.gf-about-hero-inner {
	display: grid;
	justify-items: center;
	text-align: center;
}

.gf-about-title {
	display: grid;
	width: min(100%, 1080px);
}

.gf-about-title .gf-3d-word {
	font-size: clamp(54px, 10vw, 136px);
	line-height: 0.86;
}

.gf-about-subtitle {
	max-width: 650px;
	margin: clamp(22px, 3vw, 38px) auto 0;
	font-size: clamp(23px, 2.3vw, 34px);
	font-weight: 650;
	line-height: 1.18;
}

.gf-about-image-pair {
	display: grid;
	grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
	gap: 30px;
	overflow: hidden;
	background: #fff;
	padding: 0 0 clamp(78px, 9vw, 136px);
}

.gf-about-media {
	margin: 0;
	overflow: hidden;
}

.gf-about-visual {
	min-height: 50vw;
	display: grid;
	place-items: center;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 18px),
		linear-gradient(135deg, #10100d, #3c3a35 42%, #f45640 43%, #f5f0e7);
	color: #fff;
	font-family: var(--gf-display);
	font-size: clamp(72px, 11vw, 180px);
	font-weight: 900;
	text-transform: uppercase;
}

.gf-about-visual-alt {
	background:
		radial-gradient(circle at 22% 24%, rgba(232, 255, 63, 0.8), transparent 18%),
		linear-gradient(135deg, #f0f1f1 0%, #d9d4c8 34%, #2257ff 35%, #10100d 100%);
}

.gf-about-statement {
	padding: clamp(78px, 10vw, 150px) 0 clamp(96px, 14vw, 210px);
	background: #fff;
}

.gf-about-index {
	display: block;
	margin-bottom: clamp(18px, 3vw, 34px);
	color: var(--gf-muted);
	font-weight: 900;
}

.gf-about-big {
	max-width: 1200px;
	margin: 0;
	font-family: var(--gf-display);
	font-size: clamp(38px, 6.3vw, 92px);
	font-weight: 900;
	line-height: 0.98;
	text-transform: uppercase;
}

.gf-about-testimonials {
	background: #10100d;
	padding: clamp(96px, 14vw, 190px) 0 clamp(74px, 10vw, 140px);
}

.gf-about-testimonial-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(310px, 1fr);
	gap: 23px;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.gf-about-testimonial-track::-webkit-scrollbar {
	display: none;
}

.gf-about-quote {
	min-height: 360px;
	display: grid;
	align-content: space-between;
	scroll-snap-align: start;
	border-radius: 20px;
	background: var(--gf-paper-soft);
	padding: clamp(30px, 4vw, 58px);
}

.gf-about-author {
	display: flex;
	gap: 16px;
	align-items: center;
}

.gf-about-author > span {
	width: 82px;
	height: 82px;
	flex: 0 0 82px;
	border-radius: 50%;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent),
		linear-gradient(135deg, #f45640, #10100d);
}

.gf-about-author strong,
.gf-about-author small {
	display: block;
}

.gf-about-author strong {
	font-size: clamp(22px, 2vw, 28px);
	line-height: 1.15;
}

.gf-about-author small {
	color: #555;
	font-size: 17px;
}

.gf-about-quote p {
	margin: 28px 0;
	color: #777;
	font-size: clamp(23px, 2.3vw, 30px);
	font-weight: 750;
	line-height: 1.2;
}

.gf-about-stars {
	color: var(--gf-red);
	font-size: 28px;
	letter-spacing: 2px;
}

.gf-about-cards {
	background: #fff;
}

.gf-about-section-head {
	display: grid;
	justify-items: center;
	margin-bottom: clamp(34px, 5vw, 70px);
	text-align: center;
}

.gf-about-section-head p {
	max-width: 700px;
	margin: 26px 0 0;
	font-size: clamp(20px, 2.2vw, 30px);
	font-weight: 650;
	line-height: 1.18;
}

.gf-about-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 3vw, 40px);
}

.gf-about-card {
	display: grid;
	gap: 16px;
}

.gf-about-card-media {
	position: relative;
	aspect-ratio: 0.82;
	display: grid;
	align-items: start;
	overflow: hidden;
	border-radius: var(--gf-radius);
	background:
		linear-gradient(120deg, transparent 0 44%, rgba(255, 255, 255, 0.32) 45% 55%, transparent 56%),
		linear-gradient(135deg, hsl(var(--gf-card-hue), 82%, 56%), #11110e);
	padding: 16px;
}

.gf-about-card-media span {
	width: max-content;
	border-radius: 999px;
	background: #fff;
	padding: 6px 11px;
	font-size: 15px;
	font-weight: 800;
}

.gf-about-card-body strong {
	display: block;
	font-size: clamp(23px, 2vw, 28px);
	font-weight: 750;
	line-height: 1.18;
}

.gf-about-card-body p {
	margin: 9px 0 0;
	color: var(--gf-muted);
	font-size: 17px;
	line-height: 1.42;
}

.gf-about-values {
	padding: clamp(84px, 11vw, 160px) 0;
	background: #f7f5ef;
}

.gf-about-value-list {
	position: relative;
	display: grid;
	border-top: 1px solid var(--gf-line);
}

.gf-about-value-list::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 118px;
	width: 1px;
	background: var(--gf-line);
}

.gf-about-value {
	position: relative;
	display: grid;
	grid-template-columns: 64px 108px minmax(220px, 0.65fr) minmax(260px, 0.75fr);
	gap: clamp(18px, 3vw, 44px);
	align-items: center;
	border-bottom: 1px solid var(--gf-line);
	padding: clamp(28px, 5vw, 58px) 0;
}

.gf-about-value-number {
	color: var(--gf-muted);
	font-weight: 900;
}

.gf-about-value-icon {
	width: 58px;
	height: 58px;
	border: 2px solid var(--gf-ink);
	border-radius: 50%;
	background:
		linear-gradient(90deg, transparent 45%, var(--gf-ink) 46% 54%, transparent 55%),
		linear-gradient(0deg, transparent 45%, var(--gf-ink) 46% 54%, transparent 55%);
}

.gf-about-value h3 {
	margin: 0;
	font-family: var(--gf-display);
	font-size: clamp(36px, 5vw, 72px);
	font-weight: 900;
	line-height: 0.92;
	text-transform: uppercase;
}

.gf-about-value p {
	margin: 0;
	color: var(--gf-muted);
	font-size: clamp(17px, 1.6vw, 21px);
	line-height: 1.34;
}

@media (max-width: 900px) {
	.gf-about-image-pair,
	.gf-about-card-grid,
	.gf-about-value {
		grid-template-columns: 1fr;
	}

	.gf-about-image-pair {
		padding-inline: var(--gf-pad);
	}

	.gf-about-visual {
		min-height: 72vw;
	}

	.gf-about-value-list::before {
		display: none;
	}

	.gf-about-value {
		gap: 16px;
	}
}

@media (max-width: 640px) {
	.gf-about-hero {
		min-height: 68svh;
	}

	.gf-about-testimonial-track {
		grid-auto-columns: minmax(280px, 86vw);
	}

	.gf-about-author > span {
		width: 64px;
		height: 64px;
		flex-basis: 64px;
	}
}

/* =============================================================
   Tattoo Info — FAQ block
   ============================================================= */

.gf-tattoo-info {
	background: var(--gf-cunnet-paper);
}

.gf-tattoo-info-shell {
	display: grid;
	grid-template-columns: minmax(260px, 0.92fr) minmax(360px, 1.08fr);
	gap: clamp(2rem, 5vw, 5.5rem);
	padding: clamp(2rem, 5vw, 5.5rem);
	background: #fff;
	color: var(--gf-cunnet-ink);
	border: 1px solid rgba(9, 9, 11, 0.08);
	border-radius: 12px;
	box-shadow: 0 4px 32px rgba(9, 9, 11, 0.06);
	overflow: hidden;
}

.gf-tattoo-info__intro,
.gf-tattoo-info__faqs {
	position: relative;
}

.gf-tattoo-info__intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 100%;
}

.gf-tattoo-info .gf-cunnet-eyebrow {
	color: var(--gf-cunnet-muted);
}

.gf-tattoo-info__title {
	margin: clamp(1rem, 1.8vw, 1.6rem) 0 0;
	max-width: 9.8em;
	font-family: var(--gf-display);
	font-size: clamp(42px, 6vw, 96px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 0.86;
	text-transform: uppercase;
	color: var(--gf-cunnet-ink);
}

.gf-tattoo-info__copy {
	max-width: 34rem;
	margin: clamp(1.25rem, 2vw, 1.9rem) 0 0;
	color: var(--gf-cunnet-muted);
	font-size: clamp(15px, 1.2vw, 18px);
	line-height: 1.45;
}

.gf-tattoo-info-card {
	width: min(100%, 30rem);
	margin-top: auto;
	padding: clamp(1.2rem, 2.1vw, 1.8rem);
	background: var(--gf-cunnet-paper);
	border: 1px solid rgba(9, 9, 11, 0.1);
	border-radius: 8px;
}

.gf-tattoo-info-card h3 {
	margin: 0;
	font-family: var(--gf-display);
	font-size: clamp(20px, 1.8vw, 28px);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--gf-cunnet-ink);
}

.gf-tattoo-info-card p {
	margin: 0.85rem 0 1.4rem;
	color: var(--gf-cunnet-muted);
	font-size: 13px;
	line-height: 1.55;
}

.gf-tattoo-info__cta .gf-cunnet-btn-pill,
.gf-tattoo-info__cta .gf-cunnet-btn-dot {
	background: var(--gf-cunnet-ink);
	border-color: var(--gf-cunnet-ink);
	color: var(--gf-cunnet-white);
}

.gf-tattoo-info__cta:hover .gf-cunnet-btn-pill,
.gf-tattoo-info__cta:hover .gf-cunnet-btn-dot {
	background: transparent;
	color: var(--gf-cunnet-ink);
	border-color: var(--gf-cunnet-ink);
}

.gf-tattoo-info__faqs {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.gf-tattoo-faq {
	background: #fff;
	border: 1px solid rgba(9, 9, 11, 0.1);
	border-radius: 8px;
	overflow: hidden;
	transition: border-color 220ms ease, box-shadow 220ms ease;
}

.gf-tattoo-faq:hover {
	border-color: rgba(9, 9, 11, 0.22);
	box-shadow: 0 2px 12px rgba(9, 9, 11, 0.06);
}

.gf-tattoo-faq[open] {
	border-color: var(--gf-cunnet-ink);
}

.gf-tattoo-faq summary {
	list-style: none;
	cursor: pointer;
	display: grid;
	grid-template-columns: 1fr 2.2rem;
	align-items: center;
	gap: 1rem;
	padding: clamp(0.9rem, 1.2vw, 1.2rem) clamp(1rem, 1.4vw, 1.35rem);
	font-family: var(--gf-display);
	font-size: clamp(16px, 1.5vw, 24px);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: var(--gf-cunnet-ink);
}

.gf-tattoo-faq summary::-webkit-details-marker {
	display: none;
}

.gf-tattoo-faq summary i {
	position: relative;
	display: grid;
	place-items: center;
	width: 2.2rem;
	height: 2.2rem;
	border: 1.5px solid rgba(9, 9, 11, 0.18);
	border-radius: 6px;
	background: transparent;
	transition: transform 240ms ease, background 240ms ease, border-color 240ms ease;
	flex-shrink: 0;
}

.gf-tattoo-faq summary i::before,
.gf-tattoo-faq summary i::after {
	content: "";
	position: absolute;
	width: 10px;
	height: 1.5px;
	background: var(--gf-cunnet-ink);
	border-radius: 999px;
}

.gf-tattoo-faq summary i::after {
	transform: rotate(90deg);
	transition: opacity 200ms ease;
}

.gf-tattoo-faq[open] summary i {
	background: var(--gf-cunnet-ink);
	border-color: var(--gf-cunnet-ink);
	transform: rotate(45deg);
}

.gf-tattoo-faq[open] summary i::before,
.gf-tattoo-faq[open] summary i::after {
	background: #fff;
}

.gf-tattoo-faq__answer {
	padding: 0 clamp(1rem, 1.4vw, 1.35rem) clamp(1rem, 1.5vw, 1.2rem);
	border-top: 1px solid rgba(9, 9, 11, 0.07);
}

.gf-tattoo-faq__answer p {
	max-width: 52rem;
	margin: 0 0 0.65rem;
	color: var(--gf-cunnet-muted);
	font-size: clamp(13px, 0.95vw, 15px);
	line-height: 1.6;
}

.gf-tattoo-faq__answer p:last-child {
	margin-bottom: 0;
}

/* =============================================================
   Sessions — expanding panels
   ============================================================= */

.gf-sessions {
	background: var(--gf-cunnet-ink);
}

/* --- Header de pricing (fondo oscuro, conectado a los paneles) --- */
.gf-sessions-header {
	background: var(--gf-cunnet-ink);
	color: var(--gf-cunnet-white);
	overflow: visible;
}

.gf-sessions-header .gf-cunnet-about-big,
.gf-sessions-header .gf-cunnet-about-lede {
	color: var(--gf-cunnet-white);
}

.gf-sessions-header .gf-cunnet-eyebrow {
	color: rgba(255, 250, 247, 0.86);
}

/* Línea debajo del lede (respuesta a la pregunta) */
.gf-sessions-a {
	font-size: clamp(12px, 1vw, 15px);
	color: rgba(255, 250, 247, 0.56);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0.75rem 0 0;
}

/* --- Panels wrapper --- */
.gf-sessions-panels {
	display: flex;
	width: 100%;
	height: clamp(460px, 54vw, 740px);
}

/* --- Individual panel --- */
.gf-session-panel {
	position: relative;
	flex: 0.38;
	min-width: 0;
	overflow: hidden;
	background-color: var(--sp-bg, #09090b);
	background-image: var(--sp-preview, none);
	background-size: cover;
	background-position: center;
	color: var(--sp-fg, #fffaf7);
	transition: flex 680ms cubic-bezier(0.22, 1, 0.36, 1);
	cursor: pointer;
}

/* Color overlay — tints the preview photo with the panel color */
.gf-session-panel::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--sp-bg, #09090b);
	opacity: 0.58;
	transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
}

/* When open: overlay becomes nearly opaque (body covers anyway, but clean) */
.gf-session-panel.is-active::before {
	opacity: 0.92;
}

.gf-session-panel.is-active {
	flex: 7;
	cursor: default;
}

/* --- Trigger: covers entire sliver, hidden when active --- */
.gf-session-panel__trigger {
	position: absolute;
	inset: 0;
	z-index: 4;
	width: 100%;
	height: 100%;
	border: none;
	cursor: pointer;
	padding: 1.5rem 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 1.25rem;
	transition: opacity 280ms;
	/* Gradient from panel color at top → transparent at bottom
	   ensures number + label always read against any photo */
	background: linear-gradient(
		to bottom,
		color-mix(in srgb, var(--sp-bg, #09090b) 85%, transparent) 0%,
		color-mix(in srgb, var(--sp-bg, #09090b) 40%, transparent) 30%,
		transparent 65%
	);
}

.gf-session-panel.is-active .gf-session-panel__trigger {
	opacity: 0;
	pointer-events: none;
}

/* --- Number shown in sliver state --- */
.gf-session-panel__num {
	font-family: var(--gf-display);
	font-size: clamp(10px, 0.85vw, 13px);
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--sp-fg, #fffaf7);
	opacity: 0.85;
}

/* --- Vertical title label in sliver state --- */
.gf-session-panel__label {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
	font-family: var(--gf-display);
	font-size: clamp(14px, 1.5vw, 22px);
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sp-fg, #fffaf7);
	opacity: 1;
	white-space: nowrap;
	overflow: hidden;
	max-height: 72%;
	transition: opacity 280ms;
}

/* --- Big word: always same size, overflow:hidden clips it in sliver --- */
.gf-session-panel__word {
	position: absolute;
	bottom: -0.22em;
	left: 1.25rem;
	z-index: 1;
	font-family: var(--gf-display);
	font-size: clamp(72px, 9.5vw, 168px);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.025em;
	line-height: 0.88;
	white-space: nowrap;
	color: currentColor;
	opacity: 0.42;
	pointer-events: none;
	user-select: none;
}

/* --- Panel body: grid [info | carousel] --- */
.gf-session-panel__body {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(320px, 0.3fr) minmax(0, 0.7fr);
	align-items: center;
	gap: clamp(1.5rem, 2.6vw, 3.5rem);
	padding: clamp(1.5rem, 3vw, 4rem) clamp(1rem, 2vw, 2.5rem);
	padding-bottom: clamp(5rem, 7vw, 8rem);
	opacity: 0;
	pointer-events: none;
	transition: opacity 200ms ease;
	overflow: hidden;
}

.gf-session-panel.is-active .gf-session-panel__body {
	opacity: 1;
	pointer-events: auto;
	transition-delay: 320ms;
}

/* --- Info column (left) --- */
.gf-session-panel__info {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: clamp(0.65rem, 0.9vw, 0.95rem);
	align-self: center;
	justify-self: center;
	min-width: 0;
	text-align: left;
	align-items: stretch;
	width: min(100%, 420px);
	padding: clamp(0.9rem, 1.2vw, 1.15rem);
	border: 1px solid color-mix(in srgb, currentColor 14%, transparent);
	border-radius: clamp(16px, 1.5vw, 22px);
	background:
		radial-gradient(circle at 88% 4%, color-mix(in srgb, currentColor 7%, transparent), transparent 28%),
		linear-gradient(145deg, color-mix(in srgb, currentColor 7%, transparent), color-mix(in srgb, currentColor 2%, transparent));
	box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
	backdrop-filter: blur(12px);
	overflow: hidden;
	animation: gf-session-card-float 8s ease-in-out infinite;
}

.gf-session-panel__info::after {
	content: '•••';
	position: absolute;
	top: clamp(0.9rem, 1.2vw, 1.2rem);
	right: clamp(0.9rem, 1.2vw, 1.2rem);
	font-size: 11px;
	letter-spacing: 0.18em;
	line-height: 1;
	opacity: 0.46;
}

.gf-session-panel__num-label {
	font-family: var(--gf-display);
	font-size: clamp(42px, 4.1vw, 66px);
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 1;
	opacity: 1;
	display: block;
	margin: 0;
}

.gf-session-panel__title {
	font-family: var(--gf-display);
	font-size: clamp(10px, 0.82vw, 13px);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.3;
	text-transform: uppercase;
	margin: 0;
	color: currentColor;
	opacity: 0.82;
	max-width: 28ch;
}

.gf-session-panel__desc {
	font-size: clamp(12px, 0.86vw, 15px);
	line-height: 1.48;
	opacity: 0.72;
	max-width: 30ch;
	margin: 0;
}

.gf-session-panel__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 7px;
	width: 100%;
	margin-top: clamp(0.2rem, 0.8vw, 0.75rem);
}

.gf-session-stat {
	position: relative;
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: clamp(0.35rem, 0.62vw, 0.62rem);
	min-height: clamp(72px, 5vw, 88px);
	padding: clamp(0.65rem, 0.78vw, 0.82rem);
	border: 1px solid color-mix(in srgb, currentColor 13%, transparent);
	border-radius: 14px;
	background: color-mix(in srgb, currentColor 5%, transparent);
	box-shadow: inset 0 1px 0 color-mix(in srgb, currentColor 10%, transparent);
	overflow: hidden;
	transition: transform 240ms cubic-bezier(.22, 1, .36, 1), background 240ms ease, border-color 240ms ease;
}

.gf-session-stat:hover {
	transform: translateY(-3px);
	background: color-mix(in srgb, currentColor 8%, transparent);
	border-color: color-mix(in srgb, currentColor 22%, transparent);
}

.gf-session-stat__label {
	font-size: clamp(7px, 0.5vw, 9px);
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	opacity: 0.48;
}

.gf-session-stat__value {
	font-family: var(--gf-display);
	font-size: clamp(18px, 1.38vw, 24px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.025em;
	text-transform: uppercase;
	max-width: 100%;
	overflow-wrap: anywhere;
	text-wrap: balance;
}

.gf-session-price {
	grid-column: 1 / -1;
	min-height: clamp(78px, 5.8vw, 96px);
	background: var(--sp-fg, #fffaf7);
	color: var(--sp-bg, #09090b);
	border-color: var(--sp-fg, #fffaf7);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.gf-session-price .gf-session-stat__label {
	opacity: 0.62;
}

.gf-session-price .gf-session-stat__value {
	font-size: clamp(32px, 3.1vw, 50px);
	letter-spacing: -0.04em;
}

.gf-session-price:hover {
	background: var(--sp-fg, #fffaf7);
	color: var(--sp-bg, #09090b);
	border-color: color-mix(in srgb, var(--sp-fg, #fffaf7) 82%, transparent);
}

@keyframes gf-session-card-float {
	0%, 100% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(0, -5px, 0);
	}
}

/* CTA button using panel fg/bg colors */
.gf-session-cta {
	align-self: flex-start;
	margin-top: 0.35rem;
}

.gf-session-cta .gf-cunnet-btn-dot,
.gf-session-cta .gf-cunnet-btn-pill {
	background: var(--sp-fg, #fffaf7);
	color: var(--sp-bg, #09090b);
	border-color: var(--sp-fg, #fffaf7);
}

.gf-session-cta:hover .gf-cunnet-btn-dot,
.gf-session-cta:hover .gf-cunnet-btn-pill,
.gf-session-cta:focus-visible .gf-cunnet-btn-dot,
.gf-session-cta:focus-visible .gf-cunnet-btn-pill {
	background: transparent;
	color: var(--sp-fg, #fffaf7);
	border-color: var(--sp-fg, #fffaf7);
}

/* --- Carousel (right column) --- */
.gf-session-carousel {
	width: min(100%, 1280px);
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-self: center;
	overflow: hidden;
}

.gf-session-carousel__track {
	display: flex;
	gap: clamp(14px, 1.4vw, 24px);
	overflow: hidden;
	border-radius: 8px;
	transform: translateX(calc(var(--gf-session-index, 0) * -1 * var(--gf-session-step, 0px)));
	transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.gf-session-carousel__slide {
	flex: 0 0 calc((100% - (clamp(14px, 1.4vw, 24px) * 2)) / 3);
	width: calc((100% - (clamp(14px, 1.4vw, 24px) * 2)) / 3);
	min-width: 0;
}

.gf-session-media {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: currentColor;
	cursor: pointer;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.gf-session-carousel__ph {
	width: 100%;
	aspect-ratio: 4 / 5;
	background: color-mix(in srgb, currentColor 6%, transparent);
	border: 1.5px dashed color-mix(in srgb, currentColor 18%, transparent);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gf-session-carousel__ph::after {
	content: '＋ foto';
	font-family: var(--gf-display);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: currentColor;
	opacity: 0.3;
}

.gf-session-carousel__slide img,
.gf-session-carousel__slide video {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: 8px;
	display: block;
	transition: transform 620ms cubic-bezier(.22, 1, .36, 1), filter 420ms ease;
}

.gf-session-media:hover img,
.gf-session-media:hover video {
	transform: scale(1.1);
	filter: brightness(1.08) saturate(1.08);
}

.gf-session-media__play {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(9, 9, 11, 0.64);
	border: 1px solid rgba(255, 250, 247, 0.3);
	color: var(--gf-cunnet-white);
	transform: translate(-50%, -50%);
	font-size: 13px;
}

.gf-session-carousel__ui {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
}

.gf-session-carousel__arr {
	background: transparent;
	border: none;
	color: currentColor;
	cursor: pointer;
	font-size: 0.9rem;
	opacity: 0.5;
	padding: 0.2rem 0.35rem;
	transition: opacity 0.15s;
	line-height: 1;
	flex-shrink: 0;
}

.gf-session-carousel__arr:hover { opacity: 1; }

.gf-session-carousel__dots {
	display: flex;
	gap: 0.4rem;
	align-items: center;
}

.gf-session-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	border: 1.5px solid currentColor;
	background: transparent;
	cursor: pointer;
	padding: 0;
	opacity: 0.35;
	transition: opacity 0.2s, background 0.2s;
}

.gf-session-dot.is-active {
	background: currentColor;
	opacity: 1;
}

@media (max-width: 1180px) {
	.gf-tattoo-info-shell {
		grid-template-columns: 1fr;
		padding: clamp(1.4rem, 4vw, 3rem);
	}

	.gf-tattoo-info-card {
		margin-top: clamp(1.5rem, 3vw, 2.5rem);
	}
}

@media (max-width: 640px) {
	.gf-tattoo-info-shell {
		margin-inline: calc(var(--gf-cunnet-page-pad) * -0.35);
		border-radius: 0;
	}

	.gf-tattoo-info__title {
		font-size: clamp(38px, 13vw, 58px);
	}

	.gf-tattoo-faq summary {
		grid-template-columns: 1fr 2rem;
	}

	.gf-tattoo-faq summary i {
		width: 2rem;
		height: 2rem;
	}
}

/* --- Responsive carousel density --- */
@media (max-width: 1180px) {
	.gf-session-panel__body {
		grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.64fr);
	}

	.gf-session-panel__info {
		width: min(100%, 390px);
	}

	.gf-session-carousel__slide {
		flex-basis: calc((100% - 14px) / 2);
		width: calc((100% - 14px) / 2);
	}

	.gf-session-carousel__track {
		gap: 14px;
	}
}

@media (max-width: 640px) {
	.gf-session-carousel__slide {
		flex-basis: 100%;
		width: 100%;
	}

	.gf-session-carousel__track {
		gap: 0;
	}

	.gf-session-panel__stats {
		grid-template-columns: 1fr;
		max-width: none;
	}

	.gf-session-stat {
		flex-direction: column;
		justify-content: space-between;
		text-align: left;
		min-height: 74px;
	}

	.gf-session-stat__value {
		font-size: clamp(22px, 8vw, 30px);
	}

	.gf-session-price .gf-session-stat__value {
		font-size: clamp(34px, 12vw, 48px);
	}
}

/* --- Mobile: vertical accordion --- */
@media (max-width: 900px) {
	.gf-sessions-panels {
		flex-direction: column;
		height: auto;
	}

	.gf-session-panel {
		flex: none;
		transition: none;
		scroll-margin-top: calc(var(--gf-mobile-header-offset, 96px) + 8px);
	}

	.gf-session-panel.is-active {
		flex: none;
	}

	.gf-session-panel__trigger {
		position: relative;
		inset: auto;
		width: 100%;
		min-height: 68px;
		height: auto;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		padding: 1rem 1.25rem;
		gap: 1rem;
		border-bottom: 1px solid color-mix(in srgb, currentColor 12%, transparent);
	}

	.gf-session-panel.is-active .gf-session-panel__trigger {
		opacity: 1;
		pointer-events: auto;
	}

	.gf-session-panel__num {
		font-size: 13px;
		min-width: 2.4rem;
		text-align: left;
	}

	.gf-session-panel__label {
		writing-mode: horizontal-tb;
		text-orientation: mixed;
		transform: none;
		max-height: none;
		font-size: clamp(18px, 7vw, 28px);
		line-height: 0.92;
		letter-spacing: 0.08em;
		white-space: normal;
		overflow: visible;
	}

	.gf-session-panel__body {
		position: relative;
		inset: auto;
		display: flex;
		flex-direction: column;
		opacity: 0;
		max-height: 0;
		overflow: hidden;
		padding: 0 1.25rem;
		pointer-events: none;
		transition: max-height 480ms cubic-bezier(0.22, 1, 0.36, 1), opacity 280ms;
		gap: 1.5rem;
		text-align: left;
	}

	.gf-session-panel.is-active .gf-session-panel__body {
		opacity: 1;
		max-height: 2600px;
		pointer-events: auto;
		padding: 1.5rem 1.25rem 5rem;
		transition-delay: 0ms;
	}

	.gf-session-panel__info {
		width: 100%;
		max-width: 420px;
		margin-inline: auto;
	}

	.gf-session-panel__word {
		display: none;
	}

	.gf-session-carousel {
		width: 100%;
		max-width: none;
	}
}

/* =============================================================
   Single Product — gf-sp-* components
   ============================================================= */

body.gf-sp-page {
	overflow-x: hidden;
	background: var(--gf-cunnet-paper);
}

body.gf-sp-page .site,
body.gf-sp-page .site-main,
body.gf-sp-page .site-content,
body.gf-sp-page .content-area,
body.gf-sp-page .page-content,
body.gf-sp-page .entry-content,
body.gf-sp-page .woocommerce,
body.gf-sp-page .product {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.gf-sp-root {
	position: relative;
	display: block;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	overflow-x: clip;
	overflow-y: visible;
	background: var(--gf-cunnet-paper);
}

/* ── Hero ──────────────────────────────────────────────────── */
.gf-sp-hero {
	position: relative;
	width: 100%;
	height: 52svh;
	min-height: 360px;
	overflow: hidden;
	background: var(--gf-cunnet-ink);
}

.gf-sp-hero__media {
	position: absolute;
	inset: 0;
}

.gf-sp-hero__img,
.gf-sp-hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	filter: brightness(0.55) saturate(0.9);
}

/* Fallback mode — featured image centred, no crop, lighter overlay */
.gf-sp-hero__media--contain {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gf-cunnet-ink);
}

.gf-sp-hero__img--contain {
	object-fit: contain;
	object-position: center center;
	filter: brightness(0.75) saturate(0.85);
	max-width: 70%;
	max-height: 90%;
	height: auto;
	width: auto;
}

.gf-sp-hero__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: clamp(2rem, 5vw, 5rem) clamp(1.5rem, 5vw, 6rem);
	background: linear-gradient(to top, rgba(9,9,11,0.72) 0%, transparent 55%);
	color: var(--gf-cunnet-white);
}

.gf-sp-breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 700;
	color: rgba(255,250,247,0.62);
	margin-bottom: 1rem;
}

.gf-sp-breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.gf-sp-hero__title {
	margin: 0 0 0.75rem;
	font-family: var(--gf-display);
	font-size: clamp(52px, 7vw, 120px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 0.88;
	text-transform: uppercase;
	color: var(--gf-cunnet-white);
}

.gf-sp-hero__tag {
	margin: 0;
	font-size: clamp(13px, 1vw, 16px);
	color: rgba(255,250,247,0.72);
	letter-spacing: 0.04em;
}

.gf-sp-hero__scroll {
	position: absolute;
	bottom: 1.5rem;
	right: 2rem;
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255,250,247,0.28);
	border-radius: 50%;
	color: rgba(255,250,247,0.6);
	font-size: 16px;
	text-decoration: none;
	transition: border-color 200ms, color 200ms;
	animation: gf-about-hint-drop 2s ease-in-out infinite;
}

/* ── Body: gallery (sticky) + info (natural scroll) ───────── */
.gf-sp-body {
	display: grid;
	grid-template-columns: minmax(0, 0.55fr) minmax(340px, 0.45fr);
	width: 100%;
	align-items: start;
	background: var(--gf-cunnet-paper);
}

/* ── Gallery — sticky, full viewport height ────────────────── */
.gf-sp-gallery {
	position: sticky;
	top: 0;
	height: 100dvh;
	overflow: hidden;
	background: var(--gf-cunnet-ink);
}

/* Each item fills the sticky frame — JS controls transform+opacity for slide */
.gf-sp-gallery__item {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: translateX(100%);
	/* JS sets transition: '' (CSS value) or 'none' to control animation */
	transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
	            opacity 500ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform, opacity;
}

.gf-sp-gallery__item.is-active {
	opacity: 1;
	transform: translateX(0);
}

.gf-sp-gallery__link {
	display: block;
	width: 100%;
	height: 100%;
	background: transparent;
	border: 0 !important;
	outline: 0 !important;
	padding: 0;
	appearance: none;
	-webkit-appearance: none;
	cursor: zoom-in;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.28);
	transition: box-shadow 220ms ease, filter 220ms ease;
}

.gf-sp-gallery__link:hover,
.gf-sp-gallery__link:focus,
.gf-sp-gallery__link:focus-visible {
	border-color: transparent !important;
	outline: 0 !important;
	box-shadow:
		inset 0 0 0 1px rgba(0, 0, 0, 0.72),
		inset 0 0 90px rgba(0, 0, 0, 0.22);
}

.gf-sp-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	pointer-events: none;
}

/* Placeholder when no images */
.gf-sp-gallery__ph {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,250,247,0.25);
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border: 1.5px dashed rgba(255,250,247,0.1);
	margin: 1.5rem;
	border-radius: 8px;
}

/* Gallery nav overlay (dots + arrows) */
.gf-sp-gallery-nav {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 1rem;
	z-index: 10;
}

.gf-sp-gallery-dots {
	display: flex;
	gap: 6px;
	align-items: center;
}

.gf-sp-gallery-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(255,250,247,0.35);
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background 200ms, transform 200ms;
}

.gf-sp-gallery-dot.is-active {
	background: var(--gf-cunnet-white);
	transform: scale(1.6);
}

.gf-sp-gallery-arr {
	background: rgba(9,9,11,0.4);
	border: 1px solid rgba(255,250,247,0.18);
	color: var(--gf-cunnet-white);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	cursor: pointer;
	font-size: 14px;
	transition: background 200ms;
	backdrop-filter: blur(8px);
}

.gf-sp-gallery-arr:hover { background: rgba(9,9,11,0.7); }

/* Counter top-right */
.gf-sp-gallery-count {
	position: absolute;
	top: 1.25rem;
	right: 1.5rem;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: rgba(255,250,247,0.55);
	z-index: 10;
}

/* ── Info panel — natural scroll (no sticky) ───────────────── */
.gf-sp-info {
	position: relative;
}

.gf-sp-info__inner {
	padding: clamp(2.5rem, 4vw, 5rem) clamp(2rem, 3.5vw, 4rem);
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 2vw, 2.25rem);
}

.gf-sp-info__head {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.gf-sp-info__title {
	margin: 0;
	font-family: var(--gf-display);
	font-size: clamp(28px, 2.8vw, 48px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 0.92;
	text-transform: uppercase;
	color: var(--gf-cunnet-ink);
}

/* Short description — lead text below title */
.gf-sp-info__desc {
	font-size: clamp(14px, 1.1vw, 16px);
	line-height: 1.6;
	color: var(--gf-cunnet-muted);
	max-width: 44ch;
}

/* Stats — liquid-glass cards */
.gf-sp-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

.gf-sp-stat {
	padding: clamp(0.85rem, 1.1vw, 1.1rem);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	position: relative;
	isolation: isolate;
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(9,9,11,0.08);
	overflow: hidden;
}

.gf-sp-stat::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	backdrop-filter: blur(8px);
	background: radial-gradient(ellipse at 20% 10%, rgba(255,255,255,0.5) 0%, transparent 60%);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.gf-sp-stat__label {
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gf-cunnet-muted);
}

.gf-sp-stat__value {
	font-family: var(--gf-display);
	font-size: clamp(16px, 1.5vw, 22px);
	font-weight: 900;
	letter-spacing: -0.025em;
	color: var(--gf-cunnet-ink);
}

/* Price block — deposit prominent, full session muted */
.gf-sp-price {
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(9,9,11,0.1);
}

.gf-sp-price__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: clamp(0.9rem, 1.3vw, 1.2rem) clamp(1.1rem, 1.5vw, 1.4rem);
	gap: 1rem;
}

.gf-sp-price__row + .gf-sp-price__row {
	border-top: 1px solid rgba(9,9,11,0.07);
	background: var(--gf-cunnet-paper);
}

.gf-sp-price__row--deposit {
	background: var(--gf-cunnet-ink);
	color: var(--gf-cunnet-white);
}

.gf-sp-price__label {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.65;
}

.gf-sp-price__amount {
	font-family: var(--gf-display);
	font-size: clamp(20px, 1.8vw, 30px);
	font-weight: 900;
	letter-spacing: -0.03em;
	white-space: nowrap;
}

.gf-sp-price__amount--muted {
	opacity: 0.45;
	font-size: clamp(15px, 1.2vw, 20px);
}

.gf-sp-price__row--deposit .gf-sp-price__label,
.gf-sp-price__row--deposit .gf-sp-price__amount {
	color: var(--gf-cunnet-white);
}

/* ── WooCommerce form overrides ─────────────────────────────
   WC 10.x uses high-specificity :where() selectors from woocommerce.css.
   We beat them with body.single-product context (specificity 0,4,2 vs 0,3,1)
   AND !important as a safety net.
   ─────────────────────────────────────────────────────────── */
.gf-sp-reserve-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: min(100%, 420px);
	min-height: 60px;
	padding: 0.95rem 1.2rem 0.95rem 1.55rem;
	border: 2px solid var(--gf-cunnet-ink);
	border-radius: 999px;
	background: var(--gf-cunnet-ink);
	color: var(--gf-cunnet-white);
	font-family: var(--gf-display);
	font-size: clamp(13px, 1vw, 16px);
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.gf-sp-reserve-toggle span:last-child {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--gf-cunnet-white);
	color: var(--gf-cunnet-ink);
	font-size: 18px;
	line-height: 1;
}

.gf-sp-reserve-toggle:hover,
.gf-sp-reserve-toggle:focus-visible,
.gf-sp-reserve-toggle[aria-expanded="true"] {
	transform: translateY(-2px);
	box-shadow: 0 18px 44px rgba(9, 9, 11, 0.18);
}

.gf-sp-form {
	max-height: 0;
	opacity: 0;
	overflow: clip;
	pointer-events: none;
	transform: translateY(-10px);
	transition: max-height 520ms cubic-bezier(0.22, 1, 0.36, 1),
	            opacity 260ms ease,
	            transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gf-sp-form.is-open {
	max-height: 2600px;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.gf-sp-form .woocommerce-variation-add-to-cart,
.gf-sp-form form.cart {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: stretch;
	margin: 0;
}

.gf-booking-fields,
.gf-payment-options {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	padding: clamp(1rem, 1.6vw, 1.35rem);
	border: 1px solid rgba(9, 9, 11, 0.09);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.48);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.gf-booking-fields p,
.gf-payment-options p {
	margin: 0;
}

.gf-payment-options__label {
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--gf-cunnet-muted);
}

.gf-payment-option {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.85rem;
	padding: 0.95rem 1rem;
	border: 1px solid rgba(9, 9, 11, 0.12);
	border-radius: 12px;
	background: rgba(255, 250, 247, 0.74);
	cursor: pointer;
	transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.gf-payment-option:has(input:checked) {
	border-color: var(--gf-cunnet-ink);
	background: var(--gf-cunnet-white);
	box-shadow: 0 14px 34px rgba(9, 9, 11, 0.08);
}

.gf-payment-option__content {
	display: flex;
	flex-direction: column;
	gap: 0.12rem;
	min-width: 0;
}

.gf-payment-option__title {
	font-weight: 900;
	color: var(--gf-cunnet-ink);
	line-height: 1.1;
}

.gf-payment-option__note {
	font-size: 12px;
	color: var(--gf-cunnet-muted);
	line-height: 1.25;
}

.gf-payment-option__price {
	font-family: var(--gf-display);
	font-weight: 900;
	color: var(--gf-cunnet-ink);
	white-space: nowrap;
}

.gf-sp-page .gf-sp-form .quantity,
.gf-sp-page .gf-sp-form p.quantity {
	display: block !important;
	margin: 0 !important;
	width: 100% !important;
}

.gf-sp-page .gf-sp-form .quantity input.qty {
	width: 100% !important;
	height: 100% !important;
	min-height: 62px !important;
	border-radius: 999px !important;
	border: 2px solid rgba(9, 9, 11, 0.16) !important;
	background: rgba(255, 250, 247, 0.76) !important;
	color: var(--gf-cunnet-ink) !important;
	font-family: var(--gf-display) !important;
	font-size: 20px !important;
	font-weight: 900 !important;
	text-align: center !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

/* ADD TO CART — override WooCommerce purple */
body.single-product .gf-sp-form button.single_add_to_cart_button.button.alt,
body.woocommerce .gf-sp-page .gf-sp-form button.button.alt,
body.single-product .gf-sp-form .single_add_to_cart_button {
	width: 100% !important;
	margin: 0 !important;
	padding: 1.1rem 1.5rem !important;
	background: var(--gf-cunnet-ink) !important;
	color: var(--gf-cunnet-white) !important;
	border: 2px solid var(--gf-cunnet-ink) !important;
	border-radius: 8px !important;
	font-family: var(--gf-display) !important;
	font-size: clamp(12px, 0.9vw, 15px) !important;
	font-weight: 800 !important;
	letter-spacing: 0.1em !important;
	text-transform: uppercase !important;
	cursor: pointer !important;
	transition: background 200ms, color 200ms, border-color 200ms !important;
	box-shadow: none !important;
	text-shadow: none !important;
	display: block !important;
}

body.single-product .gf-sp-form button.single_add_to_cart_button.button.alt:hover,
body.woocommerce .gf-sp-page .gf-sp-form button.button.alt:hover,
body.single-product .gf-sp-form .single_add_to_cart_button:hover {
	background: transparent !important;
	color: var(--gf-cunnet-ink) !important;
	border-color: var(--gf-cunnet-ink) !important;
}

.gf-sp-form form.cart.is-adding-to-cart {
	opacity: 0.72;
	pointer-events: none;
}

/* Booking fields — WC textarea/input override */
.gf-sp-page .gf-booking-fields label,
.gf-sp-page .gf-booking-fields__title {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gf-cunnet-muted);
}

.gf-sp-page .gf-booking-fields input[type="text"],
.gf-sp-page .gf-booking-fields textarea,
.gf-sp-page .gf-booking-fields select,
.gf-sp-page form.cart input[type="text"],
.gf-sp-page form.cart textarea,
.gf-sp-page form.cart select {
	background: rgba(255,255,255,0.6) !important;
	border: 1px solid rgba(9,9,11,0.12) !important;
	border-radius: 8px !important;
	font-size: 14px !important;
	color: var(--gf-cunnet-ink) !important;
	padding: 0.75rem 1rem !important;
	transition: border-color 180ms, background 180ms !important;
}

.gf-sp-page .gf-booking-fields input[type="text"]:focus,
.gf-sp-page .gf-booking-fields textarea:focus,
.gf-sp-page .gf-booking-fields select:focus,
.gf-sp-page form.cart input:focus,
.gf-sp-page form.cart textarea:focus,
.gf-sp-page form.cart select:focus {
	outline: none !important;
	border-color: var(--gf-cunnet-ink) !important;
	background: #fff !important;
}

/* Trust signals — subtle glass */
.gf-sp-trust {
	margin: 0;
	padding: 0.9rem 1rem;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	border-radius: 8px;
	background: rgba(9,9,11,0.03);
	border: 1px solid rgba(9,9,11,0.06);
}

.gf-sp-trust li {
	font-size: clamp(11px, 0.8vw, 13px);
	color: var(--gf-cunnet-muted);
	padding-left: 1.2rem;
	position: relative;
}

.gf-sp-trust li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--gf-cunnet-ink);
	font-weight: 800;
	font-size: 10px;
}

/* ── Long description ──────────────────────────────────────── */
.gf-sp-desc {
	background: var(--gf-cunnet-paper);
}

.gf-sp-desc__wrap {
	display: grid;
	grid-template-columns: minmax(200px, 0.3fr) minmax(0, 0.7fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: start;
}

.gf-sp-desc__heading {
	font-family: var(--gf-display);
	font-size: clamp(14px, 1vw, 18px);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--gf-cunnet-muted);
	margin: 0;
	position: sticky;
	top: 100px;
}

.gf-sp-desc__body {
	font-size: clamp(15px, 1.2vw, 18px);
	line-height: 1.6;
	color: var(--gf-cunnet-ink);
}

.gf-sp-desc__body p { margin: 0 0 1em; }
.gf-sp-desc__body p:last-child { margin-bottom: 0; }

/* ── Related sessions ──────────────────────────────────────── */
.gf-sp-related {
	background: var(--gf-cunnet-ink);
	color: var(--gf-cunnet-white);
}

.gf-sp-related__head {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: clamp(2rem, 4vw, 4rem);
}

.gf-sp-related .gf-cunnet-eyebrow {
	color: rgba(255,250,247,0.62);
}

.gf-sp-related__title {
	margin: 0;
	font-family: var(--gf-display);
	font-size: clamp(42px, 5vw, 86px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 0.88;
	text-transform: uppercase;
	color: var(--gf-cunnet-white);
}

.gf-sp-related__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: clamp(1rem, 2vw, 2rem);
}

.gf-sp-related__card {
	display: grid;
	grid-template-rows: auto 1fr auto;
	border: 1px solid rgba(255,250,247,0.1);
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	color: var(--gf-cunnet-white);
	transition: border-color 220ms, transform 220ms;
}

.gf-sp-related__card:hover {
	border-color: rgba(255,250,247,0.32);
	transform: translateY(-4px);
}

.gf-sp-related__media {
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.gf-sp-related__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms cubic-bezier(.22,1,.36,1);
}

.gf-sp-related__card:hover .gf-sp-related__media img {
	transform: scale(1.06);
}

.gf-sp-related__ph {
	background: color-mix(in srgb, var(--gf-cunnet-ink) 80%, white);
	width: 100%;
	height: 100%;
}

.gf-sp-related__info {
	padding: 1rem 1.25rem 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.gf-sp-related__name {
	margin: 0;
	font-family: var(--gf-display);
	font-size: clamp(18px, 1.5vw, 24px);
	font-weight: 800;
	letter-spacing: -0.02em;
}

.gf-sp-related__meta {
	margin: 0;
	font-size: 12px;
	color: rgba(255,250,247,0.55);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.gf-sp-related__price {
	display: block;
	padding: 0.75rem 1.25rem;
	font-family: var(--gf-display);
	font-size: clamp(16px, 1.3vw, 20px);
	font-weight: 900;
	color: rgba(255,250,247,0.72);
	border-top: 1px solid rgba(255,250,247,0.08);
	margin-top: auto;
}

.gf-sp-related__arrow {
	display: none;
}

/* ── Thumbnail strip ───────────────────────────────────────── */
.gf-sp-thumbs {
	position: absolute;
	left: clamp(12px, 2vw, 24px);
	right: clamp(12px, 2vw, 24px);
	bottom: calc(2rem + 48px);
	z-index: 11;
	display: flex;
	gap: 6px;
	padding: 6px;
	background: rgba(9, 9, 11, 0.48);
	border: 1px solid rgba(255, 250, 247, 0.12);
	border-radius: 10px;
	overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	backdrop-filter: blur(12px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
}

.gf-sp-thumbs::-webkit-scrollbar { display: none; }

.gf-sp-thumb {
	flex: 0 0 72px;
	height: 88px;
	border: 2px solid transparent;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	opacity: 0.48;
	transition: opacity 200ms, border-color 200ms;
	padding: 0;
	background: transparent;
}

.gf-sp-thumb.is-active,
.gf-sp-thumb:hover {
	opacity: 1;
	border-color: var(--gf-cunnet-white);
}

.gf-sp-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ── Metadata row ──────────────────────────────────────────── */
.gf-sp-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
	font-size: 12px;
	color: var(--gf-cunnet-muted);
	padding-top: 0.25rem;
	border-top: 1px solid rgba(9,9,11,0.07);
}

.gf-sp-meta strong {
	color: var(--gf-cunnet-ink);
}

.gf-sp-meta a {
	color: var(--gf-cunnet-ink);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ── Tabs section ──────────────────────────────────────────── */
.gf-sp-tabs {
	background: #fff;
	border-top: 1px solid rgba(9,9,11,0.07);
}

.gf-sp-tabs .gf-cunnet-wrap {
	padding-block: clamp(2.5rem, 5vw, 5rem);
}

.gf-sp-tabs__nav {
	display: flex;
	gap: 0;
	border-bottom: 1.5px solid rgba(9,9,11,0.1);
	margin-bottom: clamp(1.5rem, 3vw, 3rem);
	overflow-x: auto;
	scrollbar-width: none;
}

.gf-sp-tabs__nav::-webkit-scrollbar { display: none; }

.gf-sp-tab-btn {
	background: transparent;
	border: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -1.5px;
	padding: 0.85rem 1.5rem;
	font-family: var(--gf-display);
	font-size: clamp(12px, 0.9vw, 14px);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gf-cunnet-muted);
	cursor: pointer;
	transition: color 180ms, border-color 180ms;
	white-space: nowrap;
}

.gf-sp-tab-btn:hover { color: var(--gf-cunnet-ink); }

.gf-sp-tab-btn.is-active {
	color: var(--gf-cunnet-ink);
	border-bottom-color: var(--gf-cunnet-ink);
}

/* Tab content panels */
.gf-sp-tab-body {
	display: none;
	animation: gf-tab-in 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gf-sp-tab-body.is-active { display: block; }

@keyframes gf-tab-in {
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: none; }
}

.gf-sp-tab-body p,
.gf-sp-tab-body li {
	font-size: clamp(14px, 1.1vw, 17px);
	line-height: 1.65;
	color: var(--gf-cunnet-ink);
}

.gf-sp-tab-body p + p { margin-top: 1em; }

/* Booking steps in tab */
.gf-sp-steps {
	margin: 1.25rem 0;
	padding-left: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	counter-reset: step;
}

.gf-sp-steps li {
	padding-left: 2rem;
	position: relative;
}

.gf-sp-steps li strong {
	color: var(--gf-cunnet-ink);
}

.gf-sp-booking-note {
	margin-top: 1.5rem !important;
	padding: 1rem 1.25rem;
	background: var(--gf-cunnet-paper);
	border-radius: 8px;
	border-left: 3px solid var(--gf-cunnet-ink);
	font-size: 13px !important;
	color: var(--gf-cunnet-muted) !important;
}

/* ── Responsive ────────────────────────────────────────────── */

/* Tablet — gallery becomes horizontal strip, info below */
@media (max-width: 900px) {
	.gf-sp-body {
		grid-template-columns: 1fr;
	}

	/* Gallery: horizontal scroll strip */
	.gf-sp-gallery {
		position: relative; /* remove sticky */
		height: 58dvh;
		min-height: 340px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.gf-sp-gallery__item {
		position: relative; /* remove absolute */
		flex: 0 0 100%;
		width: 100%;
		height: 100%;
		display: inline-block;
		opacity: 1 !important;
		scroll-snap-align: start;
	}

	.gf-sp-gallery__item img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	/* Override: gallery as flex row on mobile */
	.gf-sp-gallery {
		display: flex;
		flex-direction: row;
	}

	.gf-sp-gallery-nav,
	.gf-sp-gallery-count,
	.gf-sp-thumbs { display: none; }

	.gf-sp-info__inner {
		padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 5vw, 2.5rem);
	}

	.gf-sp-desc__wrap {
		grid-template-columns: 1fr;
	}

	.gf-sp-desc__heading {
		position: static;
	}
}

/* Mobile */
@media (max-width: 640px) {
	.gf-sp-hero {
		height: 50dvh;
	}

	.gf-sp-hero__title {
		font-size: clamp(36px, 11vw, 62px);
	}

	.gf-sp-gallery {
		height: 52dvh;
	}

	.gf-sp-info__inner {
		padding: 1.75rem 1.25rem;
		gap: 1.25rem;
	}

	.gf-sp-stats {
		grid-template-columns: 1fr 1fr;
	}

	.gf-sp-form .woocommerce-variation-add-to-cart,
	.gf-sp-form form.cart {
		grid-template-columns: 1fr;
	}

	.gf-payment-option {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.gf-payment-option__price {
		grid-column: 2;
	}

	.gf-sp-info__title {
		font-size: clamp(26px, 8vw, 40px);
	}

	.gf-sp-related__grid {
		grid-template-columns: 1fr;
	}

	.gf-sp-desc__wrap {
		gap: 1.5rem;
	}
}

/* =============================================================
   Cart Drawer — slide-in from right
   ============================================================= */

.gf-cart-backdrop {
	position: fixed;
	inset: 0;
	z-index: 900;
	background: rgba(9, 9, 11, 0.58);
	backdrop-filter: blur(7px) saturate(0.75);
	opacity: 0;
	pointer-events: none;
	transition: opacity 380ms ease;
}

.gf-cart-drawer {
	position: fixed;
	inset: 0 0 0 auto;
	z-index: 901;
	width: min(620px, 100vw);
	pointer-events: none;
	visibility: hidden;
	transform: translateX(100%);
	transition: visibility 0s linear 480ms, transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gf-cart-drawer__panel {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,243,240,0.99)),
		var(--gf-cunnet-white);
	display: flex;
	flex-direction: column;
	transform: none;
	box-shadow: -34px 0 110px rgba(0, 0, 0, 0.26);
	overflow: hidden;
	color: var(--gf-cunnet-ink);
}

/* Open state */
.gf-cart-drawer.is-open {
	pointer-events: auto;
	visibility: visible;
	transform: translateX(0);
	transition-delay: 0s;
}

.gf-cart-drawer.is-open .gf-cart-drawer__panel {
	transform: none;
}

.gf-cart-backdrop.is-open {
	opacity: 1;
	pointer-events: auto;
}

/* Header */
.gf-cart-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.35rem clamp(1.1rem, 3vw, 2rem);
	border-bottom: 1px solid rgba(9, 9, 11, 0.08);
	flex-shrink: 0;
}

.gf-cart-drawer__title {
	font-family: var(--gf-display);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--gf-cunnet-ink);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

/* Items list */
.gf-cart-items {
	flex: 1;
	overflow-y: auto;
	padding: 1rem clamp(1.1rem, 3vw, 2rem);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	scrollbar-width: thin;
}

.gf-cart-item {
	display: grid;
	grid-template-columns: 84px 1fr auto;
	gap: 0.9rem;
	align-items: start;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(9, 9, 11, 0.06);
	transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
}

.gf-cart-item.is-removing,
.gf-cart-item.is-updating {
	opacity: 0.42;
	transform: translateX(10px);
	filter: grayscale(1);
	pointer-events: none;
}

.gf-cart-item__img {
	border-radius: 6px;
	overflow: hidden;
	display: block;
	aspect-ratio: 3 / 4;
}

.gf-cart-item__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gf-cart-item__info {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.gf-cart-item__name {
	font-size: clamp(15px, 1.5vw, 18px);
	font-weight: 850;
	color: var(--gf-cunnet-ink);
	text-decoration: none;
	line-height: 1.35;
}

.gf-cart-item__meta {
	font-size: 14px;
	color: var(--gf-cunnet-muted);
}

.gf-cart-qty {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: 0.35rem;
	color: var(--gf-cunnet-ink);
}

.gf-cart-qty__btn {
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(9, 9, 11, 0.16);
	border-radius: 999px;
	background: rgba(9, 9, 11, 0.04);
	color: var(--gf-cunnet-ink);
	font: 800 15px/1 var(--gf-display);
	padding: 0;
	cursor: pointer;
	transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.gf-cart-qty__btn:hover {
	background: var(--gf-cunnet-ink);
	color: var(--gf-cunnet-white);
	transform: translateY(-1px);
}

.gf-cart-qty__value {
	min-width: 1.25rem;
	text-align: center;
	font: 850 14px/1 var(--gf-display);
}

.gf-cart-qty__total {
	margin-left: 0.35rem;
	font: 850 14px/1 var(--gf-display);
	color: var(--gf-cunnet-muted);
}

.gf-cart-item__remove {
	font-size: 18px;
	color: var(--gf-cunnet-muted);
	text-decoration: none;
	line-height: 1;
	padding: 2px 4px;
	border-radius: 4px;
	transition: color 150ms, background 150ms;
}

.gf-cart-item__remove[aria-disabled="true"] {
	cursor: wait;
}

.gf-cart-item__remove:hover {
	color: var(--gf-cunnet-ink);
	background: rgba(9, 9, 11, 0.06);
}

/* Empty state */
.gf-cart-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	height: 100%;
	text-align: center;
	color: var(--gf-cunnet-muted);
	font-size: 15px;
}

.gf-cart-empty a {
	color: var(--gf-cunnet-ink);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Footer */
.gf-cart-drawer__foot {
	padding: 1.2rem clamp(1.1rem, 3vw, 2rem) calc(1.5rem + env(safe-area-inset-bottom));
	border-top: 1px solid rgba(9, 9, 11, 0.08);
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	background: rgba(255, 250, 247, 0.97);
	box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.08);
}

.gf-cart-drawer__subtotal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	font-size: clamp(16px, 2vw, 18px);
	color: var(--gf-cunnet-muted);
}

.gf-cart-drawer__subtotal strong {
	font-family: var(--gf-display);
	font-size: clamp(24px, 4vw, 34px);
	font-weight: 900;
	letter-spacing: -0.03em;
	color: var(--gf-cunnet-ink);
}

.gf-cart-drawer__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.6rem;
}

.gf-cart-drawer__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 58px;
	padding: 0.95rem 1rem;
	border-radius: 12px;
	font-family: var(--gf-display);
	font-size: clamp(13px, 1.5vw, 15px);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	border: 2px solid var(--gf-cunnet-ink);
	color: var(--gf-cunnet-ink);
	background: transparent;
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0);
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.gf-cart-drawer__btn:visited {
	color: var(--gf-cunnet-ink);
}

.gf-cart-drawer__btn:hover,
.gf-cart-drawer__btn:focus-visible {
	background: var(--gf-cunnet-ink);
	color: var(--gf-cunnet-white);
	transform: translateY(-1px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.gf-cart-drawer__btn--primary,
.gf-cart-drawer__btn--primary:visited {
	background: var(--gf-cunnet-ink);
	color: var(--gf-cunnet-white) !important;
	border-color: var(--gf-cunnet-ink);
}

.gf-cart-drawer__btn--primary:hover,
.gf-cart-drawer__btn--primary:focus-visible {
	background: #1a1a1d;
	color: var(--gf-cunnet-white) !important;
	border-color: #1a1a1d;
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

/* ── Cart icon + count badge in header ── */
.gf-cart-btn {
	position: relative;
	display: grid !important;
	flex: 0 0 auto;
}

.gf-header-cart-count {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 16px;
	height: 16px;
	background: var(--gf-cunnet-accent, #fb4b37);
	color: #fff;
	border-radius: 50%;
	font-size: 9px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 3px;
	line-height: 1;
	pointer-events: none;
}

@media (max-width: 700px) {
	.gf-cart-drawer {
		width: 100vw;
		inset: 0;
	}

	.gf-cart-drawer__panel {
		border-radius: 0;
	}

	.gf-cart-drawer__head {
		min-height: 72px;
		padding-top: max(1rem, env(safe-area-inset-top));
	}

	.gf-cart-items {
		padding-bottom: 1rem;
		gap: 0.85rem;
	}

	.gf-cart-item {
		grid-template-columns: 68px 1fr auto;
		gap: 0.75rem;
	}

	.gf-cart-drawer__actions {
		grid-template-columns: 1fr;
	}

	.gf-cart-drawer__btn {
		min-height: 56px;
	}
}

@media (max-width: 420px) {
	.gf-cart-item {
		grid-template-columns: 58px 1fr auto;
	}

	.gf-cart-item__meta {
		font-size: 13px;
	}

	.gf-cart-drawer__subtotal {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.3rem;
	}
}

/* Count badge inside drawer header */
.gf-cart-count-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	background: var(--gf-cunnet-ink);
	color: var(--gf-cunnet-white);
	border-radius: 10px;
	font-size: 11px;
	font-weight: 700;
	padding: 0 5px;
}
