/* ==========================================================================
   SMKN 1 Samarinda — Main Stylesheet
   Dominant: Kuning / Amber, modern & elegant
   ========================================================================== */

:root {
	--gold: #f5c518;
	--gold-2: #eab308;
	--gold-soft: #fde68a;
	--amber: #f59e0b;
	--amber-deep: #d97706;
	--amber-deeper: #b45309;
	--ink: #221a0e;
	--ink-2: #3a2e18;
	--ink-3: #574a30;
	--muted: #7d6f52;
	--cream: #fffbeb;
	--paper: #fffdf7;
	--line: #f0e4c6;
	--line-2: #e7d9b6;
	--white: #ffffff;
	--shadow-sm: 0 4px 16px rgba(120, 84, 10, 0.08);
	--shadow-md: 0 14px 34px rgba(120, 84, 10, 0.12);
	--shadow-lg: 0 28px 60px rgba(120, 84, 10, 0.18);
	--radius: 18px;
	--radius-lg: 26px;
	--font-sans: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-sans);
	color: var(--ink);
	background: var(--paper);
	line-height: 1.7;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--amber-deep);
	text-decoration: none;
	transition: color 0.25s ease;
}

a:hover {
	color: var(--amber-deeper);
}

ul {
	list-style: none;
}

h1, h2, h3, h4, h5 {
	line-height: 1.25;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--ink);
}

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

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

::-webkit-scrollbar-track {
	background: var(--cream);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(var(--gold), var(--amber));
	border-radius: 8px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 22px;
	padding-right: 22px;
}

/* ---------- Utilities ---------- */
.section {
	padding: 84px 0;
	position: relative;
}

.section-alt {
	background: linear-gradient(180deg, var(--cream), #fffdf2 55%, var(--cream));
}

.section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--amber-deep);
	background: rgba(245, 197, 24, 0.16);
	border: 1px solid rgba(245, 197, 24, 0.4);
	padding: 7px 16px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.section-title {
	font-size: clamp(1.7rem, 3.4vw, 2.6rem);
	margin-bottom: 14px;
}

.section-sub {
	color: var(--muted);
	font-size: 1rem;
	max-width: 640px;
}

.section-head {
	text-align: center;
	margin-bottom: 52px;
}

.section-head .section-sub {
	margin: 0 auto;
}

.section-foot {
	text-align: center;
	margin-top: 48px;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: 800;
	font-size: 0.92rem;
	padding: 14px 26px;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
	line-height: 1;
}

.btn svg {
	width: 18px;
	height: 18px;
	transition: transform 0.25s ease;
}

.btn:hover svg {
	transform: translateX(4px);
}

.btn-lg {
	padding: 18px 34px;
	font-size: 1rem;
}

.btn-sm {
	padding: 11px 20px;
	font-size: 0.85rem;
}

.btn-gold {
	background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
	color: var(--ink);
	border-color: rgba(255, 255, 255, 0.35);
	box-shadow: 0 10px 26px rgba(245, 158, 11, 0.35);
}

.btn-gold:hover {
	color: var(--ink);
	transform: translateY(-3px);
	box-shadow: 0 16px 34px rgba(245, 158, 11, 0.45);
}

.btn-dark {
	background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
	color: var(--gold);
	border-color: var(--ink-2);
}

.btn-dark:hover {
	color: var(--gold-soft);
	transform: translateY(-3px);
	box-shadow: 0 16px 34px rgba(34, 26, 14, 0.3);
}

.btn-ghost {
	background: rgba(255, 255, 255, 0.92);
	color: var(--ink);
	border-color: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(8px);
}

.btn-ghost:hover {
	color: var(--amber-deep);
	transform: translateY(-3px);
	background: #fff;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 800;
	font-size: 0.88rem;
	color: var(--amber-deep);
}

.text-link svg {
	width: 16px;
	height: 16px;
	transition: transform 0.25s ease;
}

.text-link:hover {
	color: var(--amber-deeper);
}

.text-link:hover svg {
	transform: translateX(4px);
}

.check-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 11px;
	color: var(--ink-3);
	font-weight: 500;
}

