/* Spyder Journey — cinematic dark / light travel theme */

:root {
	--bg: #07090c;
	--bg-2: #10141a;
	--bg-3: #171d25;
	--ink: #f3efe6;
	--muted: #a8b0b8;
	--line: rgba(243, 239, 230, 0.1);
	--gold: #c4a574;
	--gold-2: #e2c9a0;
	--sage: #7d9a82;
	--pearl: #ece7dc;
	--shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
	--radius: 22px;
	--header: 150px;
/* 	--header: 84px; */
	--font: "Outfit", system-ui, sans-serif;
	--serif: "Playfair Display", Georgia, serif;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="light"] {
	--bg: #f4f0e6;
	--bg-2: #fffdf8;
	--bg-3: #ebe6d8;
	--ink: #14181d;
	--muted: #5c6570;
	--line: rgba(20, 24, 29, 0.1);
	--gold: #8d6a32;
	--gold-2: #6b4e22;
	--sage: #3f5d46;
	--pearl: #1b1f24;
	--shadow: 0 24px 60px rgba(40, 32, 18, 0.12);
}

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

html {
	scroll-behavior: smooth;
}

html,
body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font);
	font-weight: 400;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

[data-theme="light"] .sj-header.is-scrolled {
	background: rgba(255, 250, 242, 0.92);
}

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

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

button,
input,
textarea {
	font-family: inherit;
}

.sj-wrap {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

.sj-kicker {
	margin: 0 0 12px;
	color: var(--gold);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.sj-h2 {
	margin: 0 0 18px;
	font-family: var(--serif);
	font-size: clamp(2.2rem, 4.6vw, 4.1rem);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.02em;
}

.sj-lead {
	font-size: 1.12rem;
	color: var(--pearl);
}

.sj-section-head {
	max-width: 720px;
	margin: 0 auto 64px;
	text-align: center;
}

.sj-section-head__text,
.sj-intro__copy p,
.sj-about__copy p,
.sj-timeline p {
	color: var(--muted);
}

.sj-section-head--light .sj-section-head__text {
	color: rgba(243, 239, 230, 0.78);
}

.sj-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 26px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-size: 0.86rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: transform 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
}

.sj-btn:hover {
	transform: translateY(-2px);
}

.sj-btn--gold {
	background: var(--gold);
	color: #120e09;
}

.sj-btn--ghost {
	border-color: rgba(243, 239, 230, 0.35);
	color: #f3efe6;
	background: transparent;
}

.sj-hero .sj-btn--ghost {
	border-color: rgba(243, 239, 230, 0.4);
	color: #f3efe6;
}

/* Loader */
.sj-loader {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: grid;
	place-items: center;
	background:
		radial-gradient(ellipse at 50% 20%, rgba(196, 165, 116, 0.16), transparent 46%),
		#05070a;
	color: #f3efe6;
	transition: opacity 0.8s var(--ease), visibility 0.8s;
}

.sj-loader.is-done {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.sj-loader__inner {
	text-align: center;
	width: min(420px, 86vw);
}

.sj-loader__mark {
	width: 120px;
	margin: 0 auto 22px;
	color: var(--gold);
	animation: sj-float 2.4s ease-in-out infinite;
}

.sj-loader__title {
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(2.4rem, 6vw, 3.6rem);
	font-weight: 500;
	letter-spacing: 0.02em;
}

.sj-loader__kicker,
.sj-loader__note {
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-size: 0.68rem;
	color: rgba(243, 239, 230, 0.62);
}

.sj-loader__bar {
	height: 2px;
	margin: 28px 0 18px;
	background: rgba(243, 239, 230, 0.12);
	overflow: hidden;
}

.sj-loader__bar-fill {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--gold), #fff);
	animation: sj-load 1.8s var(--ease) forwards;
}

@keyframes sj-load {
	to { width: 100%; }
}

@keyframes sj-float {
	50% { transform: translateY(-8px); }
}

/* Header */
.sj-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: var(--header);
	transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
	border-bottom: 1px solid transparent;
}

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

