/**
 * Now We Taco'n Immersive Theme – Desktop Styles
 *
 * 1.0 – Reset & Root
 * 2.0 – Accessibility
 * 3.0 – Custom Cursor
 * 4.0 – WebGL & Overlays
 * 5.0 – Scroll Container & Sections
 * 6.0 – Navigation
 * 7.0 – Hero Section
 * 8.0 – Menu Section
 * 9.0 – Story Section
 * 10.0 – Catering Section
 * 11.0 – Hours Section
 * 12.0 – Footer Section
 * 13.0 – Community Section
 * 14.0 – Progress Dots
 * 15.0 – Transitions & Effects
 * 16.0 – Hamburger & Mobile Menu
 * 17.0 – Map Modal
 * 18.0 – Keyframes
 *
 * @package Now_We_Takon
 * @since   1.0.0
 */

/* 1.0 – Reset & Root */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
	--fire: #ff3000;
	--gold: #ffb300;
	--cream: #f5edd8;
	--dark: #0a0600;
	--lime: #d4f000;
}
html, body {
	width: 100%; height: 100%;
	overflow: hidden;
	background: var(--dark);
	font-family: 'Syne', sans-serif;
	cursor: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* 2.0 – Accessibility */
.skip-link {
	position: absolute; top: -100px; left: 6px; z-index: 100000;
	padding: 8px 16px; background: var(--gold); color: var(--dark);
	font-family: 'Bebas Neue', 'Arial Black', sans-serif; font-size: 1rem;
	letter-spacing: 0.1em; text-decoration: none;
}
.skip-link:focus { top: 6px; outline: 2px solid var(--fire); outline-offset: 2px; }
.screen-reader-text {
	position: absolute !important; overflow: hidden; clip: rect(1px,1px,1px,1px);
	clip-path: inset(50%); width: 1px; height: 1px; margin: -1px; padding: 0; border: 0;
	word-wrap: normal !important;
}
.screen-reader-text:focus {
	display: block; clip: auto !important; clip-path: none;
	top: 5px; left: 5px; z-index: 100000; width: auto; height: auto;
	padding: 15px 23px 14px; background-color: var(--dark); color: var(--cream);
	font-size: 0.875rem; text-decoration: none;
}
*:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* 3.0 – Custom Cursor */
#c-cursor {
	position: fixed; top: 0; left: 0; z-index: 10000;
	width: 10px; height: 10px; border-radius: 50%;
	background: var(--cream); pointer-events: none;
	transform: translate(-50%,-50%);
	transition: width 0.22s, height 0.22s, background 0.22s;
	mix-blend-mode: difference; will-change: transform;
}
#c-cursor.big { width: 52px; height: 52px; background: var(--fire); }

/* 4.0 – WebGL & Overlays */
#webgl-canvas { position: fixed; top: 0; left: 0; z-index: 0; width: 100%; height: 100%; }
#aberration { position: fixed; inset: 0; z-index: 5; pointer-events: none; opacity: 0; }
#grain {
	position: fixed; inset: 0; z-index: 6; pointer-events: none; opacity: 0.04;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 256px;
}

/* 5.0 – Scroll Container & Sections */
#scroll-container {
	position: fixed; top: 0; left: 0; z-index: 1;
	overflow: hidden; width: 100%; height: 100%; pointer-events: none;
}
#scroll-content { will-change: transform; }
.section {
	display: flex; position: relative; align-items: center;
	overflow: hidden; width: 100vw; height: 100vh; pointer-events: all;
}

/* 6.0 – Navigation */
#nav {
	display: flex; position: fixed; top: 0; right: 0; left: 0; z-index: 200;
	justify-content: space-between; align-items: center;
	padding: 2rem 3.5rem; pointer-events: all; mix-blend-mode: difference;
}
.nav-logo {
	display: flex; align-items: center; gap: 0.6rem;
	color: var(--cream); text-decoration: none; cursor: none; transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.75; }