.check-list svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: var(--amber);
	margin-top: 3px;
}

/* ---------- Reveal animation ---------- */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar {
	background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
	color: var(--gold-soft);
	font-size: 0.82rem;
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 42px;
	padding-top: 6px;
	padding-bottom: 6px;
}

.topbar-left {
	display: flex;
	align-items: center;
}

.clock-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	color: #f7f3e7;
}

.clock-badge .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
	animation: pulseDot 1.6s ease-in-out infinite;
}

.clock-badge .clock-sep {
	color: var(--amber);
	opacity: 0.7;
}

.clock-badge .clock-date {
	color: rgba(247, 243, 231, 0.7);
	font-weight: 500;
}

.topbar-right {
	display: flex;
	align-items: center;
	gap: 22px;
}

.topbar-right a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--gold-soft);
	font-weight: 600;
	transition: color 0.2s ease;
}

.topbar-right a:hover {
	color: var(--gold);
}

.topbar-right svg {
	width: 14px;
	height: 14px;
}

@keyframes pulseDot {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.45; transform: scale(0.85); }
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(255, 253, 247, 0.85);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--line);
	transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar.is-scrolled {
	box-shadow: 0 10px 30px rgba(120, 84, 10, 0.12);
	background: rgba(255, 253, 247, 0.96);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 78px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.brand-logo {
	width: 54px;
	height: 54px;
	object-fit: contain;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--gold);
	box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
	padding: 2px;
}

.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.brand-name {
	font-size: 1.02rem;
	letter-spacing: -0.01em;
	color: var(--ink);
}

.brand-tag {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--amber-deep);
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 18px;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 2px;
}

.nav-list > li {
	position: relative;
}

.nav-list a {
	display: block;
	padding: 10px 15px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--ink-3);
	transition: color 0.2s ease, background 0.2s ease;
}

.nav-list a:hover,
.nav-list li.current-menu-item > a,
.nav-list li.current_page_item > a {
	color: var(--amber-deeper);
	background: rgba(245, 197, 24, 0.18);
}

.nav-list .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: var(--shadow-md);
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.25s ease;
	z-index: 50;
}

.nav-list li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-list .sub-menu a {
	border-radius: 10px;
	padding: 10px 14px;
}

.nav-cta {
	flex-shrink: 0;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 2px solid var(--line-2);
	border-radius: 12px;
	cursor: pointer;
}

.nav-toggle span {
	width: 20px;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

.hero-slides,
.hero-slide {
	position: absolute;
	inset: 0;
}

.hero-slide {
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1.05);
	transition: opacity 1.6s ease, transform 6s ease;
}

.hero-slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 50% 30%, rgba(34, 26, 14, 0.35) 0%, rgba(34, 26, 14, 0.78) 100%),
		linear-gradient(180deg, rgba(34, 26, 14, 0.45) 0%, rgba(34, 26, 14, 0.55) 100%);
}

.hero-inner {
	position: relative;
	z-index: 5;
	padding-top: 70px;
	padding-bottom: 90px;
}

.hero-logo {
	position: relative;
	width: 140px;
	height: 140px;
	margin: 0 auto 26px;
	animation: floatY 6s ease-in-out infinite;
}

.hero-logo-glow {
	position: absolute;
	inset: -24px;
	border-radius: 50%;
	background: rgba(245, 197, 24, 0.35);
	filter: blur(40px);
}

.hero-logo img {
	position: relative;
	width: 140px;
	height: 140px;
	object-fit: contain;
	border-radius: 50%;
	background: #fff;
	border: 4px solid var(--gold);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #fff6d8;
	background: rgba(245, 197, 24, 0.18);
	border: 1px solid rgba(245, 197, 24, 0.5);
	padding: 9px 20px;
	border-radius: 999px;
	backdrop-filter: blur(6px);
	margin-bottom: 20px;
}

.hero-badge svg {
	width: 16px;
	height: 16px;
	color: var(--gold);
}

.hero-kicker {
	font-size: clamp(0.9rem, 2vw, 1.1rem);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold-soft);
	margin-bottom: 10px;
}

