@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&display=swap");

/* ============================================================
   TOKENS
   ============================================================ */
:root {
	--ink: #000000;
	--white: #F9F9F9;
	--pure: #FFFFFF;
	--gray: #646464;
	--gray-light: #A7A7A7;
	--gray-dark: #333333;
	--curtain-dark: #646464;
	--curtain-light: #E4E4E4;

	/* brand gradient — the only accent in the system */
	--g1: #000000;
	--g2: #C10801;
	--g3: #F16001;
	--g4: #D9C3AB;
	--grad: linear-gradient(135deg, var(--g1) 0%, var(--g2) 34%, var(--g3) 68%, var(--g4) 100%);
	--grad-hot: linear-gradient(135deg, var(--g2) 0%, var(--g3) 55%, var(--g4) 100%);
	/* text and hairlines drop the cream stop, which vanishes on light backgrounds */
	--grad-text: linear-gradient(95deg, var(--g2) 0%, var(--g3) 100%);
	/* surfaces that carry white text or icons: no cream stop, so contrast holds */
	--grad-dark: linear-gradient(120deg, var(--g1) 0%, var(--g2) 52%, var(--g3) 100%);
	/* solid fallback wherever a gradient cannot apply */
	--accent: #F16001;

	--sans: "Archivo", "Helvetica Neue", Arial, sans-serif;

	--bar-h: 130px;
	--pad-x: 80px;
	--ease: cubic-bezier(0.4, 0, 0.2, 1);
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*,
*::after,
*::before {
	box-sizing: border-box;
}

html,
body {
	padding: 0;
	margin: 0;
}

body {
	overflow: hidden;
	font-family: var(--sans);
	font-size: 16px;
	font-weight: 400;
	color: var(--ink);
	background-color: var(--white);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
	margin: 0;
	font-family: var(--sans);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.05;
}

p,
figure,
figcaption {
	margin: 0;
}

ul {
	padding: 0;
	margin: 0;
}

ul li {
	list-style-type: none;
}

a {
	text-decoration: none;
	color: inherit;
}

img,
svg {
	display: block;
	max-width: 100%;
}

button {
	font-family: inherit;
}

:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
}

::-webkit-scrollbar {
	width: 3px;
}

::-webkit-scrollbar-track {
	background-color: var(--curtain-light);
}

::-webkit-scrollbar-thumb {
	background-color: var(--accent);
}

::selection {
	background-color: var(--accent);
	color: var(--pure);
}