.nav-logo-img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.nav-logo-text {
	font-family: 'Bebas Neue', 'Arial Black', sans-serif;
	font-size: 1.4rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.nav-links { display: flex; gap: 3rem; list-style: none; }
.nav-links a {
	color: var(--cream); font-family: 'Syne Mono', monospace;
	font-size: 0.68rem; letter-spacing: 0.2em; text-decoration: none;
	text-transform: uppercase; cursor: none; opacity: 0.6; transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-eat { color: var(--gold) !important; opacity: 1 !important; }
.nav-eat:hover { color: var(--fire) !important; }

/* 7.0 – Hero Section */
#hero {
	flex-direction: column; justify-content: flex-end; padding: 0 3.5rem 14vh;
}
.hero-top {
	position: absolute; top: 6.5rem; left: 3.5rem;
	display: flex; align-items: center; gap: 1.2rem;
	opacity: 0; animation: fadeUp 0.8s ease forwards 0.3s;
}
.hero-logo {
	width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
	border: 2px solid rgba(245,237,216,0.15);
}
.hero-status {
	display: flex; align-items: center; gap: 0.5rem;
	padding: 0.4rem 0.9rem; border-radius: 20px;
	font-family: 'Syne Mono', monospace; font-size: 0.62rem;
	letter-spacing: 0.12em; text-transform: uppercase;
}
.status-open {
	background: rgba(212,240,0,0.12); color: var(--lime);
	border: 1px solid rgba(212,240,0,0.3);
}
.status-closed {
	background: rgba(255,48,0,0.1); color: var(--fire);
	border: 1px solid rgba(255,48,0,0.25);
}
.status-dot {
	width: 6px; height: 6px; border-radius: 50%;
}
.status-open .status-dot { background: var(--lime); animation: blink 1.5s ease infinite; }
.status-closed .status-dot { background: var(--fire); }
.hero-index {
	margin-bottom: 1.5rem; color: var(--gold);
	font-family: 'Syne Mono', monospace; font-size: 0.65rem;
	letter-spacing: 0.25em; opacity: 0; transform: translateY(10px);
	animation: fadeUp 0.6s ease forwards 0.4s;
}
.hero-h1 {
	color: var(--cream); font-family: 'Bebas Neue', 'Arial Black', sans-serif;
	font-size: clamp(5.5rem, 15vw, 15rem); line-height: 0.85;
	letter-spacing: -0.01em; text-transform: uppercase;
}
.hero-h1 .word { display: block; overflow: hidden; }
.hero-h1 .word span {
	display: block; transform: translateY(110%);
	animation: wordUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-h1 .word:nth-child(1) span { animation-delay: 0.5s; }
.hero-h1 .word:nth-child(2) span { color: var(--fire); animation-delay: 0.62s; }
.hero-h1 .word:nth-child(3) span { animation-delay: 0.74s; }
.hero-meta {
	display: flex; gap: 4rem; margin-top: 2.5rem;
	opacity: 0; animation: fadeUp 0.8s ease forwards 1.1s;
}
.hero-meta-item { display: flex; flex-direction: column; gap: 0.3rem; }
.hero-meta-label {
	color: rgba(245,237,216,0.35); font-family: 'Syne Mono', monospace;
	font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.hero-meta-val { color: var(--cream); font-size: 0.95rem; font-weight: 500; }
.hero-meta-val a { color: inherit; text-decoration: none; }
.hero-meta-val a:hover { text-decoration: underline; }
.scroll-hint {
	display: flex; position: absolute; right: 3.5rem; bottom: 3rem;
	flex-direction: column; align-items: center; gap: 0.5rem;
	opacity: 0; animation: fadeUp 0.8s ease forwards 1.5s;
}
.scroll-hint-line {
	width: 1px; height: 60px;
	background: linear-gradient(to bottom, var(--gold), transparent);
	animation: scrollLine 2s ease infinite;
}
.scroll-hint-text {
	color: var(--gold); font-family: 'Syne Mono', monospace;
	font-size: 0.55rem; letter-spacing: 0.2em; writing-mode: vertical-rl;
}

/* 8.0 – Menu Section */
#menu-section {
	flex-direction: column; justify-content: center; padding: 5rem 3.5rem 0;
}
.menu-header { flex-shrink: 0; }
.s-label {
	flex-shrink: 0; margin-bottom: 1.2rem; color: var(--gold);
	font-family: 'Syne Mono', monospace; font-size: 0.6rem;
	letter-spacing: 0.25em; text-transform: uppercase;
}
.s-title {
	flex-shrink: 0; margin-bottom: 2.5rem; color: var(--cream);
	font-family: 'Bebas Neue', 'Arial Black', sans-serif;
	font-size: clamp(3rem, 8vw, 7.5rem); line-height: 0.88; text-transform: uppercase;
}
.menu-track-wrap { position: relative; flex-shrink: 0; overflow: hidden; width: 100%; }
.menu-track {
	display: flex; gap: 1.5rem; overflow-x: scroll; overflow-y: hidden;
	padding-bottom: 1rem; scroll-behavior: smooth; scrollbar-width: none;
	cursor: grab; user-select: none; -webkit-user-select: none;
	-webkit-overflow-scrolling: touch; -ms-overflow-style: none;
}
.menu-track::-webkit-scrollbar { display: none; }
.menu-track.dragging { scroll-behavior: auto; cursor: grabbing; }
.menu-arrow {
	display: flex; position: absolute; top: 50%; z-index: 2;
	align-items: center; justify-content: center; width: 3rem; height: 100%;
	color: rgba(245,237,216,0.4); font-size: 1.4rem;
	pointer-events: none; transform: translateY(-50%); transition: opacity 0.3s;
}
.menu-arrow-left  { left: 0;  background: linear-gradient(to right, rgba(10,6,0,0.8), transparent); }
.menu-arrow-right { right: 0; background: linear-gradient(to left, rgba(10,6,0,0.8), transparent); }
.menu-item {
	flex-shrink: 0; width: 22vw; min-width: 260px; padding-top: 1.5rem;
	border-top: 1px solid rgba(245,237,216,0.12); transition: border-color 0.3s;
}
.menu-item:hover { border-color: var(--fire); }
.mi-num {
	margin-bottom: 1rem; color: rgba(245,237,216,0.25);
	font-family: 'Syne Mono', monospace; font-size: 0.6rem; letter-spacing: 0.15em;
}
.mi-emoji { display: block; margin-bottom: 0.8rem; font-size: 2.2rem; }
.mi-name {
	margin-bottom: 0.4rem; color: var(--cream);
	font-family: 'Bebas Neue', 'Arial Black', sans-serif;
	font-size: 1.8rem; letter-spacing: 0.04em; text-transform: uppercase;
}
.mi-desc {
	margin-bottom: 1rem; color: rgba(245,237,216,0.45);
	font-size: 0.78rem; line-height: 1.65;
}
.mi-price { color: var(--gold); font-family: 'Syne Mono', monospace; font-size: 0.85rem; }
.mi-hot {
	display: inline-block; margin-left: 0.5rem; padding: 0.15rem 0.5rem;
	background: var(--fire); color: var(--cream);
	font-family: 'Syne', sans-serif; font-size: 0.5rem;
	font-weight: 700; letter-spacing: 0.15em; vertical-align: middle;
}
/* Order CTA Banner */
.order-cta {
	flex-shrink: 0; width: 100%; margin-top: 1.5rem;
	border-top: 1px solid rgba(255,61,0,0.25);
	background: rgba(255,61,0,0.04);
	padding: 1rem 0;
}
.order-cta-inner {
	display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.order-cta-text { display: flex; align-items: center; gap: 1rem; }
.order-cta-emoji { font-size: 2rem; }
.order-cta-title {
	font-family: 'Bebas Neue', 'Arial Black', sans-serif;
	font-size: 1.4rem; color: var(--cream); letter-spacing: 0.04em; text-transform: uppercase;
}
.order-cta-sub { font-size: 0.72rem; color: rgba(245,237,216,0.4); }
.order-cta-btn {
	display: inline-block; padding: 0.65rem 2rem;
	background: var(--fire); color: var(--cream);
	font-family: 'Bebas Neue', 'Arial Black', sans-serif;
	font-size: 1rem; letter-spacing: 0.12em; text-decoration: none;
	text-transform: uppercase; cursor: none; white-space: nowrap;
	clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
	transition: background 0.2s, color 0.2s;
}
.order-cta-btn:hover { background: var(--gold); color: var(--dark); }

/* 9.0 – Story Section */
#story-section { gap: 6rem; padding: 0 3.5rem; }
.story-left { display: flex; flex: 1; flex-direction: column; justify-content: center; }
.story-quote-big {
	margin-bottom: 2rem; color: var(--cream);
	font-family: 'Bebas Neue', 'Arial Black', sans-serif;
	font-size: clamp(2.5rem, 5vw, 5rem); line-height: 0.95; text-transform: uppercase;
}
.story-quote-big em { color: var(--fire); font-style: normal; }
.story-body {
	max-width: 400px; margin-bottom: 2rem;
	color: rgba(245,237,216,0.5); font-size: 0.9rem; line-height: 1.85;
}
.story-body strong { color: var(--gold); font-weight: 600; }
.story-right {
	display: flex; flex-direction: column; justify-content: center; gap: 1px; width: 38vw;
}
.story-stat {
	display: flex; flex-direction: column; gap: 0.3rem; padding: 1.5rem 0;
	border-top: 1px solid rgba(245,237,216,0.1); transition: padding-left 0.3s;
}
.story-stat:hover { padding-left: 1rem; border-top-color: var(--gold); }
.story-stat-n {
	color: var(--gold); font-family: 'Bebas Neue', 'Arial Black', sans-serif;
	font-size: 3.5rem; line-height: 1;
}
.story-stat-l {
	color: rgba(245,237,216,0.35); font-family: 'Syne Mono', monospace;
	font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
}

/* 10.0 – Catering Section */
#catering-section { flex-direction: column; justify-content: center; padding: 0 3.5rem; }
.catering-grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; width: 100%;
}
.catering-events { display: flex; flex-direction: column; gap: 1px; margin-top: 1.5rem; }
.ev-row {
	display: flex; align-items: center; gap: 1.5rem; padding: 1.3rem 0;
	border-top: 1px solid rgba(245,237,216,0.1);
	transition: padding-left 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.3s;
}
.ev-row:hover { padding-left: 1rem; border-color: var(--fire); }
.ev-icon { flex-shrink: 0; font-size: 1.6rem; }
.ev-title {
	color: var(--cream); font-family: 'Bebas Neue', 'Arial Black', sans-serif;
	font-size: 1.5rem; letter-spacing: 0.04em; text-transform: uppercase;
}
.ev-arrow {
	margin-left: auto; color: rgba(245,237,216,0.2); font-size: 1.2rem;
	transition: color 0.3s, transform 0.3s;
}
.ev-row:hover .ev-arrow { color: var(--fire); transform: translateX(6px); }
/* Trust indicators */
.catering-trust {
	display: flex; gap: 2.5rem; margin-top: 2rem;
	padding-top: 1.5rem; border-top: 1px solid rgba(245,237,216,0.08);
}
.trust-item { display: flex; flex-direction: column; gap: 0.2rem; }
.trust-num {
	font-family: 'Bebas Neue', 'Arial Black', sans-serif;
	font-size: 1.8rem; color: var(--gold); line-height: 1; text-transform: uppercase;
}
.trust-label {
	font-family: 'Syne Mono', monospace; font-size: 0.5rem;
	letter-spacing: 0.15em; color: rgba(245,237,216,0.3); text-transform: uppercase;
}
/* Form */
.catering-form-wrap {
	padding: 1.5rem; border: 1px solid rgba(245,237,216,0.08);
	background: rgba(245,237,216,0.02); border-radius: 2px;
}
.catering-form { display: flex; flex-direction: column; gap: 0.8rem; }
.form-progress {
	height: 2px; width: 100%; background: rgba(245,237,216,0.06);
	margin-bottom: 0.5rem; overflow: hidden;
}
.form-progress-fill {
	height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold), var(--fire));
	transition: width 0.4s ease;
}
.f-group { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.f-group label {
	font-family: 'Syne Mono', monospace; font-size: 0.52rem;
	letter-spacing: 0.18em; color: rgba(245,237,216,0.3); text-transform: uppercase;
}
.f-input {
	width: 100%; padding: 0.75rem 1rem;
	border: 1px solid rgba(245,237,216,0.1); background: rgba(245,237,216,0.03);
	color: var(--cream); font-family: 'Syne', sans-serif; font-size: 0.82rem;
	outline: none; transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.f-input::placeholder { color: rgba(245,237,216,0.2); }
.f-input:focus {
	border-color: var(--gold); background: rgba(245,237,216,0.05);
	box-shadow: 0 0 0 3px rgba(255,179,0,0.08);
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.btn-send {
	margin-top: 0.5rem; padding: 0.9rem 2rem; border: none;
	background: var(--fire); color: var(--cream);
	font-family: 'Bebas Neue', 'Arial Black', sans-serif;
	font-size: 1.1rem; letter-spacing: 0.15em; text-transform: uppercase;
	cursor: none; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
	transition: background 0.2s, transform 0.2s;
}
.btn-send:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }
.btn-send:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.form-note {
	margin-top: 0.6rem; font-family: 'Syne Mono', monospace;
	font-size: 0.55rem; letter-spacing: 0.12em;
	color: rgba(245,237,216,0.25); text-align: center;
}
.form-note a { color: var(--gold); text-decoration: none; }
.form-note a:hover { text-decoration: underline; }

/* 11.0 – Hours Section */
#hours-section { gap: 5rem; padding: 0 3.5rem; }
.hours-left { flex: 1; }
.hours-title {
	margin-bottom: 2.5rem; color: var(--cream);
	font-family: 'Bebas Neue', 'Arial Black', sans-serif;
	font-size: clamp(3rem, 7vw, 7rem); line-height: 0.88; text-transform: uppercase;
}
.hours-rows { display: flex; flex-direction: column; }
.h-row {
	display: flex; justify-content: space-between; align-items: baseline;
	padding: 1rem 0; border-bottom: 1px solid rgba(245,237,216,0.07);
	transition: padding-left 0.3s;
}
.h-row:hover { padding-left: 0.5rem; }
.h-day {
	display: flex; align-items: center; gap: 0.6rem;
	color: rgba(245,237,216,0.4); font-family: 'Syne Mono', monospace;
	font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.today-dot {
	display: none; width: 6px; height: 6px; border-radius: 50%;
	background: var(--lime); animation: blink 1.5s ease infinite;
}
.h-row.is-today .h-day { color: var(--lime); }
.h-row.is-today .today-dot { display: block; }
.h-time {
	color: var(--cream); font-family: 'Bebas Neue', 'Arial Black', sans-serif;
	font-size: 1.3rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.h-closed { color: rgba(245,237,216,0.2) !important; }
.tuesday-badge {
	display: inline-block; margin-left: 0.6rem; padding: 0.15rem 0.5rem;
	background: var(--lime); color: var(--dark);
	font-family: 'Syne', sans-serif; font-size: 0.48rem;
	font-weight: 800; letter-spacing: 0.12em; vertical-align: middle;
	animation: blink 2s ease infinite;
}
.hours-right { width: 36vw; }
.contact-block { display: flex; flex-direction: column; gap: 1.2rem; }
.c-item {
	display: flex; flex-direction: column; gap: 0.4rem; padding: 1.2rem;
	border: 1px solid rgba(245,237,216,0.07); text-decoration: none;
	cursor: none; transition: border-color 0.3s, background 0.3s;
	background: none; color: inherit; text-align: left; font: inherit;
}
.c-item:hover { border-color: var(--gold); background: rgba(255,179,0,0.04); }
.c-label {
	color: rgba(245,237,216,0.3); font-family: 'Syne Mono', monospace;
	font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.c-label-hint { opacity: 0.5; }
.c-val {
	color: var(--cream); font-family: 'Bebas Neue', 'Arial Black', sans-serif;
	font-size: 1.2rem; letter-spacing: 0.05em; text-transform: uppercase;
}
.c-val-sub {
	color: rgba(245,237,216,0.45); font-family: 'Syne Mono', monospace;
	font-size: 0.6rem; letter-spacing: 0.1em; text-transform: none;
}
/* Social icons */
.c-item-socials { border-color: rgba(255,179,0,0.15); }
.social-icons { display: flex; gap: 0.8rem; margin-top: 0.3rem; }
.social-icon {
	display: flex; align-items: center; justify-content: center;
	width: 36px; height: 36px; border-radius: 50%;
	border: 1px solid rgba(245,237,216,0.12); color: rgba(245,237,216,0.5);
	transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-icon:hover {
	color: var(--gold); border-color: var(--gold);
	background: rgba(255,179,0,0.08);
}

/* 12.0 – Footer Section */
#footer-section {
	flex-direction: column; justify-content: center; overflow: hidden; padding: 0 3.5rem;
}
.footer-bg-text {
	position: absolute; bottom: -2rem; left: -1rem;
	color: rgba(245,237,216,0.03);
	font-family: 'Bebas Neue', 'Arial Black', sans-serif;
	font-size: 22vw; line-height: 1; white-space: nowrap;
	pointer-events: none; user-select: none; text-transform: uppercase;
}
.footer-content {
	display: flex; position: relative; z-index: 1; flex-direction: column; gap: 3rem;
}
.footer-logo-big {
	color: var(--cream); font-family: 'Bebas Neue', 'Arial Black', sans-serif;
	font-size: clamp(3rem, 9vw, 9rem); line-height: 0.88; text-transform: uppercase;
}
.footer-logo-big span { color: var(--fire); }
.footer-bottom {
	display: flex; justify-content: space-between; align-items: flex-end;
	padding-top: 2rem; border-top: 1px solid rgba(245,237,216,0.1);
}
.footer-links { display: flex; gap: 2.5rem; list-style: none; }
.footer-links a {
	color: rgba(245,237,216,0.35); font-family: 'Syne Mono', monospace;
	font-size: 0.6rem; letter-spacing: 0.18em; text-decoration: none;
	text-transform: uppercase; cursor: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
	color: rgba(245,237,216,0.2); font-family: 'Syne Mono', monospace;
	font-size: 0.58rem; letter-spacing: 0.12em;
}

/* 13.0 – Community Section */
#community-section { padding: 0 3.5rem; flex-direction: column; justify-content: center; }
.community-grid {
	display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; width: 100%;
	align-items: start;
}
.ig-handle { margin-bottom: 1.2rem; }
.ig-handle-link {
	display: inline-flex; align-items: center; gap: 0.5rem;
	color: var(--gold); font-family: 'Syne Mono', monospace;
	font-size: 0.75rem; letter-spacing: 0.1em; text-decoration: none;
	transition: color 0.2s;
}
.ig-handle-link:hover { color: var(--fire); }
.ig-embed-area {
	width: 100%; max-height: 40vh; overflow: hidden; border-radius: 2px;
	border: 1px solid rgba(245,237,216,0.08);
}
.ig-placeholder {
	display: flex; align-items: center; justify-content: center;
	min-height: 200px; padding: 3rem;
	background: rgba(245,237,216,0.02);
}
.ig-placeholder-link {
	display: flex; flex-direction: column; align-items: center; gap: 1rem;
	color: var(--cream); text-decoration: none; font-family: 'Syne Mono', monospace;
	font-size: 0.75rem; letter-spacing: 0.1em; opacity: 0.5; transition: opacity 0.3s;
}
.ig-placeholder-link:hover { opacity: 1; }
.ig-placeholder-text {
	color: rgba(245,237,216,0.25); font-family: 'Syne Mono', monospace;
	font-size: 0.65rem; letter-spacing: 0.1em; text-align: center;
}
/* Partner card */
.partner-card {
	padding: 2rem; border: 1px solid rgba(245,237,216,0.08);
	background: rgba(245,237,216,0.02); position: relative; overflow: hidden;
}
.partner-badge {
	display: inline-block; margin-bottom: 1.2rem; padding: 0.2rem 0.7rem;
	background: var(--gold); color: var(--dark);
	font-family: 'Syne Mono', monospace; font-size: 0.5rem;
	letter-spacing: 0.15em; font-weight: 700;
}
.partner-logo-area {
	margin-bottom: 1.2rem; padding: 1rem;
	background: rgba(255,255,255,0.05); border-radius: 4px;
	display: flex; align-items: center; justify-content: center;
}
.partner-logo-img { max-width: 180px; height: auto; filter: brightness(1.1); }
.partner-name {
	font-family: 'Bebas Neue', 'Arial Black', sans-serif;
	font-size: 1.8rem; color: var(--cream); letter-spacing: 0.04em;
	margin-bottom: 0.6rem; text-transform: uppercase;
}
.partner-desc {
	font-size: 0.78rem; line-height: 1.7; color: rgba(245,237,216,0.45);
	margin-bottom: 1rem;
}
.partner-meta {
	display: flex; gap: 1.5rem; margin-bottom: 1.2rem;
	font-family: 'Syne Mono', monospace; font-size: 0.58rem;
	letter-spacing: 0.1em; color: rgba(245,237,216,0.35);
}
.partner-link {
	display: inline-block; padding: 0.6rem 1.5rem;
	background: var(--fire); color: var(--cream);
	font-family: 'Bebas Neue', 'Arial Black', sans-serif;
	font-size: 0.9rem; letter-spacing: 0.1em; text-decoration: none;
	text-transform: uppercase; transition: background 0.2s, color 0.2s;
	clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.partner-link:hover { background: var(--gold); color: var(--dark); }

/* 14.0 – Progress Dots */
#progress {
	display: flex; position: fixed; top: 50%; right: 2.5rem; z-index: 300;
	flex-direction: column; gap: 0.5rem; pointer-events: all; transform: translateY(-50%);
}
.prog-dot {
	width: 4px; height: 4px; padding: 0; border: none; border-radius: 50%;
	background: rgba(245,237,216,0.2); cursor: none;
	transition: background 0.3s, transform 0.3s;
}
.prog-dot.active { background: var(--gold); transform: scale(1.6); }
.s-num {
	position: absolute; bottom: 2.5rem; left: 3.5rem;
	color: rgba(245,237,216,0.2); font-family: 'Syne Mono', monospace;
	font-size: 0.6rem; letter-spacing: 0.2em;
}

/* 15.0 – Transitions & Effects */
#wipe {
	position: fixed; inset: 0; z-index: 500;
	background: var(--dark); transform: scaleY(0); transform-origin: bottom;
}

/* 16.0 – Hamburger & Mobile Menu */
#hamburger {
	display: none; position: relative; z-index: 300;
	flex-direction: column; gap: 5px; padding: 0.4rem;
	border: none; background: none; cursor: pointer;
}
#hamburger span {
	display: block; width: 24px; height: 1.5px;
	background: var(--cream); transition: transform 0.35s, opacity 0.35s;
}
#hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
#mobile-menu {
	display: flex; position: fixed; inset: 0; z-index: 249;
	flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
	background: var(--dark); pointer-events: all;
	transform: translateY(-100%);
	transition: transform 0.5s cubic-bezier(0.76,0,0.24,1);
}
#mobile-menu.open { transform: translateY(0); }
#mobile-menu a {
	color: var(--cream); font-family: 'Bebas Neue', 'Arial Black', sans-serif;
	font-size: clamp(2.5rem, 10vw, 4rem); letter-spacing: 0.08em;
	text-decoration: none; text-transform: uppercase; transition: color 0.15s;
}
#mobile-menu a:active, #mobile-menu a.mob-active { color: var(--gold); }