.hero-title {
	font-size: clamp(2.4rem, 7vw, 5rem);
	letter-spacing: -0.03em;
	text-transform: uppercase;
	background: linear-gradient(120deg, #ffffff 20%, var(--gold) 55%, #ffd166 85%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 18px;
	text-shadow: 0 6px 40px rgba(0, 0, 0, 0.2);
}

.hero-sub {
	color: rgba(255, 251, 235, 0.9);
	font-size: clamp(0.98rem, 2.2vw, 1.15rem);
	font-weight: 500;
	max-width: 660px;
	margin: 0 auto 34px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}

.hero-scroll {
	position: absolute;
	bottom: 26px;
	left: 50%;
	transform: translateX(-50%);
	width: 26px;
	height: 44px;
	border: 2px solid rgba(255, 251, 235, 0.5);
	border-radius: 999px;
}

.hero-scroll span {
	position: absolute;
	top: 8px;
	left: 50%;
	width: 4px;
	height: 10px;
	margin-left: -2px;
	background: var(--gold);
	border-radius: 4px;
	animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes floatY {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}

@keyframes scrollDown {
	0% { opacity: 1; transform: translateY(0); }
	70% { opacity: 0; transform: translateY(16px); }
	100% { opacity: 0; }
}

/* ==========================================================================
   TICKER
   ========================================================================== */
.ticker {
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
	border-bottom: 3px solid var(--amber-deep);
}

.ticker-label {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	background: var(--ink);
	color: var(--gold);
	font-weight: 800;
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 12px 22px;
}

.ticker-label svg {
	width: 16px;
	height: 16px;
}

.ticker-track {
	flex: 1;
	overflow: hidden;
}

.ticker-content {
	display: inline-flex;
	white-space: nowrap;
	animation: tickerMove 30s linear infinite;
}

.ticker-item {
	display: inline-block;
	padding: 0 30px;
	font-size: 0.86rem;
	font-weight: 700;
	color: var(--ink);
}

@keyframes tickerMove {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ==========================================================================
   STATS
   ========================================================================== */
.section-stats {
	padding: 46px 0;
	margin-top: -64px;
	position: relative;
	z-index: 20;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.stat-card {
	background: #fff;
	border: 1px solid var(--line);
	border-top: 4px solid var(--gold);
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	text-align: center;
	padding: 28px 18px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.stat-icon {
	display: inline-flex;
	width: 54px;
	height: 54px;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: rgba(245, 197, 24, 0.18);
	color: var(--amber-deep);
	margin-bottom: 14px;
}

.stat-icon svg {
	width: 26px;
	height: 26px;
}

.stat-num {
	display: block;
	font-size: 2.3rem;
	font-weight: 800;
	color: var(--ink);
	letter-spacing: -0.02em;
}

.stat-label {
	display: block;
	margin-top: 4px;
	color: var(--muted);
	font-weight: 600;
	font-size: 0.85rem;
}

/* ==========================================================================
   WELCOME
   ========================================================================== */
.welcome-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.welcome-frame {
	position: relative;
	border-radius: var(--radius-lg);
	padding: 10px;
}

.welcome-frame::before {
	content: '';
	position: absolute;
	inset: 18px -14px -14px 18px;
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, var(--gold), var(--amber));
	z-index: 0;
}

.welcome-frame img {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius-lg);
	border: 8px solid #fff;
	box-shadow: var(--shadow-lg);
}

.welcome-badge {
	position: absolute;
	z-index: 3;
	bottom: 26px;
	right: -6px;
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border-radius: 18px;
	padding: 14px 20px;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--line);
}

.welcome-badge svg {
	width: 34px;
	height: 34px;
	color: var(--amber-deep);
}

.welcome-badge strong {
	display: block;
	font-size: 0.92rem;
}

.welcome-badge small {
	color: var(--muted);
	font-size: 0.76rem;
	font-weight: 600;
}

.welcome-content .btn {
	margin-top: 20px;
}

.section-lead {
	color: var(--muted);
	margin-bottom: 22px;
	font-size: 1.02rem;
}

/* ==========================================================================
   JURUSAN
   ========================================================================== */
.jurusan-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.jurusan-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px;
	box-shadow: var(--shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	display: flex;
	flex-direction: column;
}

.jurusan-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-color: var(--gold);
}

.jurusan-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}