@media screen and (max-width: 782px) {
	.admin-bar .sj-header {
		top: 46px;
	}
}

.sj-header {
	background: color-mix(in srgb, var(--bg) 82%, transparent);
	backdrop-filter: blur(18px);
	border-bottom-color: var(--line);
}

/* .sj-header.is-scrolled {
	background: color-mix(in srgb, var(--bg) 82%, transparent);
	backdrop-filter: blur(18px);
	border-bottom-color: var(--line);
}
 */
.sj-header__inner {
	width: min(1280px, calc(100% - 32px));
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.sj-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #f3efe6;
}



.sj-header.is-scrolled .sj-logo,
.sj-nav a {
	color: var(--ink);
}

.sj-header:not(.is-scrolled) .sj-logo,
.sj-header:not(.is-scrolled) .sj-nav a,
.sj-header:not(.is-scrolled) .sj-theme-toggle,
.sj-header:not(.is-scrolled) .sj-burger {
	color: #f3efe6;
}

.sj-logo__icon {
	width: 46px;
	height: 24px;
	color: var(--gold);
}

.sj-logo__text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.sj-logo__word {
	font-family: var(--serif);
	font-size: 1.15rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sj-logo__word--soft {
	font-size: 0.62rem;
	letter-spacing: 0.34em;
	opacity: 0.7;
}

.sj-nav__list {
	display: flex;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sj-nav a {
	display: block;
	padding: 8px 12px;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.78;
	position: relative;
}

.sj-nav a:hover,
.sj-nav a.is-active {
	opacity: 1;
}

.sj-nav a.is-active::after {
	content: "";
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 2px;
	height: 1px;
	background: var(--gold);
}

.sj-header__actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.sj-theme-toggle,
.sj-burger {
	width: 44px;
	height: 44px;
	border: 1px solid rgba(243, 239, 230, 0.18);
	background: transparent;
	color: inherit;
	border-radius: 50%;
	cursor: pointer;
	display: grid;
	place-items: center;
}

.sj-header.is-scrolled .sj-theme-toggle,
.sj-header.is-scrolled .sj-burger {
	border-color: var(--line);
}

.sj-theme-toggle svg,
.sj-logo__icon svg,
.sj-loader__mark svg {
	width: 100%;
	height: 100%;
}

.sj-theme-toggle svg {
	width: 18px;
	height: 18px;
}

[data-theme="dark"] .sj-theme-toggle__sun,
[data-theme="light"] .sj-theme-toggle__moon {
	display: none;
}

.sj-burger {
	display: none;
}

.sj-burger span {
	display: block;
	width: 16px;
	height: 1.5px;
	margin: 3px auto;
	background: currentColor;
	transition: 0.3s;
}

.sj-burger.is-open span:nth-child(1) {
	transform: translateY(4.5px) rotate(45deg);
}

.sj-burger.is-open span:nth-child(2) {
	opacity: 0;
}

.sj-burger.is-open span:nth-child(3) {
	transform: translateY(-4.5px) rotate(-45deg);
}

/* Hero */
.sj-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	overflow: hidden;
	color: #f3efe6;
}

.sj-hero__slides {
	position: absolute;
	inset: 0;
}

.sj-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	overflow: hidden;
	transition: opacity 1.15s ease;
}

.sj-hero__slide.is-active {
	opacity: 1;
	z-index: 1;
}

.sj-hero__slide img,
.sj-hero__slide video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sj-hero__slide img {
	transform: scale(1.08);
	animation: sj-ken 14s ease-out forwards;
}

.sj-hero__slide.is-active img {
	animation: sj-ken 14s ease-out forwards;
}

.sj-hero__slide video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	background: #07090c;
}

@keyframes sj-ken {
	from { transform: scale(1.12); }
	to { transform: scale(1); }
}