/* 17.0 – Map Modal */
.map-modal {
	position: fixed; inset: 0; z-index: 600;
	display: flex; align-items: center; justify-content: center;
	background: rgba(10,6,0,0.92); backdrop-filter: blur(8px);
	opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.map-modal.open { opacity: 1; pointer-events: all; }
.map-modal-inner {
	position: relative; width: 85vw; max-width: 800px;
	height: 60vh; background: var(--dark);
	border: 1px solid rgba(255,179,0,0.2);
}
.map-modal-close {
	position: absolute; top: -2.5rem; right: 0; z-index: 10;
	background: none; border: none; color: var(--cream);
	font-size: 2rem; cursor: pointer; line-height: 1;
	transition: color 0.2s;
}
.map-modal-close:hover { color: var(--fire); }
.map-modal-link {
	display: block; padding: 0.8rem; text-align: center;
	background: rgba(255,179,0,0.08); color: var(--gold);
	font-family: 'Syne Mono', monospace; font-size: 0.65rem;
	letter-spacing: 0.15em; text-decoration: none; text-transform: uppercase;
	transition: background 0.2s;
}
.map-modal-link:hover { background: rgba(255,179,0,0.15); }

/* 18.0 – Keyframes */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes wordUp { to { transform: translateY(0); } }
@keyframes scrollLine {
	0%   { opacity: 1; transform: scaleY(1); transform-origin: top; }
	50%  { opacity: 0; transform: scaleY(0); transform-origin: top; }
	51%  { transform: scaleY(0); transform-origin: bottom; }
	100% { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