.jurusan-icon {
	display: inline-flex;
	width: 58px;
	height: 58px;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	color: #fff;
	box-shadow: var(--shadow-sm);
}

.jurusan-icon svg {
	width: 28px;
	height: 28px;
}

.jurusan-kode {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	background: var(--cream);
	border: 1px solid var(--line-2);
	color: var(--amber-deeper);
	padding: 6px 12px;
	border-radius: 999px;
}

.jurusan-name {
	font-size: 1.15rem;
	margin-bottom: 8px;
}

.jurusan-label {
	display: inline-block;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--amber-deep);
	margin-bottom: 12px;
}

.jurusan-desc {
	color: var(--muted);
	font-size: 0.92rem;
	margin-bottom: 18px;
	flex: 1;
}

/* tone variants */
.tone-rose .jurusan-icon,
.tone-rose .tefa-icon,
.tone-rose .vm-icon {
	background: linear-gradient(135deg, #fb7185, #e11d48);
}

.tone-sky .jurusan-icon,
.tone-sky .tefa-icon,
.tone-sky .vm-icon {
	background: linear-gradient(135deg, #38bdf8, #0284c7);
}

.tone-emerald .jurusan-icon,
.tone-emerald .tefa-icon,
.tone-emerald .vm-icon {
	background: linear-gradient(135deg, #34d399, #059669);
}

.tone-amber .jurusan-icon,
.tone-amber .tefa-icon,
.tone-amber .vm-icon {
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.tone-violet .jurusan-icon,
.tone-violet .tefa-icon,
.tone-violet .vm-icon {
	background: linear-gradient(135deg, #a78bfa, #7c3aed);
}

.tone-gold .jurusan-icon,
.tone-gold .tefa-icon,
.tone-gold .vm-icon {
	background: linear-gradient(135deg, #fde68a, #d97706);
}

/* ==========================================================================
   TEFA
   ========================================================================== */
.section-tefa {
	background: linear-gradient(160deg, var(--ink) 0%, #2c2213 100%);
	color: var(--cream);
}

.section-tefa .section-title {
	color: #fff;
}

.section-tefa .section-sub {
	color: rgba(255, 251, 235, 0.72);
}

.tefa-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 46px;
}

.tefa-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.tefa-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(245, 197, 24, 0.22);
	border-radius: var(--radius-lg);
	padding: 28px;
	backdrop-filter: blur(8px);
	transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
	display: flex;
	flex-direction: column;
}

.tefa-card:hover {
	transform: translateY(-8px);
	border-color: rgba(245, 197, 24, 0.6);
	background: rgba(255, 255, 255, 0.09);
}

.tefa-card-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
}

.tefa-icon {
	display: inline-flex;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	color: #fff;
}

.tefa-icon svg {
	width: 26px;
	height: 26px;
}

.tefa-kode {
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: var(--gold);
	background: rgba(245, 197, 24, 0.14);
	border: 1px solid rgba(245, 197, 24, 0.35);
	padding: 6px 12px;
	border-radius: 999px;
}

.tefa-title {
	color: #fff;
	font-size: 1.1rem;
	margin-bottom: 16px;
}

.tefa-list {
	margin-bottom: 20px;
	flex: 1;
}

.tefa-list li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	padding: 7px 0;
	color: rgba(255, 251, 235, 0.82);
	font-size: 0.9rem;
	font-weight: 500;
	border-bottom: 1px dashed rgba(245, 197, 24, 0.16);
}

.tefa-list svg {
	width: 17px;
	height: 17px;
	flex-shrink: 0;
	color: var(--gold);
	margin-top: 4px;
}

.section-tefa .text-link {
	color: var(--gold);
}

.section-tefa .text-link:hover {
	color: var(--gold-soft);
}

.tefa-intro {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	background: linear-gradient(135deg, var(--cream), #fff6dc);
	border: 1px solid var(--gold);
	border-radius: var(--radius-lg);
	padding: 34px;
	margin-bottom: 40px;
	box-shadow: var(--shadow-sm);
}

.tefa-intro-icon {
	display: inline-flex;
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--gold), var(--amber));
	color: var(--ink);
	box-shadow: var(--shadow-md);
}

.tefa-intro-icon svg {
	width: 32px;
	height: 32px;
}

.tefa-intro p {
	color: var(--ink-3);
}

/* ==========================================================================
   GALERI
   ========================================================================== */
.galeri-preview-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.galeri-full-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.galeri-item {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	cursor: zoom-in;
}

.galeri-item img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.galeri-item:hover img {
	transform: scale(1.08);
}

.galeri-item figcaption {
	position: absolute;
	inset: auto 0 0 0;
	padding: 44px 18px 16px;
	background: linear-gradient(180deg, transparent, rgba(20, 15, 6, 0.88));
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.galeri-item figcaption strong {
	font-size: 0.98rem;
}

.galeri-item figcaption small {
	color: rgba(255, 251, 235, 0.75);
	font-size: 0.78rem;
}

.galeri-item .gi-eyebrow {
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 4px;
}

.galeri-note {
	text-align: center;
	color: var(--muted);
	margin-top: 38px;
	font-size: 0.92rem;
}

/* Lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	background: rgba(15, 10, 3, 0.94);
	backdrop-filter: blur(6px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	padding: 24px;
}

.lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.lightbox-img {
	max-width: min(94vw, 1100px);
	max-height: 78vh;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
}

.lightbox-caption {
	color: var(--gold-soft);
	font-weight: 600;
}

.lightbox-close {
	position: absolute;
	top: 22px;
	right: 28px;
	width: 48px;
	height: 48px;
	font-size: 1.8rem;
	line-height: 1;
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease;
}

.lightbox-close:hover {
	background: var(--amber);
	color: var(--ink);
	transform: rotate(90deg);
}

/* ==========================================================================
   KEGIATAN
   ========================================================================== */
.kegiatan-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.kegiatan-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kegiatan-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.kegiatan-thumb {
	position: relative;
	display: block;
	overflow: hidden;
}

.kegiatan-thumb img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.kegiatan-card:hover .kegiatan-thumb img {
	transform: scale(1.06);
}

.kegiatan-date {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(255, 255, 255, 0.95);
	border-left: 4px solid var(--gold);
	border-radius: 10px;
	padding: 7px 12px;
	text-align: center;
	line-height: 1;
	box-shadow: var(--shadow-sm);
}

.kegiatan-date strong {
	display: block;
	font-size: 1.05rem;
	color: var(--amber-deep);
}

.kegiatan-date {
	color: var(--muted);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.kegiatan-body {
	padding: 22px;
}

.kegiatan-title {
	font-size: 1.08rem;
	margin-bottom: 10px;
}

.kegiatan-title a {
	color: var(--ink);
}

.kegiatan-title a:hover {
	color: var(--amber-deep);
}

.kegiatan-excerpt {
	color: var(--muted);
	font-size: 0.9rem;
	margin-bottom: 14px;
}

.empty-note {
	text-align: center;
	color: var(--muted);
	padding: 40px 0;
}

/* ==========================================================================
   PAGE HERO
   ========================================================================== */
.page-hero {
	position: relative;
	padding: 78px 0 90px;
	background:
		radial-gradient(circle at 80% 20%, rgba(245, 197, 24, 0.5) 0, transparent 42%),
		radial-gradient(circle at 10% 90%, rgba(245, 197, 24, 0.28) 0, transparent 40%),
		linear-gradient(160deg, #ffffff 0%, var(--cream) 100%);
	border-bottom: 1px solid var(--line);
	text-align: center;
	overflow: hidden;
}

.page-hero::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 70px;
	background: var(--paper);
	clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.page-hero-title {
	font-size: clamp(2rem, 5vw, 3.2rem);
	margin: 6px 0 10px;
}

.page-hero-sub {
	color: var(--muted);
	max-width: 640px;
	margin: 0 auto;
}

.page-hero-meta {
	display: flex;
	justify-content: center;
	gap: 22px;
	flex-wrap: wrap;
	margin-top: 14px;
	color: var(--muted);
	font-size: 0.88rem;
	font-weight: 600;
}

.page-hero-meta span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.page-hero-meta svg {
	width: 16px;
	height: 16px;
	color: var(--amber);
}

/* ==========================================================================
   PAGE LAYOUT
   ========================================================================== */
.page-layout {
	padding: 70px 0 90px;
}

.main-col {
	max-width: 900px;
	margin: 0 auto;
}

.single-layout .main-col {
	max-width: 860px;
}

.single-thumb {
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 30px;
	box-shadow: var(--shadow-md);
}

.single-content {
	font-size: 1.02rem;
	color: var(--ink-3);
}

.single-content p {
	margin-bottom: 1.1em;
}

.single-content h2,
.single-content h3 {
	margin: 1.4em 0 0.6em;
}

.single-content img {
	border-radius: var(--radius);
	margin: 1.4em 0;
}

.single-content ul {
	list-style: disc;
	padding-left: 1.4em;
	margin-bottom: 1.1em;
}

/* Pagination */
.pagination,
.nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.page-numbers {
	display: inline-flex;
	min-width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border-radius: 12px;
	border: 1px solid var(--line-2);
	background: #fff;
	color: var(--ink-3);
	font-weight: 700;
	font-size: 0.9rem;
	transition: all 0.25s ease;
}

.page-numbers.current,
.page-numbers:hover {
	background: linear-gradient(135deg, var(--gold), var(--amber));
	color: var(--ink);
	border-color: transparent;
	box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   TENTANG
   ========================================================================== */
.tentang-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 60px;
	align-items: center;
}

.tentang-text p {
	color: var(--muted);
	margin-bottom: 16px;
}

.tentang-text .check-list {
	margin-top: 20px;
}

.vm-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
}

.vm-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 34px;
	box-shadow: var(--shadow-sm);
}

.vm-icon {
	display: inline-flex;
	width: 56px;
	height: 56px;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--gold), var(--amber));
	color: var(--ink);
	margin-bottom: 18px;
	box-shadow: var(--shadow-sm);
}

.vm-icon svg {
	width: 28px;
	height: 28px;
}

.vm-card h3 {
	font-size: 1.4rem;
	margin-bottom: 14px;
}

.vm-card p,
.vm-card li {
	color: var(--ink-3);
}

.identity-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.identity-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px;
	box-shadow: var(--shadow-sm);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.identity-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.identity-icon {
	display: inline-flex;
	width: 56px;
	height: 56px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(245, 197, 24, 0.18);
	color: var(--amber-deep);
	margin-bottom: 16px;
}

.identity-icon svg {
	width: 26px;
	height: 26px;
}

.identity-card h3 {
	font-size: 1.02rem;
	margin-bottom: 10px;
}

.identity-card p {
	color: var(--muted);
	font-size: 0.9rem;
}

/* ==========================================================================
   PRODUK PAGE
   ========================================================================== */
.produk-block {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 34px;
	margin-bottom: 26px;
	box-shadow: var(--shadow-sm);
	border-top: 5px solid var(--gold);
	scroll-margin-top: 100px;
}

.produk-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}