.gt-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* gradient-filled text, with a solid fallback underneath */
.gt-grad-text {
	color: var(--accent);
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ============================================================
   SHELL
   ============================================================ */
.gt-wrapper {
	width: 100%;
	height: calc(var(--vh, 1vh) * 100);
}

body.gt-scroll {
	overflow: auto;
}

body.gt-scroll .gt-wrapper {
	height: auto;
	min-height: calc(var(--vh, 1vh) * 100);
}

.gt-page-frame {
	position: relative;
	width: 100%;
	height: auto;
	min-height: calc(var(--vh, 1vh) * 100);
	display: flex;
	overflow: hidden;
	justify-content: center;
	align-items: center;
}

.gt-content {
	position: relative;
	width: 100%;
}

/* ---------- page enter: replaces the old full-screen loader ---------- */
.gt-page-frame > .gt-content {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

html.gt-ready .gt-page-frame > .gt-content {
	opacity: 1;
	transform: none;
}

/* ---------- grid ---------- */
.gt-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	height: 100%;
	width: 100%;
}

.gt-g-30 { width: 30%; }
.gt-g-33 { width: 33.333%; }
.gt-g-35 { width: 35%; }
.gt-g-40 { width: 40%; }
.gt-g-50 { width: 50%; }
.gt-g-60 { width: 60%; }
.gt-g-65 { width: 65%; }
.gt-g-70 { width: 70%; }
.gt-g-100 { width: 100%; }

.gt-padding-grid {
	justify-content: flex-start;
	width: auto;
	margin-left: -20px;
	margin-right: -20px;
}

.gt-padding-grid > [class*="gt-g-"] {
	padding: 0 20px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.gt-top-bar-frame {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	background-color: transparent;
	transition: 0.4s var(--ease);
}

.gt-top-bar {
	position: relative;
	width: 100%;
	height: var(--bar-h);
	padding: 0 var(--pad-x);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.gt-top-bar::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: var(--pad-x);
	width: 37%;
	height: 1px;
	opacity: 0.15;
	background-color: var(--ink);
}

.gt-bar-actions {
	display: flex;
	align-items: center;
	gap: 34px;
}

/* ---------- logo: signature mask that draws itself ---------- */
.gt-logo-frame {
	display: block;
	width: 208px;
	height: 79px;
	flex: none;
	color: var(--ink);
	transition: color 0.4s var(--ease), transform 0.5s var(--ease-out);
}

.gt-logo-frame:hover {
	transform: scale(1.03);
}

.gt-logo-word {
	display: block;
	width: 100%;
	height: 100%;
	background-color: currentColor;
	-webkit-mask: url(../img/ui/logo.png) no-repeat left center / contain;
	mask: url(../img/ui/logo.png) no-repeat left center / contain;
	text-indent: -200vw;
	overflow: hidden;
	white-space: nowrap;
}

/* the signature is written on first arrival, then stays put */
html.gt-sign .gt-logo-word {
	animation: gt-sign-in 1.5s cubic-bezier(0.62, 0.03, 0.4, 1) 0.15s both;
}

@keyframes gt-sign-in {
	from {
		clip-path: inset(0 100% 0 0);
	}

	to {
		clip-path: inset(0 -3% 0 0);
	}
}

/* ---------- horizontal menu ---------- */
.gt-menu-frame {
	transition: 0.4s var(--ease);
}

.gt-menu {
	display: flex;
}

.gt-menu li {
	position: relative;
	height: var(--bar-h);
	padding: 0 26px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gt-menu li a {
	position: relative;
	white-space: nowrap;
	font-family: var(--sans);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink);
	transition: color 0.4s var(--ease);
}

/* hover: a gradient rule sweeps out from the centre */
.gt-menu li a::before {
	content: '';
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: -7px;
	height: 2px;
	background: var(--grad-text);
	transition: left 0.4s var(--ease-out), right 0.4s var(--ease-out);
}

.gt-menu li a:hover::before {
	left: 0;
	right: 0;
}

.gt-menu li.gt-current > a {
	color: var(--accent);
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.gt-menu li.gt-current > a::after {
	content: '';
	position: absolute;
	top: 49%;
	left: -8%;
	width: 116%;
	height: 2px;
	background: var(--grad-text);
}

.gt-menu li.gt-current > a::before {
	display: none;
}

/* ---------- language switch ---------- */
.gt-lang {
	display: flex;
	align-items: center;
	gap: 2px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	font-family: var(--sans);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.14em;
	color: var(--ink);
}

.gt-lang span {
	position: relative;
	display: block;
	padding: 6px 7px;
	opacity: 0.4;
	transition: opacity 0.3s var(--ease);
}

.gt-lang span.is-on {
	opacity: 1;
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.gt-lang:hover span {
	opacity: 0.75;
}

.gt-lang:hover span.is-on {
	opacity: 1;
}

.gt-lang i {
	width: 1px;
	height: 11px;
	background-color: currentColor;
	opacity: 0.3;
}

/* ---------- hamburger ---------- */
.gt-menu-btn {
	width: 30px;
	height: 17px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	transition: 0.4s var(--ease);
}

.gt-menu-btn span,
.gt-menu-btn span::after,
.gt-menu-btn span::before {
	content: "";
	display: block;
	width: 30px;
	height: 3px;
	border-radius: 1px;
	background-color: var(--ink);
	backface-visibility: hidden;
	transition: 0.3s var(--ease);
}

.gt-menu-btn span {
	position: relative;
	margin: 7px 0 0;
	background-color: transparent;
}

.gt-menu-btn span::before {
	position: absolute;
	top: -7px;
}

.gt-menu-btn span::after {
	position: absolute;
	top: 7px;
	width: 20px;
}

.gt-menu-btn:hover span::after {
	width: 30px;
}

.gt-menu-btn.gt-active {
	transform: scale(0.85);
}

.gt-menu-btn.gt-active span {
	background-color: var(--ink);
	transform: rotate(45deg);
}

.gt-menu-btn.gt-active span::before {
	transform: translate(0, 7px) rotate(-90deg);
}

.gt-menu-btn.gt-active span::after {
	width: 30px;
	transform: translate(0, -7px) rotate(-90deg);
}

/* ---------- dark-page top bar ---------- */
.gt-dark .gt-top-bar::before {
	background-color: var(--pure);
}

.gt-dark .gt-logo-frame {
	color: var(--pure);
}

.gt-dark .gt-menu li a,
.gt-dark .gt-lang {
	color: var(--pure);
}

.gt-dark .gt-menu-btn span::after,
.gt-dark .gt-menu-btn span::before {
	background-color: var(--pure);
}

.gt-dark .gt-menu-btn.gt-active span {
	background-color: var(--pure);
}

/* ---------- menu open state ---------- */
.gt-top-bar-frame.gt-menu-opened .gt-top-bar::before,
.gt-top-bar-frame.gt-menu-opened .gt-menu-btn span,
.gt-top-bar-frame.gt-menu-opened .gt-menu-btn span::after,
.gt-top-bar-frame.gt-menu-opened .gt-menu-btn span::before {
	background-color: var(--ink) !important;
}

.gt-top-bar-frame.gt-menu-opened .gt-logo-frame,
.gt-top-bar-frame.gt-menu-opened .gt-lang {
	color: var(--ink) !important;
}

.gt-top-bar-frame.gt-menu-opened .gt-menu-frame {
	opacity: 0;
	pointer-events: none;
}

/* ============================================================
   FULLSCREEN MENU
   ============================================================ */
.gt-big-menu-frame {
	position: fixed;
	z-index: 9;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	background-color: var(--white);
	transition: opacity 0.45s var(--ease);
}

.gt-big-menu-frame.gt-active {
	opacity: 1;
	pointer-events: all;
}

.gt-fs-menu .gt-menu {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: calc(var(--vh, 1vh) * 100);
	padding: var(--pad-x);
}

.gt-fs-menu .gt-menu li {
	height: auto;
	padding: 0;
	margin-bottom: 18px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	overflow: hidden;
}

.gt-fs-menu .gt-menu li:last-child {
	margin-bottom: 0;
}

.gt-fs-menu .gt-menu li a {
	font-family: var(--sans);
	font-weight: 800;
	font-size: 40px;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--ink);
	transform: translateY(105%);
	transition: transform 0.6s var(--ease-out), color 0.3s var(--ease);
}

/* links rise in sequence when the overlay opens */
.gt-big-menu-frame.gt-active .gt-fs-menu .gt-menu li a {
	transform: translateY(0);
}

.gt-fs-menu .gt-menu li:nth-child(1) a { transition-delay: 0.06s; }
.gt-fs-menu .gt-menu li:nth-child(2) a { transition-delay: 0.12s; }
.gt-fs-menu .gt-menu li:nth-child(3) a { transition-delay: 0.18s; }
.gt-fs-menu .gt-menu li:nth-child(4) a { transition-delay: 0.24s; }
.gt-fs-menu .gt-menu li:nth-child(5) a { transition-delay: 0.30s; }

.gt-fs-menu .gt-menu li a::before {
	display: none;
}

.gt-fs-menu .gt-menu li a:hover {
	color: var(--accent);
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.gt-fs-menu .gt-menu li.gt-current > a::after {
	content: '';
	position: absolute;
	top: 49%;
	left: -5%;
	width: 110%;
	height: 3px;
	background: var(--grad-text);
}

/* ---------- fullscreen menu: text column ---------- */
.gt-menu-text-frame {
	position: relative;
	padding: var(--bar-h) var(--pad-x) var(--pad-x);
	height: calc(var(--vh, 1vh) * 100);
}

.gt-menu-text {
	position: relative;
	height: 320px;
	display: flex;
	align-items: center;
}

.gt-menu-text::before {
	content: '';
	position: absolute;
	top: 0;
	left: calc(var(--pad-x) * -1);
	width: 140px;
	height: 100%;
	background: var(--grad);
}

.gt-menu-text p {
	position: relative;
	font-size: 22px;
	line-height: 30px;
	font-weight: 500;
}

.gt-instagram {
	position: absolute;
	bottom: var(--pad-x);
	left: var(--pad-x);
	display: flex;
	align-items: center;
	font-family: var(--sans);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink);
	transition: 0.4s var(--ease);
}

.gt-instagram svg {
	width: 20px;
	height: 20px;
	margin-left: 10px;
}

.gt-instagram:hover {
	color: var(--accent);
}

/* ============================================================
   PHOTO FRAME (curtain reveal)
   ============================================================ */
.gt-photo-frame {
	display: block;
	position: relative;
	overflow: hidden !important;
	padding-bottom: 100%;
	background-color: var(--curtain-light);
}

.gt-photo-frame img {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transform: translateX(-101%);
	transition: transform 0.7s var(--ease-out);
	transition-delay: 0s;
}

.gt-photo-frame::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
	background: var(--grad);
	/* scaled to nothing until the reveal runs, so it never sits over the photo */
	transform: scaleX(0);
	transform-origin: left center;
}

.gt-photo-frame.gt-active img {
	transform: translateX(0);
	transition-delay: 0.45s;
}

.gt-photo-frame.gt-active::after {
	animation: gt-curtain 1.05s var(--ease) forwards;
}

/* the wipe crosses the frame and exits: the origin flips while it is fully
   covering, so the switch is invisible */
@keyframes gt-curtain {
	0% {
		transform: scaleX(0);
		transform-origin: left center;
	}

	48% {
		transform: scaleX(1);
		transform-origin: left center;
	}

	52% {
		transform: scaleX(1);
		transform-origin: right center;
	}

	100% {
		transform: scaleX(0);
		transform-origin: right center;
	}
}

/* vertical variant */
.gt-from-top img {
	transform: translateY(-101%);
}

.gt-from-top::after {
	transform: scaleY(0);
	transform-origin: center top;
}

.gt-photo-frame.gt-from-top.gt-active img {
	transform: translateY(0);
}

.gt-photo-frame.gt-from-top.gt-active::after {
	animation: gt-curtain-v 1.05s var(--ease) forwards;
}

@keyframes gt-curtain-v {
	0% {
		transform: scaleY(0);
		transform-origin: center top;
	}

	48% {
		transform: scaleY(1);
		transform-origin: center top;
	}

	52% {
		transform: scaleY(1);
		transform-origin: center bottom;
	}

	100% {
		transform: scaleY(0);
		transform-origin: center bottom;
	}
}

/* zoom trigger */
.gt-zoom {
	position: absolute;
	z-index: 3;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	transform: scale(0);
	transition: 0.4s var(--ease);
	background: var(--grad-dark);
}

.gt-photo-frame:hover .gt-zoom,
.gt-zoom:focus-visible {
	opacity: 1;
	transform: scale(1);
}

@media (hover: none) {
	.gt-zoom {
		opacity: 1;
		transform: scale(1);
	}
}

.gt-zoom svg {
	width: 15px;
	height: 15px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.gt-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.gt-reveal.is-in {
	opacity: 1;
	transform: none;
}

.gt-reveal-1 { transition-delay: 0.08s; }
.gt-reveal-2 { transition-delay: 0.16s; }
.gt-reveal-3 { transition-delay: 0.24s; }

/* home headline, line by line */
.gt-line-mask {
	display: block;
	overflow: hidden;
}

.gt-line-mask > span {
	display: block;
	transform: translateY(105%);
	transition: transform 0.9s var(--ease-out);
}

html.gt-ready .gt-line-mask > span {
	transform: none;
}

html.gt-ready .gt-line-mask:nth-child(2) > span { transition-delay: 0.1s; }

/* ============================================================
   COMPONENTS
   ============================================================ */
.gt-suptitle {
	display: inline-flex;
	align-items: center;
	height: 40px;
	margin-bottom: 10px;
	font-size: 10px;
	line-height: 12px;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
}

.gt-button {
	position: relative;
	z-index: 2;
	width: 180px;
	height: 180px;
	padding: 0 44px;
	flex: none;
	border-radius: 50%;
	border: 1px solid var(--pure);
	color: var(--pure);
	font-family: var(--sans);
	font-weight: 700;
	font-size: 11px;
	line-height: 1.5;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	transition: 0.5s var(--ease);
}

.gt-button > * {
	position: relative;
}

.gt-button .gt-arrow {
	margin-bottom: 20px;
	color: var(--pure);
	transition: 0.4s var(--ease);
}

/* on hover the perfect circle gives way to a slowly morphing ink outline.
   The wrapper owns the rotation and the pseudo-elements own the morph, so the
   two never fight over `transform`. */
/* Three near-circular rings, each slightly eccentric and off-centre,
   orbiting the button at their own pace — the swirl from the reference. */
.gt-ink {
	position: absolute;
	inset: -10px;
	width: auto;
	height: auto;
	opacity: 0;
	overflow: visible;
	/* the photography behind this is high-key, so the hairline needs a shadow */
	filter: drop-shadow(0 0 7px rgba(0, 0, 0, 0.55));
	transition: opacity 0.5s var(--ease);
}

.gt-ink ellipse {
	fill: none;
	stroke: var(--pure);
	stroke-width: 1.5;
	vector-effect: non-scaling-stroke;
	transform-origin: 100px 100px;
	transform-box: view-box;
}

.gt-ink-1 {
	animation: gt-ink-turn 8s linear infinite;
}

.gt-ink-2 {
	opacity: 0.55;
	animation: gt-ink-turn 12s linear infinite reverse;
}

.gt-ink-3 {
	opacity: 0.3;
	animation: gt-ink-turn 17s linear infinite;
	animation-delay: -5s;
}

@keyframes gt-ink-turn {
	to {
		transform: rotate(360deg);
	}
}

.gt-link {
	display: flex;
	align-items: center;
	color: var(--pure);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.02em;
	transition: 0.4s var(--ease);
}

.gt-link svg {
	width: 18px;
	height: 18px;
	margin-right: 15px;
	transition: transform 0.4s var(--ease-out);
}

.gt-link:hover {
	color: var(--accent);
}

.gt-link:hover svg {
	transform: scale(1.15);
}

.gt-text-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	font-family: var(--sans);
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--ink);
	transition: 0.4s var(--ease);
}

.gt-text-btn::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 0;
	height: 2px;
	background: var(--grad-text);
	transition: width 0.45s var(--ease-out);
}