.sj-hero__veil {
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(180deg, rgba(5, 7, 10, 0.55) 0%, rgba(5, 7, 10, 0.38) 36%, rgba(5, 7, 10, 0.78) 100%),
		linear-gradient(90deg, rgba(5, 7, 10, 0.62) 0%, rgba(5, 7, 10, 0.28) 52%, transparent 78%);
	pointer-events: none;
}

.sj-hero__copy {
	position: relative;
	z-index: 3;
	width: min(860px, calc(100% - 48px));
	margin: 0 auto;
	padding: 26vh 0 0;
	transition: opacity 0.5s;
}

.sj-hero__title {
	margin: 0 0 18px;
	font-family: var(--serif);
	font-size: clamp(2.8rem, 7vw, 5.8rem);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: -0.02em;
	color: #f7f1e6;
	text-shadow: 0 2px 22px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.4);
}

.sj-hero__text {
	max-width: 540px;
	margin: 0 0 32px;
	font-size: 1.08rem;
	color: rgba(247, 241, 230, 0.92);
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.sj-hero .sj-kicker {
	color: #e2c9a0;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.sj-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.sj-hero__nav {
	position: absolute;
	z-index: 4;
	right: 28px;
	bottom: 40px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sj-hero__nav button {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(243, 239, 230, 0.32);
	cursor: pointer;
}

.sj-hero__nav button.is-active {
	background: var(--gold);
	transform: scale(1.25);
}

.sj-hero__scroll {
	position: absolute;
	z-index: 4;
	left: 28px;
	bottom: 32px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.7rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(243, 239, 230, 0.8);
}

.sj-hero__scroll i {
	display: block;
	width: 1px;
	height: 46px;
	background: linear-gradient(#c4a574, transparent);
	animation: sj-pulse 1.6s ease-in-out infinite;
}

@keyframes sj-pulse {
	50% { opacity: 0.25; transform: translateY(6px); }
}

/* Intro */
.sj-intro {
	padding: 120px 0;
}

.sj-intro__grid,
.sj-about__grid,
.sj-follow__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 72px;
	align-items: center;
}

.sj-follow__grid {
	align-items: start;
}

.sj-frame,
.sj-portrait {
	margin: 0;
	position: relative;
}

.sj-frame img,
.sj-portrait img {
	width: 100%;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	object-fit: cover;
	aspect-ratio: 16 / 11;
}

.sj-frame::before,
.sj-portrait::before {
	content: "";
	position: absolute;
	inset: 18px -16px -16px 18px;
	border: 1px solid var(--gold);
	border-radius: var(--radius);
	opacity: 0.45;
	z-index: -1;
}

.sj-frame figcaption,
.sj-portrait figcaption {
	margin-top: 14px;
	margin-left: 26px;
	font-size: 0.82rem;
	color: var(--muted);
	letter-spacing: 0.04em;
}

.sj-pills {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 8px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.sj-pills li {
	padding: 8px 14px;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gold);
	white-space: nowrap;
	flex: 0 1 auto;
}

/* Parallax */
.sj-parallax {
	position: relative;
	min-height: 72vh;
	display: grid;
	place-items: center;
	overflow: hidden;
	color: #f3efe6;
}

.sj-parallax__bg {
	position: absolute;
	inset: -12%;
}

.sj-parallax__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	will-change: transform;
}

.sj-parallax::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(5, 7, 10, 0.48);
}

.sj-parallax__content {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 80px 24px;
}

.sj-parallax blockquote {
	margin: 0 auto 18px;
	max-width: 900px;
	font-family: var(--serif);
	font-size: clamp(2rem, 5vw, 3.6rem);
	font-style: italic;
	font-weight: 500;
	line-height: 1.2;
}

.sj-parallax__sign {
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-size: 0.72rem;
	opacity: 0.75;
}

/* Journey */
.sj-journey {
	padding: 120px 0;
	background:
		radial-gradient(ellipse at 10% 0%, rgba(196, 165, 116, 0.08), transparent 42%),
		var(--bg);
}