.produk-head-left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.produk-kode {
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	color: var(--amber-deep);
	background: var(--cream);
	border: 1px solid var(--line-2);
	padding: 5px 12px;
	border-radius: 999px;
}

.produk-title {
	font-size: 1.4rem;
	margin-top: 8px;
}

.produk-desc {
	color: var(--muted);
	margin-bottom: 18px;
}

.produk-subtitle {
	font-size: 0.95rem;
	color: var(--ink-2);
	margin-bottom: 14px;
}

.produk-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 22px;
}

.produk-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--cream);
	border: 1px solid var(--line-2);
	color: var(--ink-2);
	font-weight: 700;
	font-size: 0.86rem;
	padding: 9px 16px;
	border-radius: 999px;
	transition: all 0.25s ease;
}

.produk-tag svg {
	width: 16px;
	height: 16px;
	color: var(--amber);
}

.produk-tag:hover {
	border-color: var(--gold);
	background: #fff8e6;
	transform: translateY(-2px);
}

.tefa-note {
	display: flex;
	align-items: center;
	gap: 16px;
	background: linear-gradient(135deg, var(--ink), var(--ink-2));
	color: var(--cream);
	border-radius: var(--radius-lg);
	padding: 26px 30px;
	margin-top: 34px;
}

.tefa-note svg {
	width: 34px;
	height: 34px;
	flex-shrink: 0;
	color: var(--gold);
}