.gt-text-btn:hover::after {
	width: 100%;
}

.gt-text-btn .gt-arrow {
	margin-left: 20px;
	transition: 0.4s var(--ease);
}

.gt-text-btn:hover .gt-arrow {
	transform: translateX(10px);
}

.gt-deco {
	background: var(--grad);
}

/* ============================================================
   PAGE — HOME
   ============================================================ */
.gt-home {
	background-color: var(--gray-dark);
}

.gt-home .gt-obj-1 {
	width: 100%;
	padding-bottom: 0;
	height: calc(var(--vh, 1vh) * 100);
}

.gt-home .gt-obj-1 img {
	object-position: center;
	transform: translateY(-101%) scale(1.06);
	transition: transform 1.4s var(--ease-out);
}

.gt-home .gt-obj-1.gt-active img {
	transform: translateY(0) scale(1);
}

.gt-home .gt-object-frame {
	position: relative;
}

/* ---------- hero video ----------
   Sits over the photo, which stays as poster and fallback. It only fades in
   once it can actually play, so a slow load never shows a blank frame. */
.gt-hero-video {
	position: absolute;
	z-index: 1;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	background-color: var(--gray-dark);
	opacity: 0;
	transition: opacity 0.9s var(--ease);
	pointer-events: none;
}

.gt-hero-video.is-playing {
	opacity: 1;
}

/* legibility veil: the brand photography is high-key, the caption is white */
.gt-home .gt-scrim {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background:
		linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0) 65%),
		linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.05) 45%, rgba(0, 0, 0, 0) 70%),
		/* the video is brighter and busier than a photo, so the bar needs cover too */
		linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.14) 14%, rgba(0, 0, 0, 0) 26%);
}

.gt-home .gt-caption {
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 210px var(--pad-x) var(--pad-x);
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	pointer-events: none;
}

.gt-home .gt-caption a,
.gt-home .gt-caption button {
	pointer-events: auto;
}

/* the signature sits right above the headline; the write-on plays here */
.gt-sign-hero {
	display: block;
	width: 370px;
	height: 141px;
	margin-bottom: 8px;
	background-color: currentColor;
	-webkit-mask: url(../img/ui/logo.png) no-repeat left bottom / contain;
	mask: url(../img/ui/logo.png) no-repeat left bottom / contain;
}

html.gt-sign .gt-sign-hero {
	animation: gt-sign-in 1.5s cubic-bezier(0.62, 0.03, 0.4, 1) 0.3s both;
}

.gt-home .gt-main-title {
	width: 45%;
	margin-bottom: 15vh;
	color: var(--pure);
}

.gt-home .gt-main-title h1 {
	font-size: 48px;
	font-weight: 900;
	text-transform: uppercase;
	color: var(--pure);
}

.gt-home .gt-button-frame {
	position: relative;
	width: 55%;
	margin-bottom: 15vh;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gt-home .gt-button-frame::after {
	content: '';
	position: absolute;
	top: 0;
	right: calc(var(--pad-x) * -1);
	width: 40px;
	height: 100%;
	background: var(--grad);
}

.gt-home .gt-line {
	height: 1px;
	width: calc(100% - 220px);
	background-color: var(--pure);
	transform-origin: left;
	transform: scaleX(0);
	transition: transform 1s var(--ease-out) 0.5s;
}

html.gt-ready .gt-home .gt-line {
	transform: scaleX(1);
}

.gt-home .gt-description {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.gt-home .gt-description p {
	padding-left: var(--pad-x);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--pure);
}

/* ============================================================
   PAGE — STUDIO
   ============================================================ */
.gt-studio {
	padding: var(--bar-h) 0 0;
	background-color: var(--gray-dark);
}

.gt-studio .gt-obj-1 {
	width: 100%;
	padding-bottom: 0;
	height: calc(var(--vh, 1vh) * 100 - var(--bar-h));
}

.gt-studio .gt-obj-1 img {
	object-position: center;
}

.gt-studio-frame {
	position: relative;
	height: calc(var(--vh, 1vh) * 100 - var(--bar-h));
	padding-left: var(--pad-x);
}

.gt-studio-text {
	padding-top: 50px;
	padding-right: var(--pad-x);
	color: var(--pure);
}

.gt-studio-text h1 {
	font-size: 44px;
	line-height: 1.1;
	text-transform: uppercase;
	margin-bottom: 26px;
}

.gt-studio-text p {
	font-size: 16px;
	line-height: 28px;
	color: var(--pure);
	margin-bottom: 18px;
}

.gt-studio-text p:last-child {
	margin-bottom: 0;
}

.gt-studio-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 36px;
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.gt-studio-facts div {
	color: var(--pure);
}

.gt-studio-facts b {
	display: block;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.1;
}

.gt-studio-facts span {
	display: block;
	margin-top: 4px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	opacity: 0.7;
}

.gt-position-fix {
	position: relative;
	padding-right: var(--pad-x);
}

.gt-studio .gt-obj-2 {
	padding-bottom: 140%;
}

.gt-studio .gt-deco {
	position: absolute;
	top: 70%;
	right: 0;
	width: 115px;
	height: 277px;
}

/* keeps the white bottom panel legible over high-key photography */
.gt-scrim-bottom {
	position: absolute;
	inset: auto 0 0 0;
	z-index: 3;
	height: 320px;
	pointer-events: none;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0) 100%);
}

.gt-bottom-panel {
	position: absolute;
	z-index: 4;
	bottom: var(--pad-x);
	width: 100%;
	padding: 0 var(--pad-x);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gt-bottom-panel .gt-social {
	width: 30%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--pure);
}

.gt-bottom-panel .gt-social > span {
	width: 90px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.gt-bottom-panel .gt-social .gt-line {
	height: 1px;
	width: calc(100% - 170px);
	background-color: var(--pure);
}

.gt-bottom-panel .gt-social a {
	flex: none;
	transition: 0.4s var(--ease);
}

/* inline icons carry no width/height attributes, so size them here */
.gt-bottom-panel .gt-social a svg {
	width: 22px;
	height: 22px;
}

.gt-bottom-panel .gt-social a:hover {
	transform: scale(1.2);
	color: var(--accent);
}

.gt-mail {
	position: relative;
	color: var(--pure);
	font-size: 15px;
	font-weight: 500;
	transition: 0.4s var(--ease);
}

.gt-mail::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 0;
	height: 1px;
	background: var(--grad-text);
	transition: width 0.4s var(--ease-out);
}

.gt-mail:hover::after {
	width: 100%;
}/* ---------- before / after comparator ---------- */
.gt-compare {
	position: relative;
	max-height: 100%;
	max-width: min(68vw, 760px);
	overflow: hidden;
	border-radius: 6px;
	cursor: ew-resize;
	touch-action: pan-y;
	user-select: none;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.gt-compare[hidden] {
	display: none;
}

.gt-compare img {
	display: block;
	max-height: min(72vh, 900px);
	width: auto;
	pointer-events: none;
}

/* the "after" is clipped from the left edge; its image keeps full width so the
   two photos stay in register as the clip moves */
.gt-compare-clip {
	position: absolute;
	inset: 0 auto 0 0;
	width: 50%;
	overflow: hidden;
}

.gt-compare-clip img {
	position: absolute;
	top: 0;
	left: 0;
	max-width: none;
	height: 100%;
}

.gt-compare-handle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 3px;
	margin-left: -1.5px;
	background: var(--pure);
	box-shadow: 0 0 14px rgba(0, 0, 0, 0.5);
	cursor: ew-resize;
}

