:root {
	--zorr-red:       #8a1c2b;
	--zorr-red-dark:  #6f1522;
	--zorr-cream:     #f1e9d6;
	--zorr-yellow:    #f5ce46;
}

* { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
	background: var(--zorr-red);
	color: var(--zorr-cream);
	font-family: 'Archivo Black', sans-serif;
	/* NOTE: no overflow-x:hidden here — it silently creates a scroll
	   container and breaks position:sticky. The stage clips overflow itself. */
}

/* faint vertical panel seam, like the artwork */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(90deg,
		rgba(255,255,255,0.015) 0%,
		rgba(255,255,255,0.015) 50%,
		rgba(0,0,0,0.05) 50%,
		rgba(0,0,0,0.05) 100%);
}

/* film-grain overlay */
.zorr-grain {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 998;
	opacity: 0.15;
	mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- scroll driver + pinned stage ---------- */
.zorr-scroll {
	position: relative;
	height: 340vh;               /* tall spacer = scroll distance for the choreography */
}

/* fixed stage is bulletproof (no sticky/overflow gotchas): it covers the
   viewport while .zorr-scroll provides the scroll length that drives the JS. */
.zorr-stage {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;            /* clips the oversized wordmark to the viewport */
	z-index: 1;
}

.zorr-layer {
	position: absolute;
	left: 50%;
	will-change: transform, opacity;
}

/* ---------- ZORR wordmark (the anchor) ---------- */
.zorr-band {
	position: absolute;
	left: 0;
	right: 0;
	top: 30%;
	transform: translateY(-50%);
	z-index: 2;
	pointer-events: none;
}

.zorr-band-row {
	display: flex;
	justify-content: center;
	gap: 9vw;                    /* viewport-relative so it doesn't collapse to the row's 16px em */
	white-space: nowrap;
	line-height: 0.82;
}

.zorr-band-row span {
	font-size: 15.5vw;           /* each ZORR ~48vw wide; two + gap bleed slightly off the edges */
	letter-spacing: 0.005em;
	text-transform: uppercase;
	color: var(--zorr-cream);
}

.zorr-script {
	position: absolute;
	right: 6%;
	bottom: -0.35em;
	font-family: 'Yellowtail', cursive;
	font-size: 3.2vw;
	color: var(--zorr-yellow);
	transform: rotate(-4deg);
	line-height: 1;
}

/* ---------- bowl ---------- */
.zorr-bowl {
	top: 37%;
	/* explicit equal width+height guarantees a square box even if a plugin
	   (Elementor) strips aspect-ratio */
	width: min(70vh, 86vw);
	height: min(70vh, 86vw);
	aspect-ratio: 1 / 1;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.zorr-bowl img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* clip-path forces a circle regardless of plugin img { border-radius }
	   overrides (Elementor sets 20px); border-radius kept as a fallback */
	clip-path: circle(50%);
	border-radius: 50% !important;
	display: block;
}

/* ---------- shared lower content zone ---------- */
.zorr-mission,
.zorr-info {
	top: 58%;
	width: min(860px, 90vw);
	transform: translate(-50%, 0);
	text-align: center;
	z-index: 3;
}

/* mission tucks BEHIND the wordmark as it rises out, for a cleaner transition */
.zorr-mission { z-index: 1; }

.zorr-mission p {
	margin: 0;
	font-family: 'Archivo Black', sans-serif;
	font-size: clamp(1.05rem, 2vw, 1.5rem);
	line-height: 1.5;
	color: var(--zorr-cream);
}

.zorr-order-btn {
	display: inline-block;
	margin-top: 2.4rem;
	background: var(--zorr-yellow);
	color: var(--zorr-red-dark);
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-weight: 700;
	font-size: clamp(1.15rem, 1.7vw, 1.5rem);
	text-decoration: none;
	padding: 0.85rem 3rem;
	transition: transform 0.2s ease;
}
.zorr-order-btn:hover { transform: scale(1.04); }

/* ---------- location + hours ---------- */
.zorr-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.6rem;
	opacity: 0;                  /* hidden until JS reveals */
}

.zorr-tag {
	display: inline-block;
	background: var(--zorr-yellow);
	color: var(--zorr-red-dark);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: clamp(0.85rem, 1.2vw, 1.05rem);
	padding: 0.55rem 1.6rem;
	margin-bottom: 1.1rem;
	text-decoration: none;
	transition: transform 0.2s ease;
}
a.zorr-tag:hover { transform: scale(1.05); }

.zorr-info-block p {
	margin: 0;
	font-size: clamp(1rem, 1.9vw, 1.4rem);
	line-height: 1.5;
	color: var(--zorr-cream);
}

.zorr-addr {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}
.zorr-addr:hover { color: var(--zorr-yellow); }

/* ---------- scroll hint ---------- */
.zorr-scroll-hint {
	position: absolute;
	left: 50%;
	bottom: 1.6rem;
	transform: translateX(-50%);
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-size: 0.85rem;
	letter-spacing: 0.15em;
	color: var(--zorr-cream);
	opacity: 0.5;
	z-index: 4;
	pointer-events: none;
}

@media (max-width: 640px) {
	.zorr-band { top: 33%; }
	.zorr-band-row { gap: 5vw; }
	.zorr-band-row span { font-size: 15vw; }   /* both ZORRs stay readable, minimal bleed */
	.zorr-script { font-size: 5vw; right: 5%; bottom: -0.5em; }

	.zorr-bowl { width: 80vw; height: 80vw; top: 33%; }

	.zorr-mission, .zorr-info { top: 56%; width: 90vw; }
	.zorr-mission p { font-size: 0.95rem; line-height: 1.45; }
	.zorr-order-btn { font-size: 1.05rem; padding: 0.75rem 2.4rem; margin-top: 1.8rem; }

	.zorr-info { gap: 1.8rem; }
	.zorr-tag { font-size: 0.8rem; padding: 0.5rem 1.3rem; margin-bottom: 0.8rem; }
	.zorr-info-block p { font-size: 1.05rem; }
	.zorr-scroll-hint { bottom: 1rem; }
}

/* very short / small phones */
@media (max-width: 640px) and (max-height: 700px) {
	.zorr-mission p { font-size: 0.88rem; }
	.zorr-bowl { width: 72vw; height: 72vw; top: 31%; }
	.zorr-mission, .zorr-info { top: 55%; }
}