.tefa-note p {
	font-size: 0.95rem;
}

.tefa-note strong {
	color: var(--gold);
}

/* ==========================================================================
   KONTAK
   ========================================================================== */
.kontak-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 46px;
	align-items: start;
	margin-bottom: 46px;
}

.kontak-info {
	display: grid;
	gap: 18px;
}

.kontak-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 22px;
	box-shadow: var(--shadow-sm);
}

.kontak-icon {
	display: inline-flex;
	width: 50px;
	height: 50px;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	background: linear-gradient(135deg, var(--gold), var(--amber));
	color: var(--ink);
	box-shadow: var(--shadow-sm);
}

.kontak-icon svg {
	width: 24px;
	height: 24px;
}

.kontak-card h3 {
	font-size: 0.98rem;
	margin-bottom: 5px;
}

.kontak-card p,
.kontak-card a {
	color: var(--muted);
	font-size: 0.92rem;
}

.kontak-form {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 36px;
	box-shadow: var(--shadow-md);
}

.alert-info {
	background: var(--cream);
	border: 1px dashed var(--gold);
	color: var(--ink-2);
	border-radius: var(--radius);
	padding: 18px;
	font-weight: 600;
}

.map-wrap {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	border: 8px solid #fff;
}

/* ---------- Contact Form 7 ---------- */
.wpcf7-form {
	display: grid;
	gap: 18px;
}