.sj-timeline {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 42px;
}

.sj-timeline__stamp {
	font-family: var(--serif);
	font-size: 1.4rem;
	color: var(--gold);
	margin-bottom: 12px;
}

.sj-timeline__card {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 28px;
	padding: 18px;
	background: var(--bg-2);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.sj-timeline__card--flip {
	grid-template-columns: 1.1fr 0.9fr;
}

.sj-timeline__card--flip img {
	order: 2;
}

.sj-timeline__card img {
	width: 100%;
	height: 100%;
	min-height: 260px;
	object-fit: cover;
	border-radius: 16px;
}

.sj-timeline h3 {
	margin: 0 0 10px;
	font-family: var(--serif);
	font-size: 2rem;
	font-weight: 500;
}

/* Gallery */
.sj-gallery {
	padding: 40px 0 100px;
}

.sj-gallery__mosaic {
	width: min(1280px, calc(100% - 24px));
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: 92px;
	gap: 12px;
}

.sj-g1 { grid-column: span 8; grid-row: span 5; }
.sj-g2 { grid-column: span 4; grid-row: span 5; }
.sj-g3 { grid-column: span 4; grid-row: span 4; }
.sj-g4 { grid-column: span 4; grid-row: span 4; }
.sj-g5 { grid-column: span 4; grid-row: span 8; }
.sj-g6 { grid-column: span 5; grid-row: span 4; }
.sj-g7 { grid-column: span 3; grid-row: span 4; }
.sj-g8 { grid-column: span 12; grid-row: span 4; }
.sj-g9 { grid-column: span 6; grid-row: span 4; }
.sj-g10 { grid-column: span 6; grid-row: span 4; }

.sj-gallery__item {
	margin: 0;
	position: relative;
	overflow: hidden;
	border-radius: 18px;
}

.sj-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.9s var(--ease);
}

.sj-gallery__item:hover img {
	transform: scale(1.08);
}

.sj-gallery__item figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 16px 18px;
	background: linear-gradient(transparent, rgba(5, 7, 10, 0.78));
	color: #f3efe6;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}


.sj-gallery__credit {
	width: min(1180px, calc(100% - 40px));
	margin: 22px auto 0;
	font-size: 0.78rem;
	color: var(--muted);
	text-align: center;
}

/* About */
.sj-about {
	padding: 80px 0 120px;
	background: var(--bg-2);
}

.sj-portrait img {
	aspect-ratio: 3 / 4;
	max-height: 520px;
	object-position: center top;
}

.sj-portrait--ride {
	margin-top: 18px;
}

.sj-portrait--ride img {
	aspect-ratio: 16 / 11;
	max-height: 340px;
	object-position: center;
}

.sj-portrait--ride::before {
	inset: 12px -12px -12px 12px;
}

.sj-about__facts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 32px;
}

.sj-about__facts div {
	padding: 16px 0 0;
	border-top: 1px solid var(--line);
}

.sj-about__facts span {
	display: block;
	font-size: 0.7rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 6px;
}

.sj-about__facts strong {
	font-family: var(--serif);
	font-size: 1.25rem;
	font-weight: 500;
}

/* Community */
.sj-community {
	position: relative;
	padding: 120px 0;
	color: #f3efe6;
	overflow: hidden;
}

.sj-community__bg {
	position: absolute;
	inset: 0;
}

.sj-community__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.38) saturate(0.9);
}

.sj-community .sj-wrap {
	position: relative;
	z-index: 1;
}

.sj-community__cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.sj-community__cards article {
	padding: 28px 24px;
	background: rgba(7, 9, 12, 0.55);
	border: 1px solid rgba(243, 239, 230, 0.12);
	border-radius: 18px;
	backdrop-filter: blur(10px);
}

.sj-community__place {
	margin: 0 0 18px;
	color: var(--gold);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-size: 0.7rem;
}