.gt-compare-handle i {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 46px;
	height: 46px;
	margin: -23px 0 0 -23px;
	border-radius: 50%;
	background: var(--pure);
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

/* two chevrons cut out of the knob, so it reads as "drag me" */
.gt-compare-handle i::before,
.gt-compare-handle i::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 7px;
	height: 7px;
	margin-top: -4px;
	border-top: 2px solid var(--ink);
	border-right: 2px solid var(--ink);
}

.gt-compare-handle i::before {
	left: 12px;
	transform: rotate(-135deg);
}

.gt-compare-handle i::after {
	right: 12px;
	transform: rotate(45deg);
}

/* the knob breathes until the visitor touches it, then settles */
.gt-compare:not(.is-touched) .gt-compare-handle i {
	animation: gt-knob 2.4s var(--ease) infinite;
}

@keyframes gt-knob {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.14); }
}

.gt-compare-tag {
	position: absolute;
	bottom: 14px;
	padding: 6px 12px;
	border-radius: 100px;
	background: rgba(0, 0, 0, 0.62);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	color: var(--pure);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	pointer-events: none;
}

.gt-tag-b { left: 14px; }
.gt-tag-a { right: 14px; }

@media (max-width: 768px) {
	.gt-compare {
		max-width: 100%;
	}

	.gt-compare img {
		max-height: 64vh;
	}

	.gt-compare-handle i {
		width: 40px;
		height: 40px;
		margin: -20px 0 0 -20px;
	}

	.gt-compare-tag {
		bottom: 10px;
		padding: 5px 10px;
		font-size: 9px;
	}
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.gt-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.94);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px;
	opacity: 0;
	pointer-events: none;
	transition: 0.4s var(--ease);
}

.gt-lightbox.gt-active {
	opacity: 1;
	pointer-events: all;
}

.gt-lightbox img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transform: scale(0.96);
	transition: transform 0.5s var(--ease-out);
}

.gt-lightbox.gt-active img {
	transform: scale(1);
}

.gt-lightbox-close {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	color: var(--pure);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	background: var(--grad-dark);
}

/* ============================================================
   PAGE — CONTACT
   ============================================================ */
.gt-contact {
	padding: 0;
	background-color: var(--pure);
}

.gt-contact .gt-object-frame {
	position: relative;
	height: calc(var(--vh, 1vh) * 100);
	padding-top: var(--bar-h);
	background-color: var(--white);
}

.gt-contact .gt-obj-1 {
	width: calc(100% + 40px);
	padding-bottom: 80%;
	height: auto;
}

.gt-contact .gt-obj-1 img {
	object-position: center;
}

.gt-contact .gt-page-title {
	position: absolute;
	bottom: var(--pad-x);
	left: var(--pad-x);
	font-size: 48px;
	text-transform: uppercase;
}

.gt-contact .gt-deco {
	position: absolute;
	z-index: 1;
	top: 50%;
	right: 0;
	width: 70px;
	height: 160px;
}

.gt-form-frame {
	height: calc(var(--vh, 1vh) * 100);
	padding: var(--bar-h) var(--pad-x) var(--pad-x) 120px;
	display: flex;
	align-items: flex-end;
}

.gt-form-content {
	width: 100%;
}

.gt-form-title {
	font-size: 36px;
	line-height: 1.15;
	text-transform: uppercase;
	margin-bottom: 26px;
}

.gt-form-note {
	font-size: 14px;
	line-height: 24px;
	color: var(--gray);
	margin-bottom: 34px;
	max-width: 460px;
}

.gt-group-input {
	position: relative;
	margin-bottom: 32px;
}

.gt-group-input input,
.gt-group-input textarea,
.gt-group-input select {
	width: 100%;
	height: 62px;
	padding: 0;
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
	border-radius: 0;
	background-color: transparent;
	font-family: var(--sans);
	font-size: 16px;
	font-weight: 500;
	color: var(--ink);
	transition: 0.4s var(--ease);
}

.gt-group-input textarea {
	height: 100px;
	padding-top: 20px;
	resize: none;
}

/* gradient underline grows on focus */
.gt-group-input::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--grad-text);
	transition: width 0.45s var(--ease-out);
}

.gt-group-input:focus-within::after {
	width: 100%;
}

.gt-group-input input::placeholder,
.gt-group-input textarea::placeholder {
	color: var(--gray);
	opacity: 1;
	font-weight: 400;
}

.gt-group-input input:focus,
.gt-group-input textarea:focus,
.gt-group-input select:focus {
	outline: none;
}

/* ---------- reference images ---------- */
.gt-refs {
	margin-bottom: 30px;
}

.gt-refs-drop {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 26px 20px;
	border: 1px dashed rgba(0, 0, 0, 0.32);
	border-radius: 12px;
	cursor: pointer;
	text-align: center;
	transition: 0.35s var(--ease);
}

.gt-refs-drop:hover,
.gt-refs-drop:focus-within {
	border-color: var(--accent);
	background-color: rgba(241, 96, 1, 0.04);
}

.gt-refs-drop input[type="file"] {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}

.gt-refs-icon {
	font-size: 22px;
	font-weight: 300;
	line-height: 1;
	color: var(--accent);
}

.gt-refs-label {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.gt-refs-hint {
	max-width: 380px;
	font-size: 12.5px;
	line-height: 18px;
	color: var(--gray);
}

.gt-refs-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}

.gt-refs-list:empty {
	margin-top: 0;
}

.gt-ref {
	position: relative;
	width: 84px;
	height: 84px;
	border-radius: 9px;
	overflow: hidden;
	background-color: var(--curtain-light);
}

.gt-ref img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gt-ref-x {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 22px;
	height: 22px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.72);
	color: var(--pure);
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	transition: 0.25s var(--ease);
}

.gt-ref-x:hover {
	background: var(--accent);
}

.gt-refs-error {
	display: none;
	margin-top: 10px;
	font-size: 13px;
	font-weight: 600;
	color: #C10801;
}

.gt-refs-error.is-on {
	display: block;
}

/* the send button says so while the upload is in flight */
.gt-text-btn.is-busy {
	opacity: 0.55;
	cursor: wait;
}

@media (max-width: 768px) {
	.gt-refs-drop {
		padding: 22px 16px;
	}

	.gt-ref {
		width: 70px;
		height: 70px;
	}
}

.gt-form-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.gt-terms {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 13px;
	color: var(--gray);
	cursor: pointer;
}

.gt-terms input {
	width: 18px;
	height: 18px;
	accent-color: var(--accent);
	flex: none;
}

.gt-terms a {
	color: var(--ink);
	text-decoration: underline;
}

.gt-form-success,
.gt-form-error {
	display: none;
	margin-top: 26px;
	padding: 16px 18px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
	line-height: 22px;
}

/* sent: green panel with a check that draws itself */
.gt-form-success {
	align-items: center;
	gap: 14px;
	color: #0F7A3D;
	background: rgba(23, 158, 80, 0.09);
	border: 1px solid rgba(23, 158, 80, 0.32);
}

.gt-form-error {
	color: #C10801;
	background: rgba(193, 8, 1, 0.07);
	border: 1px solid rgba(193, 8, 1, 0.3);
}

.gt-form-success.gt-active {
	display: flex;
}

.gt-form-error.gt-active {
	display: block;
}

.gt-check {
	flex: none;
	width: 34px;
	height: 34px;
	color: #179E50;
}

.gt-check svg {
	width: 100%;
	height: 100%;
}

.gt-check circle,
.gt-check path {
	stroke-dasharray: 100;
	stroke-dashoffset: 100;
}

.gt-form-success.gt-active .gt-check circle {
	animation: gt-check-draw 0.5s var(--ease-out) forwards;
}

.gt-form-success.gt-active .gt-check path {
	animation: gt-check-draw 0.35s var(--ease-out) 0.35s forwards;
}

@keyframes gt-check-draw {
	to {
		stroke-dashoffset: 0;
	}
}