.wpcf7-form label {
	display: block;
	font-weight: 700;
	font-size: 0.86rem;
	margin-bottom: 7px;
	color: var(--ink-2);
}

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

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
	width: 100%;
	font-family: inherit;
	font-size: 0.95rem;
	color: var(--ink);
	background: var(--paper);
	border: 2px solid var(--line-2);
	border-radius: 14px;
	padding: 13px 16px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
	outline: none;
	border-color: var(--amber);
	box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.wpcf7-form textarea {
	min-height: 140px;
	resize: vertical;
}

.wpcf7-form .wpcf7-submit {
	width: 100%;
	border: none;
	cursor: pointer;
}

.wpcf7-form .wpcf7-not-valid-tip {
	color: #dc2626;
	font-size: 0.8rem;
	font-weight: 600;
	margin-top: 5px;
}

.wpcf7-form .wpcf7-response-output {
	border: 1px solid var(--line-2) !important;
	border-radius: 12px;
	padding: 14px 18px !important;
	font-size: 0.9rem;
	font-weight: 600;
	margin: 0 !important;
}

.wpcf7-form .wpcf7-mail-sent-ok {
	background: #ecfdf5 !important;
	border-color: #6ee7b7 !important;
	color: #047857;
}

.wpcf7-form .wpcf7-validation-errors,
.wpcf7-form .wpcf7-spam-blocked {
	background: #fef2f2 !important;
	border-color: #fca5a5 !important;
	color: #b91c1c;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
	background: linear-gradient(180deg, var(--ink) 0%, #17110a 100%);
	color: rgba(255, 251, 235, 0.72);
}

.footer-cta {
	background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
	color: var(--ink);
	padding: 46px 0;
}

.footer-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.footer-cta-title {
	color: var(--ink);
	font-size: clamp(1.3rem, 3vw, 1.8rem);
	margin-bottom: 6px;
}

.footer-cta-text {
	font-weight: 600;
	color: rgba(34, 26, 14, 0.8);
	max-width: 560px;
}

.footer-cta .btn-gold {
	background: var(--ink);
	color: var(--gold);
	border-color: var(--ink);
	box-shadow: 0 10px 26px rgba(34, 26, 14, 0.3);
}

.footer-cta .btn-gold:hover {
	color: var(--gold-soft);
	box-shadow: 0 16px 34px rgba(34, 26, 14, 0.4);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
	gap: 40px;
	padding: 66px 22px 50px;
}

.footer-brand-link {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.footer-brand-link .brand-name {
	color: #fff;
}

.footer-brand-link .brand-tag {
	color: var(--gold);
}

.footer-desc {
	font-size: 0.9rem;
	margin-bottom: 18px;
}

.footer-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.footer-badge {
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--gold-soft);
	background: rgba(245, 197, 24, 0.12);
	border: 1px solid rgba(245, 197, 24, 0.3);
	padding: 6px 12px;
	border-radius: 999px;
}

.footer-title {
	color: #fff;
	font-size: 1rem;
	margin-bottom: 20px;
	letter-spacing: 0.02em;
}

.footer-links li {
	margin-bottom: 11px;
}

.footer-links a {
	color: rgba(255, 251, 235, 0.7);
	font-size: 0.9rem;
	transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
	color: var(--gold);
	padding-left: 4px;
}

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 14px;
	font-size: 0.9rem;
}