.sj-community h3 {
	margin: 0 0 10px;
	font-family: var(--serif);
	font-size: 1.8rem;
	font-weight: 500;
}

.sj-community p:last-child {
	margin: 0;
	color: rgba(243, 239, 230, 0.78);
}

/* Follow */
.sj-follow {
	padding: 120px 0;
}

.sj-follow__list {
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.sj-follow__list li {
	padding: 10px 0 10px 22px;
	position: relative;
	color: var(--muted);
}

.sj-follow__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 18px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
}

.sj-follow .wpcf7 {
	margin: 0;
}

.sj-form {
	display: grid;
	gap: 14px;
	padding: 24px;
	background: var(--bg-2);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	align-content: start;
}

.sj-form fieldset {
	margin: 0;
	padding: 0;
	border: 0;
	min-inline-size: 0;
}

.sj-form p {
	margin: 0;
	display: grid;
	gap: 8px;
}

.sj-form br {
	display: none;
}

.sj-form label {
	display: grid;
	gap: 8px;
	margin: 0;
}

.sj-form label span {
	display: block;
	margin: 0;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
	line-height: 1.2;
}

.sj-form input:not([type="submit"]):not([type="hidden"]),
.sj-form textarea {
	width: 100%;
	margin: 0;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid var(--line);
	background: var(--bg);
	color: var(--ink);
	outline: none;
	box-sizing: border-box;
}

.sj-form textarea {
	min-height: 110px;
	resize: vertical;
}

.sj-form input:not([type="submit"]):focus,
.sj-form textarea:focus {
	border-color: var(--gold);
}

.sj-form .wpcf7-form-control-wrap {
	display: block;
	margin: 0;
}

.sj-form .wpcf7-submit.sj-btn {
	width: auto;
	max-width: max-content;
	margin: 4px 0 0;
	cursor: pointer;
	appearance: none;
	background: var(--gold);
	color: #120e09;
	border: 1px solid transparent;
}

.sj-form .wpcf7-not-valid-tip {
	display: block;
	margin: 0;
	font-size: 0.78rem;
	color: #c45c4a;
}

.wpcf7 form.sj-form .wpcf7-response-output {
	margin: 0;
	padding: 10px 12px;
	border-radius: 12px;
	border-width: 1px;
	font-size: 0.88rem;
}

.wpcf7-spinner {
	margin-left: 10px;
}

.sj-form__ok {
	margin: 0;
	color: var(--sage);
}

/* Footer */
.sj-footer {
	border-top: 1px solid var(--line);
	padding-top: 64px;
	background: var(--bg-2);
}

.sj-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 48px;
}

.sj-footer__title {
	margin: 0 0 12px;
	font-family: var(--serif);
	font-size: 2.2rem;
}

.sj-footer__blurb,
.sj-footer__links {
	color: var(--muted);
}

.sj-footer__head {
	margin: 8px 0 16px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-size: 0.72rem;
	color: var(--gold);
}

.sj-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}


.sj-fallback {
	padding: 140px 0 80px;
}