/* honeypot: off-screen for humans, visible to bots */
.gt-hp {
	position: absolute;
	left: -5000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ============================================================
   RESPONSIVE — 1200
   ============================================================ */
@media (max-width: 1200px) {
	.gt-lg-50 { width: 50%; }
	.gt-lg-100 { width: 100%; }

	.gt-menu-text-frame {
		display: none;
	}

	.gt-studio-frame {
		padding-left: var(--pad-x);
	}

	.gt-studio-text h1 {
		font-size: 40px;
	}

	.gt-contact .gt-page-title {
		font-size: 36px;
	}}

/* ============================================================
   RESPONSIVE — 992
   ============================================================ */
@media (max-width: 992px) {
	:root {
		--pad-x: 40px;
	}

	.gt-md-50 { width: 50%; }
	.gt-md-100 { width: 100%; }

	.gt-menu-frame {
		display: none;
	}

	.gt-menu-frame.gt-fs-menu {
		display: block;
	}

	.gt-fs-menu .gt-menu {
		height: calc(var(--vh, 1vh) * 100 - var(--bar-h));
		margin-top: var(--bar-h);
		padding: 0 var(--pad-x);
		justify-content: center;
		align-items: flex-start;
	}

	.gt-fs-menu .gt-menu li a {
		font-size: 30px;
	}

	.gt-studio-text h1 {
		font-size: 34px;
	}

	.gt-studio-text p {
		font-size: 15px;
		line-height: 26px;
	}

	.gt-contact .gt-page-title {
		font-size: 30px;
	}

	.gt-form-frame {
		padding-left: var(--pad-x);
	}

	.gt-form-title {
		font-size: 28px;
	}

	.gt-form-bottom {
		flex-direction: column;
		align-items: flex-start;
	}}

/* ============================================================
   RESPONSIVE — 768
   ============================================================ */
@media (max-width: 768px) {
	:root {
		--bar-h: 92px;
		--pad-x: 20px;
	}

	body {
		overflow: auto;
	}

	.gt-sm-100 { width: 100%; }

	.gt-grid {
		height: auto;
	}

	.gt-sm-reverse {
		flex-direction: column-reverse;
		gap: 30px;
	}

	.gt-scrim-bottom {
		display: none;
	}

	.gt-bar-actions {
		gap: 18px;
	}

	.gt-logo-frame {
		width: 152px;
		height: 58px;
	}

	/* scrolling pages need an opaque bar so content passes behind it, not through it */
	.gt-studio .gt-top-bar-frame {
		background-color: var(--gray-dark);
	}	/* photo frame reverts to horizontal sweep */
	.gt-from-top img {
		transform: translateX(-101%);
	}

	.gt-from-top::after {
		transform: scaleX(0);
		transform-origin: left center;
	}

	.gt-photo-frame.gt-from-top.gt-active img {
		transform: translateX(0);
	}

	.gt-photo-frame.gt-from-top.gt-active::after {
		animation: gt-curtain 1.05s var(--ease) forwards;
	}

	.gt-home .gt-obj-1 img {
		transform: translateX(-101%) scale(1.06);
	}

	.gt-home .gt-obj-1.gt-active img {
		transform: translateX(0) scale(1);
	}

	.gt-fs-menu .gt-menu {
		justify-content: center;
	}

	.gt-fs-menu .gt-menu li a {
		font-size: 27px;
	}

	/* the overlay cannot scroll, so its decorative columns are unreachable here */
	.gt-big-menu .gt-object-frame {
		display: none;
	}

	.gt-button {
		width: 145px;
		height: 145px;
		padding: 0 26px;
	}

	/* --- home --- */
	.gt-home .gt-caption {
		flex-direction: column;
		justify-content: flex-end;
		padding: 100px var(--pad-x) var(--pad-x);
	}

	.gt-home .gt-main-title {
		width: 100%;
		margin-bottom: 40px;
	}

	.gt-sign-hero {
		width: 250px;
		height: 95px;
	}

	.gt-home .gt-main-title h1 {
		font-size: 34px;
	}

	.gt-home .gt-button-frame {
		width: 100%;
		margin-bottom: 40px;
	}

	.gt-home .gt-button-frame::after {
		display: none;
	}

	.gt-home .gt-line {
		width: calc(100% - 165px);
	}

	.gt-home .gt-description {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.gt-home .gt-description p {
		padding-left: 0;
		width: 100%;
	}

	/* --- studio --- */
	.gt-studio {
		padding: var(--bar-h) var(--pad-x) 0;
		height: auto;
		align-items: flex-start;
	}

	.gt-studio .gt-obj-1 {
		padding-bottom: 120%;
		height: auto;
	}

	.gt-studio-frame {
		height: auto;
		padding-left: 0;
	}

	.gt-studio-text {
		padding: 30px 0 0;
	}

	.gt-studio-text h1 {
		font-size: 30px;
	}

	.gt-position-fix {
		display: none;
	}

	.gt-bottom-panel {
		position: static;
		width: auto;
		margin: 40px calc(var(--pad-x) * -1) 0;
		padding: 20px var(--pad-x);
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		background: var(--grad-dark);
	}

	.gt-bottom-panel .gt-social {
		width: 100%;
	}

	.gt-bottom-panel .gt-social .gt-line {
		display: none;
	}	/* --- contact --- */
	.gt-contact {
		padding: var(--bar-h) var(--pad-x) var(--pad-x);
		height: auto;
		align-items: flex-start;
	}

	.gt-contact .gt-object-frame {
		height: auto;
		padding: 0;
	}

	.gt-contact .gt-obj-1 {
		width: 75%;
		margin-right: 25%;
		padding-bottom: 100%;
	}

	.gt-contact .gt-page-title {
		z-index: 2;
		bottom: 0;
		left: auto;
		right: 0;
		padding: 16px 0 16px 16px;
		background-color: var(--white);
		font-size: 24px;
	}

	.gt-contact .gt-deco {
		left: calc(var(--pad-x) * -1);
		right: auto;
		bottom: 0;
		top: auto;
		width: 58px;
		height: 120px;
	}

	.gt-form-frame {
		height: auto;
		padding: 40px 0 0;
		margin-bottom: 40px;
	}

	.gt-form-title {
		font-size: 22px;
	}

	.gt-lightbox {
		padding: 20px;
	}
}

/* ============================================================
   PAGE — WHO I AM
   Six blocks that alternate side, so the eye zig-zags down the story.
   ============================================================ */
.gt-about-page {
	background-color: #0C0C0C;
	padding: var(--bar-h) var(--pad-x) 90px;
	align-items: flex-start;
}

.gt-about {
	max-width: 1180px;
	margin: 0 auto;
}

.gt-about-head {
	padding: 26px 0 54px;
	color: var(--pure);
}

.gt-about-head h1 {
	font-size: 54px;
	text-transform: uppercase;
}

.gt-about-head .gt-suptitle {
	opacity: 0.6;
}

.gt-about-row {
	display: flex;
	align-items: center;
	gap: 60px;
	margin-bottom: 90px;
}

.gt-about-row.gt-about-flip {
	flex-direction: row-reverse;
}

/* ---------- photo groups ----------
   One, two or three photos per block, laid out on a small grid. The second
   column is nudged down so the group reads as a composition rather than a
   tidy row — but everything stays inside its column, at any width. */
.gt-about-photo {
	width: 44%;
	flex: none;
	display: grid;
	gap: 12px;
}

.gt-about-photo .gt-photo-frame {
	padding-bottom: 128%;
	border-radius: 12px;
	background-color: #191919;
}

.gt-about-photo[data-count="2"],
.gt-about-photo[data-count="3"] {
	width: 48%;
	grid-template-columns: 1.35fr 1fr;
}

/* two photos: lead on the left, the companion sits lower on the right */
.gt-about-photo[data-count="2"] .gt-photo-frame:nth-child(2) {
	align-self: end;
	padding-bottom: 118%;
	margin-bottom: -34px;
}

/* three photos: a tall lead beside two stacked, the pair offset downwards */
.gt-about-photo[data-count="3"] {
	grid-template-rows: auto auto;
}

.gt-about-photo[data-count="3"] .gt-photo-frame:nth-child(1) {
	grid-row: 1 / span 2;
	align-self: center;
}

.gt-about-photo[data-count="3"] .gt-photo-frame:nth-child(2),
.gt-about-photo[data-count="3"] .gt-photo-frame:nth-child(3) {
	padding-bottom: 92%;
}

.gt-about-photo[data-count="3"] .gt-photo-frame:nth-child(2) {
	margin-top: -26px;
}

.gt-about-photo[data-count="3"] .gt-photo-frame:nth-child(3) {
	margin-bottom: -26px;
}

/* on mirrored blocks the lead photo moves to the outer edge */
.gt-about-flip .gt-about-photo[data-count="2"],
.gt-about-flip .gt-about-photo[data-count="3"] {
	grid-template-columns: 1fr 1.35fr;
}

.gt-about-flip .gt-about-photo[data-count="2"] .gt-photo-frame:nth-child(1),
.gt-about-flip .gt-about-photo[data-count="3"] .gt-photo-frame:nth-child(1) {
	order: 2;
	grid-column: 2;
}

.gt-about-flip .gt-about-photo[data-count="3"] .gt-photo-frame:nth-child(1) {
	grid-row: 1 / span 2;
}

.gt-about-flip .gt-about-photo[data-count="3"] .gt-photo-frame:nth-child(2),
.gt-about-flip .gt-about-photo[data-count="3"] .gt-photo-frame:nth-child(3) {
	grid-column: 1;
}

.gt-about-text {
	flex: 1 1 auto;
	min-width: 0;
	color: var(--pure);
}

.gt-about-num {
	display: block;
	margin-bottom: 14px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.28em;
	color: var(--accent);
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.gt-about-copy h2 {
	margin-bottom: 18px;
	font-size: 32px;
	line-height: 1.1;
	text-transform: uppercase;
}

.gt-about-copy p {
	margin-bottom: 15px;
	font-size: 16px;
	line-height: 28px;
	opacity: 0.86;
}

.gt-about-copy p:last-child {
	margin-bottom: 0;
}

.gt-about-copy strong {
	font-weight: 700;
	opacity: 1;
}

.gt-about-copy em {
	font-style: italic;
}

.gt-about-cta {
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	display: flex;
	justify-content: center;
}

.gt-about-cta .gt-text-btn {
	margin-top: 40px;
	color: var(--pure);
}

@media (max-width: 1200px) {
	.gt-about-head h1 {
		font-size: 42px;
	}

	.gt-about-row {
		gap: 44px;
		margin-bottom: 70px;
	}

	.gt-about-copy h2 {
		font-size: 26px;
	}
}

@media (max-width: 768px) {
	.gt-about-page {
		padding: var(--bar-h) var(--pad-x) 60px;
	}

	.gt-about-page .gt-top-bar-frame {
		background-color: #0C0C0C;
	}

	.gt-about-head {
		padding: 14px 0 34px;
	}

	.gt-about-head h1 {
		font-size: 30px;
	}

	/* stacked, and always photo first so the story reads in one column */
	.gt-about-row,
	.gt-about-row.gt-about-flip {
		flex-direction: column;
		align-items: stretch;
		gap: 22px;
		margin-bottom: 52px;
	}

	/* the offsets do not survive a narrow screen: photos become a simple row */
	/* these selectors carry the data-count so they outweigh the desktop widths */
	.gt-about-photo,
	.gt-about-photo[data-count="2"],
	.gt-about-photo[data-count="3"],
	.gt-about-flip .gt-about-photo[data-count="2"],
	.gt-about-flip .gt-about-photo[data-count="3"] {
		width: 100%;
		padding-bottom: 0;
		display: grid;
		gap: 8px;
		grid-template-columns: 1fr;
	}

	/* only the multi-photo blocks split into two columns */
	.gt-about-photo[data-count="2"],
	.gt-about-photo[data-count="3"],
	.gt-about-flip .gt-about-photo[data-count="2"],
	.gt-about-flip .gt-about-photo[data-count="3"] {
		grid-template-columns: 1fr 1fr;
	}

	/* the photos are 2:3 portraits. Forcing them into a squarer box cropped up
	   to half the image, so on a phone the frame follows the real shape. */
	.gt-about-photo .gt-photo-frame {
		padding-bottom: 0;
		aspect-ratio: var(--ar, 2 / 3);
	}

	.gt-about-photo .gt-photo-frame img {
		object-position: center;
	}

	/* the flip rules are more specific, so they need resetting here too */
	.gt-about-photo[data-count="2"] .gt-photo-frame:nth-child(1),
	.gt-about-photo[data-count="3"] .gt-photo-frame:nth-child(1),
	.gt-about-flip .gt-about-photo[data-count="2"] .gt-photo-frame:nth-child(1),
	.gt-about-flip .gt-about-photo[data-count="3"] .gt-photo-frame:nth-child(1) {
		grid-column: 1 / -1;
		grid-row: auto;
		order: 0;
	}

	.gt-about-flip .gt-about-photo[data-count="3"] .gt-photo-frame:nth-child(2),
	.gt-about-flip .gt-about-photo[data-count="3"] .gt-photo-frame:nth-child(3) {
		grid-column: auto;
	}

	.gt-about-photo[data-count="2"] .gt-photo-frame:nth-child(2),
	.gt-about-photo[data-count="3"] .gt-photo-frame:nth-child(2),
	.gt-about-photo[data-count="3"] .gt-photo-frame:nth-child(3),
	.gt-about-flip .gt-about-photo[data-count="2"] .gt-photo-frame:nth-child(2),
	.gt-about-flip .gt-about-photo[data-count="3"] .gt-photo-frame:nth-child(2),
	.gt-about-flip .gt-about-photo[data-count="3"] .gt-photo-frame:nth-child(3) {
		position: static;
		width: auto;
		padding-bottom: 0;
		aspect-ratio: var(--ar, 2 / 3);
		margin: 0;
		border: none;
		box-shadow: none;
		inset: auto;
	}

	.gt-about-flip .gt-about-photo[data-count="3"] .gt-photo-frame:nth-child(1) {
		margin-left: 0;
	}

	.gt-about-copy h2 {
		font-size: 23px;
	}

	.gt-about-copy p {
		font-size: 15px;
		line-height: 26px;
	}
}

/* ============================================================
   PAGE — PORTFOLIO (accordion of styles + blurred viewer)
   ============================================================ */
.gt-portfolio {
	background-color: #0C0C0C;
	padding: var(--bar-h) var(--pad-x) 36px;
	align-items: stretch;
}

.gt-pf-head {
	padding: 6px 0 22px;
	color: var(--pure);
}

.gt-pf-head h1 {
	font-size: 40px;
	text-transform: uppercase;
}

.gt-pf-head .gt-suptitle {
	opacity: 0.6;
}

/* ---------- accordion ---------- */
.gt-acc {
	display: flex;
	gap: 12px;
	height: calc(var(--vh, 1vh) * 100 - var(--bar-h) - 160px);
	min-height: 420px;
}

.gt-acc-card {
	position: relative;
	flex: 1 1 0;
	min-width: 56px;
	padding: 0;
	border: none;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	text-align: left;
	background-color: #161616;
	transition: flex 0.65s var(--ease-out);
}

.gt-acc-card.is-open {
	flex: 6 1 0;
}

.gt-acc-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.45;
	transform: scale(1.05);
	transition: opacity 0.6s var(--ease), transform 0.9s var(--ease-out);
}

.gt-acc-card:hover .gt-acc-bg,
.gt-acc-card.is-open .gt-acc-bg {
	opacity: 0.8;
	transform: scale(1);
}

.gt-acc-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.45) 100%);
}