.footer-contact a {
	color: rgba(255, 251, 235, 0.7);
}

.footer-contact a:hover {
	color: var(--gold);
}

.fci {
	display: inline-flex;
	width: 34px;
	height: 34px;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: rgba(245, 197, 24, 0.12);
	color: var(--gold);
}

.fci svg {
	width: 17px;
	height: 17px;
}

.footer-bottom {
	border-top: 1px solid rgba(245, 197, 24, 0.16);
	padding: 20px 0;
	font-size: 0.82rem;
}

.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.footer-bottom-right {
	color: rgba(255, 251, 235, 0.5);
}

/* ==========================================================================
   TO TOP
   ========================================================================== */
.to-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 90;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--gold), var(--amber));
	color: var(--ink);
	box-shadow: var(--shadow-md);
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px);
	transition: all 0.3s ease;
}

.to-top svg {
	width: 20px;
	height: 20px;
	transform: rotate(-90deg);
}

.to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.to-top:hover {
	transform: translateY(-4px);
	color: var(--ink);
	box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   NOTFOUND
   ========================================================================== */
.notfound {
	text-align: center;
	padding: 80px 22px 110px;
}

.notfound-code {
	display: block;
	font-size: clamp(5rem, 16vw, 9rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	background: linear-gradient(135deg, var(--gold), var(--amber));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1;
	margin-bottom: 12px;
}

.notfound h2 {
	margin-bottom: 10px;
}

.notfound p {
	color: var(--muted);
	margin-bottom: 26px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
	.jurusan-grid,
	.tefa-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.galeri-full-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.identity-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 860px) {
	.nav-toggle {
		display: flex;
	}

	.nav-menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		background: #fff;
		border-bottom: 1px solid var(--line);
		box-shadow: var(--shadow-md);
		padding: 18px 22px 24px;
		gap: 14px;
		transform: translateY(-12px);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		max-height: calc(100vh - 80px);
		overflow-y: auto;
	}

	.nav-menu.is-open {
		transform: none;
		opacity: 1;
		visibility: visible;
	}

	.nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
	}

	.nav-list a {
		padding: 13px 16px;
	}

	.nav-list .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		padding-left: 16px;
	}

	.nav-cta {
		justify-content: center;
	}

	.welcome-grid,
	.tentang-grid {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.tefa-head {
		flex-direction: column;
		align-items: flex-start;
	}

	.kontak-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		min-height: 92vh;
	}
}

@media (max-width: 640px) {
	.topbar-right a span {
		display: none;
	}

	.topbar-right {
		gap: 14px;
	}

	.jurusan-grid,
	.tefa-grid,
	.galeri-full-grid,
	.kegiatan-grid,
	.vm-grid,
	.identity-grid,
	.galeri-preview-grid {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

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

	.footer-cta-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.section {
		padding: 60px 0;
	}

	.welcome-badge {
		right: 6px;
	}

	.hero-logo,
	.hero-logo img {
		width: 112px;
		height: 112px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}

	html {
		scroll-behavior: auto;
	}
}