.reveal {
	opacity: 0;
	transform: translateY(36px);
	transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

@media (max-width: 1200px) {
	.sj-wrap {
		width: min(1180px, calc(100% - 32px));
	}

	.sj-nav {
		position: fixed;
		inset: var(--header) 16px auto;
		padding: 18px;
		background: var(--bg-2);
		border: 1px solid var(--line);
		border-radius: 18px;
		transform: translateY(-12px);
		opacity: 0;
		pointer-events: none;
		transition: 0.3s var(--ease);
		box-shadow: var(--shadow);
	}

	.sj-nav.is-open {
		opacity: 1;
		transform: none;
		pointer-events: auto;
	}

	.sj-nav__list {
		flex-direction: column;
	}

	.sj-burger {
		display: grid;
	}

	.sj-header:not(.is-scrolled) .sj-nav a {
		color: var(--ink);
	}

	.sj-hero {
		min-height: 100svh;
	}

	.sj-hero__slide video {
		object-position: 50% 42%;
	}

	.sj-hero__copy {
		width: min(680px, calc(100% - 40px));
		padding: 18vh 0 140px;
	}

	.sj-hero__title {
		font-size: clamp(2.15rem, 5.6vw, 3.6rem);
	}

	.sj-hero__text {
		font-size: 1rem;
		max-width: 46ch;
	}

	.sj-pills {
		flex-wrap: nowrap;
		gap: 6px;
	}

	.sj-pills li {
		padding: 6px 10px;
		font-size: 0.62rem;
		letter-spacing: 0.05em;
	}

	.sj-community__cards {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}

	.sj-gallery__mosaic {
		width: min(1280px, calc(100% - 24px));
		grid-template-columns: 1fr 1fr;
		grid-auto-rows: 210px;
		gap: 10px;
	}

	.sj-g1, .sj-g2, .sj-g3, .sj-g4, .sj-g5, .sj-g6, .sj-g7, .sj-g8, .sj-g9, .sj-g10 {
		grid-column: span 1;
		grid-row: span 1;
	}

	.sj-g1,
	.sj-g8 {
		grid-column: span 2;
	}

	.sj-g5 {
		grid-row: span 2;
	}

	.sj-intro,
	.sj-journey,
	.sj-follow,
	.sj-community {
		padding: 88px 0;
	}

	.sj-section-head {
		margin-bottom: 40px;
	}
}

@media (max-width: 1200px) and (max-height: 900px) {
	.sj-hero__copy {
		padding-top: 16vh;
		padding-bottom: 110px;
	}

	.sj-hero__title {
		font-size: clamp(1.9rem, 4.8vw, 3.1rem);
		margin-bottom: 12px;
	}

	.sj-hero__text {
		margin-bottom: 22px;
	}

	.sj-hero__scroll span {
		display: none;
	}

	.sj-hero__scroll {
		left: 20px;
		bottom: 24px;
	}

	.sj-hero__nav {
		bottom: 28px;
		right: 20px;
	}
}

@media (max-width: 820px) {
	.sj-intro__grid,
	.sj-about__grid,
	.sj-follow__grid,
	.sj-timeline__card,
	.sj-timeline__card--flip,
	.sj-footer__grid {
		grid-template-columns: 1fr;
	}

	.sj-timeline__card--flip img {
		order: 0;
	}

	.sj-hero__copy {
		padding-top: 22vh;
	}

	.sj-hero__cta {
		flex-direction: column;
		align-items: flex-start;
	}

	.sj-about__facts {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.sj-gallery__mosaic {
		grid-auto-rows: 190px;
	}

	.sj-pills {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.sj-pills::-webkit-scrollbar {
		display: none;
	}
}

@media (max-width: 640px) {
	.sj-wrap {
		width: calc(100% - 28px);
	}

	.sj-intro,
	.sj-journey,
	.sj-gallery,
	.sj-about,
	.sj-follow,
	.sj-community {
		padding: 64px 0;
	}

	.sj-community__cards,
	.sj-about__facts {
		grid-template-columns: 1fr;
	}

	.sj-gallery__mosaic {
		grid-template-columns: 1fr;
		grid-auto-rows: 220px;
	}

	.sj-g1, .sj-g2, .sj-g3, .sj-g4, .sj-g5, .sj-g6, .sj-g7, .sj-g8, .sj-g9, .sj-g10 {
		grid-column: span 1;
		grid-row: span 1;
	}

	.sj-pills {
		flex-wrap: wrap;
	}

	.sj-hero__nav {
		flex-direction: row;
		right: 50%;
		transform: translateX(50%);
		bottom: 88px;
	}

	.sj-hero__cta .sj-btn {
		width: 100%;
	}

	.sj-hero__cta {
		width: min(320px, 100%);
	}

	.sj-footer__bar-inner {
		flex-direction: column;
	}

	.sj-h2 {
		font-size: clamp(1.8rem, 8vw, 2.4rem);
	}
}