/* collapsed strips carry their name vertically, like the reference */
.gt-acc-label {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	writing-mode: vertical-rl;
	white-space: nowrap;
	color: var(--pure);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	transition: opacity 0.3s var(--ease);
}

.gt-acc-card.is-open .gt-acc-label {
	opacity: 0;
}

.gt-acc-body {
	position: absolute;
	left: 28px;
	right: 28px;
	bottom: 26px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	color: var(--pure);
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.5s var(--ease-out) 0.18s, transform 0.5s var(--ease-out) 0.18s;
	pointer-events: none;
}

.gt-acc-card.is-open .gt-acc-body {
	opacity: 1;
	transform: none;
}

.gt-acc-name {
	font-size: 30px;
	font-weight: 800;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	line-height: 1.05;
}

.gt-acc-count {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	opacity: 0.65;
}

.gt-acc-count i {
	font-style: normal;
}

.gt-acc-desc {
	max-width: 430px;
	font-size: 13.5px;
	font-weight: 400;
	line-height: 22px;
	opacity: 0.82;
}

.gt-acc-cta {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin-top: 4px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.gt-acc-cta svg {
	transition: transform 0.4s var(--ease-out);
}

.gt-acc-card.is-open:hover .gt-acc-cta svg {
	transform: translateX(8px);
}

/* ---------- viewer: blurred overlay + one-by-one slider ---------- */
.gt-modal {
	position: fixed;
	inset: 0;
	z-index: 999;
	display: flex;
	flex-direction: column;
	padding: 24px var(--pad-x) 20px;
	background: rgba(10, 10, 10, 0.68);
	-webkit-backdrop-filter: blur(24px) saturate(140%);
	backdrop-filter: blur(24px) saturate(140%);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s var(--ease);
}

.gt-modal.gt-active {
	opacity: 1;
	pointer-events: all;
}

.gt-modal-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.gt-modal-title {
	color: var(--pure);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.01em;
	text-transform: uppercase;
}

.gt-modal-close {
	width: 50px;
	height: 50px;
	flex: none;
	border: none;
	background: var(--grad-dark);
	color: var(--pure);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.3s var(--ease);
}

.gt-modal-close:hover {
	transform: scale(1.08);
}

.gt-modal-stage {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	padding: 18px 0;
}

.gt-modal-fig {
	height: 100%;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* the display above outranks the plain [hidden] rule, so say it explicitly */
.gt-modal-fig[hidden],
.gt-compare[hidden] {
	display: none;
}

.gt-modal-fig img {
	max-height: 100%;
	max-width: min(68vw, 900px);
	object-fit: contain;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
	transition: opacity 0.28s var(--ease);
}

.gt-modal.is-swapping .gt-modal-fig img {
	opacity: 0;
}

.gt-modal .gt-prev,
.gt-modal .gt-next {
	width: 54px;
	height: 54px;
	flex: none;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	background: transparent;
	color: var(--pure);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.4s var(--ease);
}

.gt-modal .gt-prev svg {
	transform: rotate(180deg);
}

.gt-modal .gt-prev:hover:not([disabled]),
.gt-modal .gt-next:hover:not([disabled]) {
	background: var(--grad-dark);
	border-color: transparent;
}

.gt-modal .gt-prev[disabled],
.gt-modal .gt-next[disabled] {
	opacity: 0.22;
	cursor: not-allowed;
}

.gt-modal-bar {
	display: flex;
	justify-content: center;
	color: var(--pure);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.gt-modal-count span {
	opacity: 0.5;
}

/* scroll lock while the viewer is open */
body.gt-lock {
	overflow: hidden !important;
}

@media (max-width: 1200px) {
	.gt-acc-name {
		font-size: 24px;
	}

	.gt-acc-desc {
		font-size: 13px;
		line-height: 20px;
	}
}

@media (max-width: 992px) {
	.gt-acc {
		gap: 8px;
	}

	.gt-acc-card {
		min-width: 46px;
	}

	.gt-pf-head h1 {
		font-size: 32px;
	}

	.gt-modal-fig img {
		max-width: 74vw;
	}
}

@media (max-width: 768px) {
	.gt-portfolio {
		padding: var(--bar-h) var(--pad-x) 30px;
	}

	.gt-portfolio .gt-top-bar-frame {
		background-color: #0C0C0C;
	}

	.gt-pf-head h1 {
		font-size: 28px;
	}

	/* the accordion stacks into bars */
	.gt-acc {
		flex-direction: column;
		height: auto;
		min-height: 0;
		gap: 10px;
	}

	.gt-acc-card {
		flex: none;
		width: 100%;
		min-width: 0;
		height: 64px;
		border-radius: 12px;
		transition: height 0.5s var(--ease-out);
	}

	.gt-acc-card.is-open {
		flex: none;
		height: 340px;
	}

	.gt-acc-label {
		top: 50%;
		left: 20px;
		transform: translateY(-50%);
		writing-mode: horizontal-tb;
	}

	.gt-acc-body {
		left: 20px;
		right: 20px;
		bottom: 20px;
	}

	.gt-acc-name {
		font-size: 22px;
	}

	.gt-acc-desc {
		display: none;
	}

	.gt-modal {
		padding: 16px var(--pad-x) 14px;
	}

	.gt-modal-title {
		font-size: 17px;
	}

	.gt-modal-close {
		width: 44px;
		height: 44px;
	}

	/* the arrows used to sit beside the photo and ate half the screen; on a
	   phone they float over the lower corners so the image gets the full width */
	.gt-modal-stage {
		gap: 0;
		padding: 12px 0;
	}

	.gt-modal .gt-prev,
	.gt-modal .gt-next {
		position: absolute;
		bottom: 6px;
		width: 46px;
		height: 46px;
		background: rgba(0, 0, 0, 0.55);
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
	}

	.gt-modal .gt-prev {
		left: 0;
	}

	.gt-modal .gt-next {
		right: 0;
	}

	.gt-modal-fig {
		width: 100%;
	}

	.gt-modal-fig img {
		max-width: 100%;
	}
}

/* ============================================================
   COOKIE NOTICE
   Accept and Reject look and weigh the same on purpose: consent is only
   valid if refusing is as easy as agreeing.
   ============================================================ */
.gt-cookies {
	position: fixed;
	z-index: 998;
	left: 20px;
	right: 20px;
	bottom: 20px;
	max-width: 760px;
	margin: 0 auto;
	padding: 20px 24px;
	display: flex;
	align-items: center;
	gap: 22px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 14px;
	background: rgba(14, 14, 14, 0.92);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
	color: var(--pure);
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.gt-cookies.is-in {
	opacity: 1;
	transform: none;
}

.gt-cookies[hidden] {
	display: none;
}

.gt-cookies-text strong {
	display: block;
	margin-bottom: 5px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.gt-cookies-text p {
	font-size: 13px;
	line-height: 20px;
	opacity: 0.82;
}

.gt-cookies-actions {
	display: flex;
	gap: 10px;
	flex: none;
}

.gt-cookie-btn {
	padding: 11px 20px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 100px;
	background: transparent;
	color: var(--pure);
	cursor: pointer;
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	white-space: nowrap;
	transition: 0.35s var(--ease);
}

.gt-cookie-btn:hover {
	border-color: var(--pure);
	background: rgba(255, 255, 255, 0.1);
}

.gt-cookie-yes {
	border-color: transparent;
	background: var(--grad-dark);
}

.gt-cookie-yes:hover {
	background: var(--grad-dark);
	filter: brightness(1.15);
}

@media (max-width: 768px) {
	.gt-cookies {
		left: 12px;
		right: 12px;
		bottom: 12px;
		padding: 18px;
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

	.gt-cookies-actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.gt-cookie-btn {
		padding: 13px 10px;
	}
}

/* ============================================================
   LEGAL PAGE
   ============================================================ */
.gt-privacy {
	background-color: var(--white);
	padding: var(--bar-h) var(--pad-x) 80px;
	align-items: flex-start;
}

.gt-legal {
	max-width: 760px;
	margin: 0 auto;
}

.gt-legal-head {
	padding: 20px 0 34px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	margin-bottom: 34px;
}

.gt-legal-head h1 {
	font-size: 40px;
	text-transform: uppercase;
}

.gt-legal-date {
	margin-top: 12px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gray);
}

.gt-legal-body h2 {
	margin: 38px 0 12px;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.gt-legal-body h2:first-child {
	margin-top: 0;
}

.gt-legal-body p {
	margin-bottom: 14px;
	font-size: 15.5px;
	line-height: 27px;
	color: #2A2A2A;
}

.gt-legal-body a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.gt-legal-body strong {
	font-weight: 700;
	color: var(--ink);
}

.gt-cookies-link {
	align-self: center;
	margin-right: 4px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--pure);
	opacity: 0.66;
	text-decoration: underline;
	text-underline-offset: 3px;
	white-space: nowrap;
	transition: opacity 0.3s var(--ease);
}

.gt-cookies-link:hover {
	opacity: 1;
}

@media (max-width: 768px) {
	.gt-privacy {
		padding: var(--bar-h) var(--pad-x) 50px;
	}

	.gt-legal-head h1 {
		font-size: 27px;
	}

	.gt-legal-body h2 {
		font-size: 15px;
		margin-top: 30px;
	}

	.gt-legal-body p {
		font-size: 15px;
		line-height: 25px;
	}

	/* on a phone the notice link sits above the two buttons */
	.gt-cookies-actions {
		grid-template-columns: 1fr 1fr;
	}

	.gt-cookies-link {
		grid-column: 1 / -1;
		text-align: center;
		margin: 0 0 4px;
	}
}

/* ============================================================
   VIRTUAL ASSISTANT
   ============================================================ */
.gt-bot {
	position: fixed;
	z-index: 900;
	right: 22px;
	bottom: 22px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

.gt-bot-toggle {
	position: relative;
	width: 58px;
	height: 58px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: var(--grad-dark);
	color: var(--pure);
	cursor: pointer;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.35s var(--ease-out);
}

.gt-bot-toggle:hover {
	transform: scale(1.06);
	animation: none;
}

/* The bubble hops every few seconds so it reads as alive without nagging:
   a long pause, two quick bounces, pause again. It stops on hover and once
   the chat has been opened. */
.gt-bot:not(.is-open) .gt-bot-toggle {
	animation: gt-bot-hop 5s var(--ease-out) 2s infinite;
}

@keyframes gt-bot-hop {
	0%, 62%, 100% { transform: translateY(0) scale(1); }
	66% { transform: translateY(-13px) scale(1.04, 0.96); }
	72% { transform: translateY(0) scale(0.96, 1.04); }
	78% { transform: translateY(-7px) scale(1.02, 0.98); }
	84% { transform: translateY(0) scale(0.98, 1.02); }
	90% { transform: translateY(0) scale(1); }
}

/* the green dot pulses on its own, a beat behind the hop */
.gt-bot:not(.is-open) .gt-bot-dot {
	animation: gt-bot-ping 5s var(--ease) 2s infinite;
}

@keyframes gt-bot-ping {
	0%, 60%, 100% { box-shadow: 0 0 0 0 rgba(53, 208, 127, 0.6); }
	68% { box-shadow: 0 0 0 7px rgba(53, 208, 127, 0); }
}

.gt-bot-toggle svg {
	position: absolute;
	width: 26px;
	height: 26px;
	transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.gt-bot-ico-x,
.gt-bot.is-open .gt-bot-ico-chat {
	opacity: 0;
	transform: rotate(-90deg) scale(0.7);
}

.gt-bot.is-open .gt-bot-ico-x {
	opacity: 1;
	transform: none;
}

/* a quiet pulse so the bubble is noticed without nagging */
.gt-bot-dot {
	position: absolute;
	top: 3px;
	right: 3px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #35D07F;
	border: 2px solid #0C0C0C;
}

.gt-bot.is-open .gt-bot-dot {
	display: none;
}

.gt-bot-panel {
	width: 340px;
	max-width: calc(100vw - 40px);
	max-height: min(620px, calc(100vh - 130px));
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 18px;
	background: #131313;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
	color: var(--pure);
	transform-origin: bottom right;
	animation: gt-bot-in 0.32s var(--ease-out);
}

.gt-bot-panel[hidden] {
	display: none;
}

@keyframes gt-bot-in {
	from { opacity: 0; transform: translateY(12px) scale(0.96); }
	to { opacity: 1; transform: none; }
}

.gt-bot-head {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 14px 14px 13px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gt-bot-avatar {
	width: 38px;
	height: 38px;
	flex: none;
	border-radius: 50%;
	object-fit: cover;
	border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.gt-bot-head strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.gt-bot-head small {
	display: block;
	font-size: 11px;
	opacity: 0.6;
}

.gt-bot-close {
	margin-left: auto;
	width: 30px;
	height: 30px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: var(--pure);
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
}

.gt-bot-log {
	flex: 1 1 auto;
	min-height: 90px;
	overflow-y: auto;
	padding: 16px 14px 6px;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.gt-bot-msg {
	max-width: 84%;
	padding: 10px 13px;
	border-radius: 14px;
	font-size: 13.5px;
	line-height: 20px;
	animation: gt-bot-msg 0.3s var(--ease-out);
}

@keyframes gt-bot-msg {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: none; }
}

.gt-bot-bot {
	align-self: flex-start;
	background: rgba(255, 255, 255, 0.09);
	border-bottom-left-radius: 5px;
}

.gt-bot-yo {
	align-self: flex-end;
	background: var(--grad-dark);
	border-bottom-right-radius: 5px;
	font-weight: 600;
}

.gt-bot-summary {
	align-self: stretch;
	max-width: none;
	white-space: pre-line;
	background: rgba(255, 255, 255, 0.05);
	border: 1px dashed rgba(255, 255, 255, 0.22);
	font-size: 12.5px;
	line-height: 19px;
	opacity: 0.9;
}

.gt-bot-options {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	padding: 8px 14px 12px;
}

.gt-bot-opt {
	padding: 8px 13px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 100px;
	background: transparent;
	color: var(--pure);
	cursor: pointer;
	font-family: var(--sans);
	font-size: 12.5px;
	font-weight: 500;
	transition: 0.25s var(--ease);
}

.gt-bot-opt:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--pure);
}

.gt-bot-write {
	flex: 1 1 100%;
	display: flex;
	gap: 7px;
	align-items: flex-end;
}

.gt-bot-write textarea {
	flex: 1 1 auto;
	min-width: 0;
	padding: 9px 12px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--pure);
	font-family: var(--sans);
	font-size: 13px;
	line-height: 19px;
	resize: none;
}

.gt-bot-write textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.gt-bot-write textarea:focus {
	outline: none;
	border-color: var(--accent);
}

.gt-bot-write button {
	flex: none;
}

/* the file input rides inside its own pill, so it looks like the other options */
.gt-bot-file {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.gt-bot-file input[type="file"] {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}

.gt-bot-go {
	flex: 1 1 100%;
	padding: 13px 16px;
	border-radius: 100px;
	background: #25D366;          /* WhatsApp green, so the handoff is obvious */
	color: #06301A;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	transition: 0.25s var(--ease);
}

.gt-bot-go:hover {
	filter: brightness(1.08);
}

.gt-bot-restart {
	flex: 1 1 100%;
	opacity: 0.65;
}

.gt-bot-foot {
	padding: 0 14px 13px;
	text-align: center;
}

.gt-bot-foot a {
	font-size: 11.5px;
	opacity: 0.55;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: opacity 0.25s var(--ease);
}

.gt-bot-foot a:hover {
	opacity: 1;
}

/* the cookie notice owns the bottom of the screen until it is answered */
.gt-cookies:not([hidden]) ~ .gt-bot {
	bottom: 132px;
}

@media (max-width: 768px) {
	.gt-bot {
		right: 14px;
		bottom: 14px;
	}

	.gt-bot-panel {
		width: calc(100vw - 28px);
		max-height: calc(100vh - 110px);
	}

	.gt-bot-toggle {
		width: 52px;
		height: 52px;
	}

	.gt-cookies:not([hidden]) ~ .gt-bot {
		bottom: 190px;
	}
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
	/* "Reduce motion" asks for less movement, not a dead page. Fades and the
	   signature stay; anything that travels, spins or zooms is removed, since
	   that is what triggers vestibular discomfort. */

	/* --- gone: things that move across the screen or rotate --- */
	.gt-ink,
	.gt-ink ellipse {
		animation: none !important;
	}

	.gt-home .gt-obj-1 img,
	.gt-acc-bg,
	.gt-shot .gt-photo-frame img {
		transform: none !important;
		transition: opacity 0.3s linear !important;
	}

	.gt-photo-frame img {
		transform: none !important;
		transition: opacity 0.5s linear !important;
	}

	/* the gradient curtain is a wipe across the frame: drop it */
	.gt-photo-frame::after {
		display: none;
	}

	.gt-photo-frame img,
	.gt-photo-frame.gt-active img {
		opacity: 0;
	}

	.gt-photo-frame.gt-active img {
		opacity: 1;
	}

	/* headline lines and menu links rise from below — fade them in instead */
	.gt-line-mask > span,
	.gt-fs-menu .gt-menu li a {
		transform: none !important;
		opacity: 0;
		transition: opacity 0.5s ease !important;
	}

	html.gt-ready .gt-line-mask > span,
	.gt-big-menu-frame.gt-active .gt-fs-menu .gt-menu li a {
		opacity: 1;
	}

	.gt-home .gt-line {
		transform: none !important;
	}

	/* hover flourishes that slide or scale */
	.gt-logo-frame:hover,
	.gt-acc-card:hover .gt-acc-bg,
	.gt-bottom-panel .gt-social a:hover,
	.gt-modal-close:hover {
		transform: none !important;
	}

	.gt-text-btn:hover .gt-arrow,
	.gt-button:hover .gt-arrow,
	.gt-acc-card.is-open:hover .gt-acc-cta svg,
	.gt-link:hover svg {
		transform: none !important;
	}

	/* the accordion still opens, just without the long easing */
	.gt-acc-card {
		transition-duration: 0.2s !important;
	}

	/* --- kept: gentle fades and the signature --- */
	.gt-page-frame > .gt-content {
		transform: none !important;
		transition: opacity 0.5s ease !important;
	}

	.gt-reveal {
		transform: none !important;
		transition: opacity 0.5s ease !important;
	}

	.gt-acc-body {
		transform: none !important;
	}

	/* the signature draws in place — nothing travels, so it stays */
	html.gt-sign .gt-sign-hero,
	html.gt-sign .gt-logo-word {
		animation: gt-sign-in 1.8s cubic-bezier(0.62, 0.03, 0.4, 1) 0.3s both !important;
	}

	/* a hopping bubble is exactly the kind of loop this setting asks to stop */
	.gt-bot:not(.is-open) .gt-bot-toggle,
	.gt-bot:not(.is-open) .gt-bot-dot,
	.gt-bot-panel,
	.gt-bot-msg {
		animation: none !important;
	}

	/* the check must still read as a check when animation is off */
	.gt-check circle,
	.gt-check path {
		stroke-dashoffset: 0 !important;
		animation: none !important;
	}
}
