/* oc-scroll.css — home page: fixed header, full-screen map + blog-style sections. */

/* ── first screen: brand header bar + map fill exactly one viewport ───────── */
html { scroll-behavior: smooth; }

/* ══ Fixed home header — transparent over the hero, frosts on scroll ══════ */
.oc-hdr {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 72px;
	z-index: 55;
	display: flex;
	align-items: center;
	background: transparent;
	border-bottom: 1px solid transparent;
	box-shadow: none;
	transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.oc-hdr.is-frosted {
	background: rgba(8, 17, 10, .9);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(237, 171, 46, .18);
	box-shadow: 0 10px 34px rgba(0, 0, 0, .4);
}
.oc-hdr__inner {
	width: 100%;
	max-width: 1160px;          /* align header content to the site content width */
	margin: 0 auto;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 22px;
}
/* legibility over bright imagery when transparent */
.oc-hdr__brand,
.oc-hdr__nav a,
.oc-hdr__login,
.oc-hdr__vip { text-shadow: 0 1px 6px rgba(0, 0, 0, .45); }
.oc-hdr__logo svg,
.oc-hdr__logo img {
	height: 38px;
	width: auto;
	display: block;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .5));
}

/* left: shield + wordmark + kicker */
.oc-hdr__brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.oc-hdr__brandtext { display: flex; flex-direction: column; line-height: 1; }
.oc-hdr__kicker {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--oc-gold, #edab2e);
	margin-bottom: 3px;
}
.oc-hdr__word {
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: 19px;
	letter-spacing: .01em;
	color: #f3efe2;
}

/* center: nav */
.oc-hdr__nav { display: flex; gap: 26px; margin: 0 auto; align-items: center; }
.oc-hdr__nav ul { display: contents; }
.oc-hdr__nav li { list-style: none; margin: 0; padding: 0; }
.oc-hdr__nav a {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: #f3efe2;
	text-decoration: none;
	transition: color .15s ease;
}
.oc-hdr__nav a:hover,
.oc-hdr__nav a:focus-visible { color: var(--oc-gold, #edab2e); }
.oc-hdr__nav-cta { display: none; } /* mobile-only; revealed inside the burger dropdown */

/* right: log-in ghost pill + Go VIP pill */
.oc-hdr__actions { display: flex; align-items: center; gap: 10px; }
.oc-hdr__login {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	font-size: 13px;
	color: #f3efe2;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid rgba(243, 239, 226, .28);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	transition: border-color .15s ease, color .15s ease;
}
.oc-hdr__login:hover,
.oc-hdr__login:focus-visible { border-color: var(--oc-gold, #edab2e); color: var(--oc-gold, #edab2e); }
.oc-hdr__vip {
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: 13px;
	color: var(--oc-gold, #edab2e);
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid var(--oc-gold, #edab2e);
	transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}
.oc-hdr__vip:hover,
.oc-hdr__vip:focus-visible { background: rgba(237, 171, 46, .14); color: #f0d69a; }
.oc-hdr__vip.is-member {
	background: linear-gradient(180deg, #edab2e 0%, #e8821e 100%);
	color: #1a1205;
	border-color: transparent;
	box-shadow: 0 6px 18px rgba(237, 171, 46, .4);
}
.oc-hdr :focus-visible { outline: 2px solid var(--oc-gold, #edab2e); outline-offset: 3px; border-radius: 6px; }

/* mobile hamburger (hidden on desktop) */
.oc-hdr__burger {
	display: none;
	width: 40px;
	height: 40px;
	margin-left: 6px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
}
.oc-hdr__burger span {
	display: block;
	width: 22px;
	height: 2px;
	border-radius: 2px;
	background: #f3efe2;
	box-shadow: 0 1px 4px rgba(0, 0, 0, .45);
	transition: transform .25s ease, opacity .2s ease;
}

@media (max-width: 640px) {
	.oc-hdr__inner { padding: 0 16px; }
	.oc-hdr__burger { display: flex; margin-left: auto; }
	/* top bar = brand + burger only; Log in / Go VIP move into the dropdown */
	.oc-hdr__actions { display: none; }

	/* dim scrim behind the open panel — tap it to close (JS: outside-click) */
	.oc-hdr::after {
		content: '';
		position: fixed;
		inset: 0;
		background: rgba(6, 12, 8, .55);
		-webkit-backdrop-filter: blur(2px);
		backdrop-filter: blur(2px);
		opacity: 0;
		visibility: hidden;
		transition: opacity .28s ease, visibility .28s ease;
		z-index: -1;
	}
	.oc-hdr.nav-open::after { opacity: 1; visibility: visible; }

	/* center nav becomes an animated dropdown panel under the header */
	.oc-hdr__nav {
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		margin: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: rgba(8, 17, 10, .98);
		-webkit-backdrop-filter: blur(16px);
		backdrop-filter: blur(16px);
		border-bottom: 1px solid rgba(237, 171, 46, .22);
		box-shadow: 0 20px 44px rgba(0, 0, 0, .5);
		padding: 8px 0 16px;
		max-height: calc(100vh - 72px);
		overflow-y: auto;
		overscroll-behavior: contain;
		/* animate in/out instead of a hard show/hide */
		display: flex;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: opacity .26s ease, transform .26s ease, visibility .26s ease;
	}
	.oc-hdr.nav-open .oc-hdr__nav {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	/* menu links: full-width rows with a divider + chevron affordance */
	.oc-hdr__nav a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 16px 22px;
		font-size: 16px;
		font-weight: 600;
		color: #f3efe2;
		text-shadow: none;
		border-bottom: 1px solid rgba(243, 239, 226, .07);
		transition: background .15s ease, color .15s ease, padding-left .15s ease;
	}
	.oc-hdr__nav li:last-of-type a { border-bottom: 0; }
	.oc-hdr__nav a::after {
		content: '›';
		font-size: 20px;
		line-height: 1;
		color: rgba(237, 171, 46, .55);
		transition: transform .15s ease, color .15s ease;
	}
	.oc-hdr__nav a:hover,
	.oc-hdr__nav a:focus-visible,
	.oc-hdr__nav a:active {
		background: rgba(237, 171, 46, .1);
		color: var(--oc-gold, #edab2e);
		padding-left: 26px;
	}
	.oc-hdr__nav a:hover::after,
	.oc-hdr__nav a:focus-visible::after { color: var(--oc-gold, #edab2e); transform: translateX(3px); }
	/* the current page gets a gold rail on the left */
	.oc-hdr__nav .current-menu-item a,
	.oc-hdr__nav .current_page_item a {
		box-shadow: inset 3px 0 0 var(--oc-gold, #edab2e);
		color: var(--oc-gold, #edab2e);
	}

	/* Log in + Go VIP block at the bottom of the dropdown */
	.oc-hdr__nav-cta {
		display: flex;
		flex-direction: column;
		gap: 10px;
		margin: 10px 16px 2px;
		padding-top: 16px;
		border-top: 1px solid rgba(237, 171, 46, .16);
	}
	.oc-hdr__m-login,
	.oc-hdr__m-vip {
		display: block;
		padding: 13px 18px;
		border-radius: 11px;
		font-family: 'Space Grotesk', sans-serif;
		font-weight: 700;
		font-size: 15px;
		text-align: center;
		text-decoration: none;
		text-shadow: none;
	}
	.oc-hdr__m-login {
		border: 1px solid rgba(243, 239, 226, .38);
		color: #f3efe2;
	}
	.oc-hdr__m-vip {
		background: linear-gradient(180deg, #f2b53c 0%, #e8821e 100%);
		color: #1a1205;
	}
	.oc-hdr__m-vip.is-member {
		background: rgba(237, 171, 46, .16);
		color: #f0d69a;
		border: 1px solid rgba(237, 171, 46, .5);
	}

	/* burger → X when open */
	.oc-hdr.nav-open .oc-hdr__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.oc-hdr.nav-open .oc-hdr__burger span:nth-child(2) { opacity: 0; }
	.oc-hdr.nav-open .oc-hdr__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* nav anchors land below the 72px fixed header */
.oc-scene { scroll-margin-top: 72px; }
#map-screen { scroll-margin-top: 0; }

/* ── back-to-top button (bottom-right, appears past the map) ──────────────── */
.oc-toup {
	position: fixed;
	right: clamp(16px, 3vw, 28px);
	bottom: clamp(16px, 3vw, 28px);
	z-index: 50;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(26, 18, 5, 0.15);
	background: linear-gradient(180deg, #edab2e 0%, #e8821e 100%);
	color: #1a1205;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px) scale(0.9);
	transition: opacity .3s ease, transform .3s ease, visibility .3s ease, filter .15s ease;
}
.oc-toup.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
	animation: ocToUpBob 2s ease-in-out infinite;
}
.oc-toup:hover { filter: brightness(1.06); }
.oc-toup:focus-visible { outline: 2px solid #f3efe2; outline-offset: 3px; }

@keyframes ocToUpBob {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-5px); }
}
@media (prefers-reduced-motion: reduce) {
	.oc-toup { transition: opacity .2s ease, visibility .2s ease; }
	.oc-toup.is-visible { animation: none; transform: none; }
}

.oc-firstscreen {
	position: relative;
	width: 100%;
	height: 100vh;
	height: 100svh;       /* the FULL second screen */
	overflow: hidden;
}

/* ── animated scroll-down cue (bottom centre of the map screen) ───────────── */
.oc-scrollcue {
	position: absolute;
	left: 50%;
	bottom: clamp(16px, 3.2vh, 34px);
	transform: translateX(-50%);
	z-index: 900;                          /* above the map, below the detail panel (1000) */
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}
.oc-scrollcue__label {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: #046a55;
	padding-left: 0.3em;                    /* offset the trailing letter-spacing */
	text-shadow: 0 1px 8px rgba(255, 255, 255, 0.4);
	animation: ocCueFade 2s ease-in-out infinite;
}
.oc-scrollcue__btn {
	position: relative;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: radial-gradient(circle at 50% 35%, #0a8a6d 0%, #046a55 72%);
	border: 2px solid #046a55;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 26px rgba(4, 106, 85, 0.5);
	animation: ocCueBob 1.8s ease-in-out infinite;
}
/* pulsing halo rings that ripple outward */
.oc-scrollcue__btn::before,
.oc-scrollcue__btn::after {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 50%;
	border: 2px solid rgba(4, 106, 85, 0.6);
	animation: ocCuePulse 2s ease-out infinite;
	pointer-events: none;
}
.oc-scrollcue__btn::after { animation-delay: 1s; }
.oc-scrollcue__arrow {
	width: 13px;
	height: 13px;
	border-right: 3px solid #f3efe2;
	border-bottom: 3px solid #f3efe2;
	transform: rotate(45deg);
	animation: ocCueArrow 1.4s ease-in-out infinite;
}
.oc-scrollcue:hover .oc-scrollcue__btn {
	background: radial-gradient(circle at 50% 35%, #0c9d7c 0%, #046a55 72%);
	box-shadow: 0 0 38px rgba(4, 106, 85, 0.78);
}

@keyframes ocCueBob {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(9px); }
}
@keyframes ocCuePulse {
	0%   { transform: scale(1);   opacity: 0.7; }
	100% { transform: scale(2);   opacity: 0; }
}
@keyframes ocCueArrow {
	0%, 100% { opacity: 0.4; transform: rotate(45deg) translate(-3px, -3px); }
	50%      { opacity: 1;   transform: rotate(45deg) translate(1px, 1px); }
}
@keyframes ocCueFade {
	0%, 100% { opacity: 0.55; }
	50%      { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.oc-scrollcue__label,
	.oc-scrollcue__btn,
	.oc-scrollcue__btn::before,
	.oc-scrollcue__btn::after,
	.oc-scrollcue__arrow { animation: none; }
}
/* the fixed .oc-hdr replaces the old oc-menu app bar on the home hero */
.oc-firstscreen .oc-main--app { display: none; }

/* the map fills the ENTIRE first screen (100% × 100%), behind the nav overlay */
.oc-firstscreen .ocal-home-section {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 0 !important;
	margin: 0 !important;
}
/* force the whole inner leaflet chain to full height (defeat inherited fixed heights) */
.oc-firstscreen .ocal-home-section .oc-main--album,
.oc-firstscreen .ocal-home-section .ocal-body,
.oc-firstscreen .ocal-home-section .ocal-mapwrap,
.oc-firstscreen .ocal-home-section .ocal-mapcont--leaflet {
	height: 100% !important;
	min-height: 0 !important;
}

/* brand-green behind the map so zoom-out margins look intentional (not Leaflet grey) */
.ocal-mapcont--leaflet,
.ocal-mapcont--leaflet .ocal-leaflet,
.ocal-mapcont--leaflet .leaflet-container { background: #0c1c12; }

/* marker hover tooltip — track name + location */
.leaflet-tooltip.ocal-tip {
	background: #0f3d2c;
	color: #f3efe2;
	border: 1px solid rgba(237, 171, 46, 0.5);
	border-radius: 10px;
	padding: 7px 12px;
	font-family: 'Space Grotesk', sans-serif;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
	white-space: nowrap;
	text-align: center;
}
.leaflet-tooltip.ocal-tip strong {
	display: block;
	font-family: 'Syne', 'Space Grotesk', sans-serif;
	font-weight: 800;
	font-size: 14px;
	line-height: 1.1;
	color: #f3efe2;
}
.ocal-tip__area {
	display: block;
	font-size: 11px;
	font-weight: 600;
	color: var(--oc-gold, #edab2e);
	margin-top: 2px;
}
.leaflet-tooltip-top.ocal-tip::before    { border-top-color: #0f3d2c; }
.leaflet-tooltip-bottom.ocal-tip::before { border-bottom-color: #0f3d2c; }
.leaflet-tooltip-left.ocal-tip::before   { border-left-color: #0f3d2c; }
.leaflet-tooltip-right.ocal-tip::before  { border-right-color: #0f3d2c; }

/* clean on-brand map title (hidden — the header now carries "The Orange Map" branding) */
.ocal-map-title {
	display: none;
	position: absolute;
	top: clamp(72px, 11%, 100px);       /* sits just below the overlay nav */
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	text-align: center;
	pointer-events: none;               /* let map drags pass through */
	padding: 12px 26px;
	border-radius: 16px;
	background: rgba(7, 18, 10, 0.42);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	border: 1px solid rgba(237, 171, 46, 0.3);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	max-width: min(92vw, 520px);
}
.ocal-map-title__eyebrow {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--oc-gold, #edab2e);
}
.ocal-map-title__name {
	font-family: 'Syne', 'Space Grotesk', sans-serif;
	font-weight: 800;
	font-size: clamp(20px, 3.4vw, 30px);
	line-height: 1;
	color: #f3efe2;
}
.ocal-map-title__sub {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: rgba(243, 239, 226, 0.82);
}
@media (max-width: 600px) {
	.ocal-map-title { top: 62px; padding: 9px 18px; }
}


/* ───────────────────────── VIP map rail (left column) ───────────────────── */

.ocal-home-section .ocal-screen--map { flex-direction: row; }

/* force the membership column LEFT, map RIGHT (detail panel slides in on the right) */
.ocal-home-section .ocal-sidebar--vip {
	order: 0;
	flex-shrink: 0;
	height: 100%;
	overflow-y: auto;
	border-left: 0;
	border-right: 3px solid rgba(237, 171, 46, 0.25);
	background: linear-gradient(180deg, #15301f 0%, #0c1c12 100%);
	color: var(--oc-cream, #f3efe2);
}
.ocal-home-section .ocal-mapwrap { order: 1; }

.oc-viprail {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: clamp(20px, 3vw, 34px) clamp(18px, 2vw, 26px);
	min-height: 100%;
}
.oc-viprail__eyebrow {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--oc-gold, #edab2e);
}
.oc-viprail__title {
	margin: 0;
	font-family: 'Syne', 'Space Grotesk', sans-serif;
	font-weight: 800;
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1;
	color: var(--oc-cream, #f3efe2);
}
.oc-viprail__price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
}
.oc-viprail__price strong {
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: clamp(26px, 3.4vw, 38px);
	color: var(--oc-gold, #edab2e);
}
.oc-viprail__price span {
	font-size: 13px;
	color: rgba(243, 239, 226, 0.72);
}
.oc-viprail__benefits {
	list-style: none;
	margin: 4px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.oc-viprail__benefits li {
	position: relative;
	padding-left: 24px;
	font-size: 14px;
	line-height: 1.4;
	color: rgba(243, 239, 226, 0.9);
}
.oc-viprail__benefits li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--oc-green-600, #3e9b63);
	font-weight: 700;
}
.oc-viprail__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: 6px;
	padding: 13px 20px;
	border-radius: 999px;
	background: var(--oc-gold, #edab2e);
	color: #1a1205;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: transform 0.15s ease, filter 0.15s ease;
}
.oc-viprail__btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.oc-viprail__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 6px;
	padding: 11px 18px;
	border-radius: 999px;
	border: 1px solid rgba(237, 171, 46, 0.5);
	background: rgba(237, 171, 46, 0.12);
	color: var(--oc-gold, #edab2e);
	font-weight: 700;
	font-size: 14px;
	align-self: flex-start;
}
.oc-viprail__hint {
	margin: auto 0 0;
	padding-top: 14px;
	font-size: 12px;
	line-height: 1.5;
	color: rgba(243, 239, 226, 0.55);
}

@media (max-width: 860px) {
	.ocal-home-section .ocal-screen--map { flex-direction: column; }
	.ocal-home-section .ocal-sidebar--vip {
		order: 1;
		width: 100% !important;
		height: auto;
		border-right: 0;
		border-top: 3px solid rgba(237, 171, 46, 0.25);
	}
	.oc-viprail { min-height: 0; }
	.oc-viprail__hint { margin-top: 10px; }
}

/* ───────────────────────── blog-style scroll scenes ─────────────────────── */

.oc-scenes { position: relative; }

.oc-scene {
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(48px, 8vh, 96px) clamp(20px, 6vw, 90px);
	scroll-margin-top: 0;
}
.oc-scene--merch {
	background: radial-gradient(120% 90% at 50% 0%, #15301f 0%, #0c1c12 60%, #07120a 100%);
	color: var(--oc-cream, #f3efe2);
}
.oc-scene--member {
	background: linear-gradient(160deg, #0f3d2c 0%, #1c6b4f 100%);
	color: var(--oc-cream, #f3efe2);
}
.oc-scene--events {
	background: radial-gradient(120% 90% at 50% 100%, #15301f 0%, #0c1c12 60%, #07120a 100%);
	color: var(--oc-cream, #f3efe2);
}

.oc-scene__head { max-width: 1100px; margin: 0 auto 34px; width: 100%; }
.oc-scene__eyebrow {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--oc-gold, #edab2e);
}
.oc-scene__title {
	margin: 8px 0 6px;
	font-family: 'Syne', 'Space Grotesk', sans-serif;
	font-weight: 800;
	font-size: clamp(27px, 6.5vw, 66px);
	line-height: 1.04;
	overflow-wrap: break-word;
	hyphens: auto;
}
.oc-scene__sub {
	margin: 0;
	max-width: 60ch;
	font-size: clamp(14px, 3.4vw, 18px);
	line-height: 1.5;
	color: rgba(243, 239, 226, 0.78);
	overflow-wrap: break-word;
}

/* shop grid — Section 01 · Merch Store */
.oc-shopgrid {
	max-width: 1160px;
	margin: 0 auto;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 22px;
}
.oc-shopcard {
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(237, 171, 46, 0.18);
	border-radius: 20px;
	padding: 14px;
	transition: transform 0.16s ease, border-color 0.16s ease;
}
.oc-shopcard:hover { transform: translateY(-3px); border-color: rgba(237, 171, 46, 0.5); }
.oc-shopcard__media {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: 14px;
	background: #ded7c4 center / cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.oc-shopcard__tag {
	position: absolute;
	top: 10px;
	left: 12px;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: rgba(60, 40, 20, 0.45);
}
.oc-shopcard__ph { color: rgba(60, 40, 20, 0.28); }
.oc-shopcard__body { padding: 14px 6px 4px; display: flex; flex-direction: column; }
.oc-shopcard__name {
	margin: 0;
	font-family: 'Syne', 'Space Grotesk', sans-serif;
	font-weight: 800;
	font-size: clamp(15px, 4.4vw, 19px);
	line-height: 1.1;
	color: var(--oc-cream, #f3efe2);
	overflow-wrap: break-word;
}
.oc-shopcard__cat {
	margin: 3px 0 10px;
	font-size: 12px;
	color: rgba(243, 239, 226, 0.55);
}
.oc-shopcard__price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}
.oc-shopcard__reg {
	color: rgba(243, 239, 226, 0.45);
	font-weight: 600;
	font-size: 15px;
}
.oc-shopcard__member {
	color: var(--oc-gold, #edab2e);
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: clamp(19px, 5.4vw, 23px);
	line-height: 1;
}
.oc-shopcard__badge {
	padding: 3px 9px;
	border-radius: 999px;
	background: rgba(237, 171, 46, 0.16);
	border: 1px solid rgba(237, 171, 46, 0.4);
	color: var(--oc-gold, #edab2e);
	font-family: 'Space Grotesk', sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.oc-shopcard__btn {
	display: block;
	margin-top: auto;
	text-align: center;
	padding: 12px 16px;
	border-radius: 10px;
	background: linear-gradient(180deg, #f2b53c 0%, #e8821e 100%);
	color: #1a1205;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: filter 0.15s ease, transform 0.15s ease;
}
.oc-shopcard__btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.oc-scene__cta {
	display: inline-flex;
	align-self: center;
	margin-top: 30px;
	padding: 14px 30px;
	border-radius: 999px;
	background: var(--oc-gold, #edab2e);
	color: #1a1205;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.15s ease, filter 0.15s ease;
}
.oc-scene__cta:hover { transform: translateY(-1px); filter: brightness(1.05); }
.oc-scene__cta--ghost {
	background: transparent;
	color: var(--oc-cream, #f3efe2);
	border: 1px solid rgba(243, 239, 226, 0.4);
}

/* membership scene */
.oc-memberwrap {
	max-width: 720px;
	margin: 0 auto;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
.oc-memberwrap .oc-scene__title { font-size: clamp(38px, 7vw, 74px); }
.oc-member-price {
	display: inline-flex;
	align-items: baseline;
	gap: 10px;
}
.oc-member-price strong {
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: clamp(46px, 9vw, 88px);
	color: var(--oc-gold, #edab2e);
	line-height: 1;
}
.oc-member-price span { font-size: 16px; color: rgba(243, 239, 226, 0.82); }
.oc-member-benefits {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 14px;
}
.oc-member-benefits li {
	padding: 9px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(243, 239, 226, 0.18);
	font-size: 14px;
	font-weight: 500;
}
.oc-member-tagline {
	margin: 0;
	font-family: 'Syne', 'Space Grotesk', sans-serif;
	font-size: clamp(16px, 2.4vw, 22px);
	font-weight: 600;
	color: rgba(243, 239, 226, 0.9);
}
.oc-member-discount {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: 999px;
	background: var(--oc-gold, #edab2e);
	color: #1a1205;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	font-size: clamp(13px, 2vw, 16px);
	letter-spacing: 0.01em;
	box-shadow: 0 6px 20px rgba(237, 171, 46, 0.35);
}
.oc-member-account {
	margin: 6px 0 0;
	font-size: 14px;
	color: rgba(243, 239, 226, 0.72);
}
.oc-member-account a {
	color: var(--oc-gold, #edab2e);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* events scene */
.oc-eventlist {
	max-width: 820px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.oc-eventrow {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 18px 22px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(237, 171, 46, 0.16);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.16s ease, transform 0.16s ease;
}
.oc-eventrow:hover { border-color: rgba(237, 171, 46, 0.45); transform: translateX(3px); }
.oc-eventrow__date {
	flex-shrink: 0;
	min-width: 84px;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	color: var(--oc-gold, #edab2e);
	font-size: 14px;
}
.oc-eventrow__body { display: flex; flex-direction: column; gap: 2px; }
.oc-eventrow__title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 17px; }
.oc-eventrow__area { font-size: 13px; color: rgba(243, 239, 226, 0.66); }
.oc-scene__empty { text-align: center; color: rgba(243, 239, 226, 0.6); font-size: 15px; }

/* videos scene */
.oc-scene--videos {
	background: radial-gradient(120% 90% at 50% 0%, #15301f 0%, #0c1c12 60%, #07120a 100%);
	color: var(--oc-cream, #f3efe2);
}
.oc-videowrap {
	max-width: 960px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}
.oc-video {
	width: 100%;
	aspect-ratio: 16 / 9;
	max-height: 70vh;
	border-radius: 16px;
	border: 1px solid rgba(237, 171, 46, 0.25);
	background: #000;
	object-fit: contain;            /* show the whole clip, any orientation */
	display: block;
}
.oc-video--embed {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	max-height: 70vh;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(237, 171, 46, 0.25);
	background: #000;
}
.oc-video--embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.oc-video__label { margin: 0; font-size: 14px; color: rgba(243, 239, 226, 0.7); }

/* ── Membership: VIP card + OCNIANS Community Account card (Section 02) ───── */
.oc-scene--member {
	background: radial-gradient(120% 90% at 80% 8%, #17402b 0%, #0c1c12 52%, #07120a 100%);
}
.oc-memgrid {
	max-width: 1100px;
	margin: 0 auto;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	align-items: start;
}
@media (max-width: 860px) {
	.oc-memgrid { grid-template-columns: 1fr; gap: 20px; }
}

/* VIP card (left) */
.oc-vipcard {
	border-radius: 22px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(30, 60, 40, 0.5), rgba(12, 28, 18, 0.65));
	border: 1px solid rgba(237, 171, 46, 0.28);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.oc-vipcard__top {
	position: relative;
	padding: 26px 28px 30px;
	background: linear-gradient(135deg, #f4bd45 0%, #e8901e 100%);
	color: #2a1c05;
	overflow: hidden;
}
.oc-vipcard__star {
	position: absolute;
	right: -12px;
	top: -26px;
	font-size: 150px;
	line-height: 1;
	color: rgba(255, 255, 255, 0.18);
	pointer-events: none;
}
.oc-vipcard__eyebrow {
	position: relative;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(42, 28, 5, 0.6);
}
.oc-vipcard__price { position: relative; display: flex; align-items: baseline; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.oc-vipcard__price strong { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(28px, 6.5vw, 52px); line-height: 1; }
.oc-vipcard__price span { font-size: 15px; font-weight: 600; color: rgba(42, 28, 5, 0.72); }
.oc-vipcard__body { padding: 22px 26px 26px; }
.oc-vipcard__benefits { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.oc-vipcard__benefits li { display: flex; gap: 12px; align-items: flex-start; }
.oc-vipcard__check {
	flex-shrink: 0;
	width: 22px; height: 22px;
	border-radius: 50%;
	background: rgba(62, 155, 99, 0.22);
	border: 1px solid rgba(62, 155, 99, 0.6);
	color: #7ed49b;
	display: flex; align-items: center; justify-content: center;
	font-size: 12px; font-weight: 700;
	margin-top: 2px;
}
.oc-vipcard__btext { display: flex; flex-direction: column; gap: 2px; }
.oc-vipcard__btext strong { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; color: var(--oc-cream, #f3efe2); }
.oc-vipcard__btext em { font-style: normal; font-size: 13px; color: rgba(243, 239, 226, 0.6); }
.oc-vipcard__status {
	display: block; text-align: center; width: 100%;
	padding: 15px; border-radius: 12px;
	font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px;
	text-decoration: none;
	box-sizing: border-box;
}
.oc-vipcard__status--active { border: 1px solid rgba(62, 155, 99, 0.7); background: rgba(62, 155, 99, 0.12); color: #7ed49b; }
.oc-vipcard__status--join { background: linear-gradient(180deg, #f2b53c, #e8821e); color: #1a1205; }
.oc-vipcard__status--join:hover { filter: brightness(1.05); }
.oc-vipcard__note { margin: 10px 0 0; text-align: center; font-size: 12px; color: rgba(243, 239, 226, 0.45); }

/* OCNIANS Community Account card (right) */
.oc-acctcard {
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(18, 40, 27, 0.7), rgba(10, 24, 16, 0.82));
	border: 1px solid rgba(237, 171, 46, 0.18);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.oc-acctcard__top {
	display: flex; align-items: center; gap: 14px;
	padding: 22px 24px;
	background: linear-gradient(135deg, rgba(28, 107, 79, 0.5), rgba(15, 61, 44, 0.55));
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.oc-acctcard__avatar {
	flex-shrink: 0;
	width: 46px; height: 46px; border-radius: 50%;
	background: linear-gradient(135deg, #f4bd45, #e8901e);
	color: #1a1205;
	display: flex; align-items: center; justify-content: center;
	font-family: 'Syne', sans-serif; font-weight: 800; font-size: 22px;
}
.oc-acctcard__id { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.oc-acctcard__eyebrow { font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(237, 171, 46, 0.85); }
.oc-acctcard__name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(17px, 4.6vw, 20px); color: var(--oc-cream, #f3efe2); line-height: 1.1; overflow-wrap: break-word; }
.oc-acctcard__meta { font-size: clamp(11px, 3vw, 12px); color: rgba(243, 239, 226, 0.62); overflow-wrap: break-word; }
.oc-acctcard__qr { flex-shrink: 0; width: 40px; height: 40px; border-radius: 8px; background: #fff; padding: 3px; box-sizing: border-box; }
.oc-acctcard__list { padding: 6px 24px 18px; display: flex; flex-direction: column; }
.oc-acctcard__listhead { font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(243, 239, 226, 0.4); padding: 14px 0 4px; }
.oc-acctrow { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.oc-acctrow__ico { flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px; background: rgba(255, 255, 255, 0.06); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.oc-acctrow__label { flex: 1; font-size: 14px; color: rgba(243, 239, 226, 0.85); }
.oc-acctrow__val { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px; color: var(--oc-cream, #f3efe2); white-space: nowrap; }
.oc-acctrow__val.is-gold { color: var(--oc-gold, #edab2e); }
.oc-acctcard__signin { display: block; text-align: center; padding: 14px; margin: 0 24px 22px; border-radius: 12px; border: 1px solid rgba(237, 171, 46, 0.4); color: var(--oc-gold, #edab2e); text-decoration: none; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px; }
.oc-acctcard__signin:hover { background: rgba(237, 171, 46, 0.1); }
.oc-acctcard__forum { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; margin: 6px 24px 22px; border-radius: 12px; background: rgba(237, 171, 46, 0.14); border: 1px solid rgba(237, 171, 46, 0.4); color: var(--oc-gold, #edab2e); text-decoration: none; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px; transition: background 0.15s; }
.oc-acctcard__forum:hover { background: rgba(237, 171, 46, 0.24); }

/* ── Events: Section 03 · Out in Orange County ───────────────────────────── */
.oc-evlist {
	max-width: 1000px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.oc-evrow {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 16px 20px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: border-color 0.16s ease, transform 0.16s ease;
}
.oc-evrow:hover { border-color: rgba(237, 171, 46, 0.4); transform: translateY(-2px); }
.oc-evrow--vip {
	background: linear-gradient(100deg, rgba(28, 107, 79, 0.35) 0%, rgba(12, 28, 18, 0.4) 60%);
	border-color: rgba(237, 171, 46, 0.45);
	box-shadow: 0 0 0 1px rgba(237, 171, 46, 0.15), 0 16px 40px rgba(0, 0, 0, 0.3);
}
.oc-evrow__date {
	flex-shrink: 0;
	width: 62px;
	height: 62px;
	border-radius: 14px;
	background: linear-gradient(180deg, #1c6b4f 0%, #12442f 100%);
	border: 1px solid rgba(237, 171, 46, 0.3);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
.oc-evrow__date em {
	font-style: normal;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--oc-gold, #edab2e);
	margin-bottom: 3px;
}
.oc-evrow__date strong {
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: 24px;
	color: var(--oc-cream, #f3efe2);
}
.oc-evrow__main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.oc-evrow__titles { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.oc-evrow__title {
	margin: 0;
	font-family: 'Syne', 'Space Grotesk', sans-serif;
	font-weight: 800;
	font-size: clamp(15px, 4vw, 20px);
	color: var(--oc-cream, #f3efe2);
	line-height: 1.15;
	overflow-wrap: break-word;
}
.oc-evrow__tag {
	padding: 3px 9px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: rgba(243, 239, 226, 0.7);
	font-family: 'Space Grotesk', sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	white-space: nowrap;
}
.oc-evrow__tag.is-vip {
	background: rgba(237, 171, 46, 0.16);
	border-color: rgba(237, 171, 46, 0.5);
	color: var(--oc-gold, #edab2e);
}
.oc-evrow__meta { font-size: 13px; color: rgba(243, 239, 226, 0.62); display: flex; align-items: center; gap: 6px; }
.oc-evrow__pin { font-size: 12px; }
.oc-evrow__rsvp {
	flex-shrink: 0;
	padding: 11px 26px;
	border: 0;
	border-radius: 10px;
	background: linear-gradient(180deg, #f2b53c 0%, #e8821e 100%);
	color: #1a1205;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	cursor: pointer;
	transition: filter 0.15s ease, transform 0.15s ease;
}
.oc-evrow__rsvp:hover { filter: brightness(1.05); transform: translateY(-1px); }
.oc-evrow__actions { flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
.oc-evrow__details {
	flex-shrink: 0;
	padding: 10px 20px;
	border: 1px solid rgba(237, 171, 46, 0.55);
	border-radius: 10px;
	background: transparent;
	color: #edc97a;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.oc-evrow__details:hover { background: rgba(237, 171, 46, 0.14); color: #edab2e; transform: translateY(-1px); }
.oc-evrow__title a { color: inherit; text-decoration: none; transition: color .15s ease; }
.oc-evrow__title a:hover { color: #edab2e; text-decoration: underline; }
@media (max-width: 620px) {
	.oc-evrow { flex-wrap: wrap; gap: 12px 14px; }
	.oc-evrow__main { flex-basis: calc(100% - 80px); }
	.oc-evrow__actions { width: 100%; }
	.oc-evrow__details, .oc-evrow__rsvp { flex: 1; text-align: center; }
}

/* ── RSVP modal ──────────────────────────────────────────────────────────── */
.oc-rsvp[hidden] { display: none; }
.oc-rsvp {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.oc-rsvp__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 26, 20, 0.72);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	animation: ocRsvpFade 0.2s ease;
}
.oc-rsvp__card {
	position: relative;
	width: min(420px, 100%);
	padding: 34px 30px 30px;
	border-radius: 20px;
	background: linear-gradient(165deg, #0f4b38 0%, #0a3628 100%);
	border: 1px solid rgba(237, 171, 46, 0.35);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
	color: #f4f1e8;
	animation: ocRsvpPop 0.24s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.oc-rsvp__x {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #f4f1e8;
	font-size: 15px;
	cursor: pointer;
	transition: background 0.15s ease;
}
.oc-rsvp__x:hover { background: rgba(255, 255, 255, 0.18); }
.oc-rsvp__eyebrow {
	display: inline-block;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #edab2e;
}
.oc-rsvp__title {
	margin: 8px 0 4px;
	font-family: 'Syne', 'Space Grotesk', sans-serif;
	font-size: clamp(22px, 5vw, 28px);
	font-weight: 800;
	line-height: 1.1;
}
.oc-rsvp__event {
	margin: 0 0 20px;
	font-size: 15px;
	color: rgba(244, 241, 232, 0.75);
}
.oc-rsvp__event:empty { display: none; }
.oc-rsvp__form { display: flex; flex-direction: column; gap: 12px; }
.oc-rsvp__form input[type="text"],
.oc-rsvp__form input[type="email"] {
	width: 100%;
	padding: 13px 15px;
	border-radius: 11px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(0, 0, 0, 0.22);
	color: #f4f1e8;
	font-size: 15px;
	font-family: inherit;
}
.oc-rsvp__form input::placeholder { color: rgba(244, 241, 232, 0.5); }
.oc-rsvp__form input:focus {
	outline: none;
	border-color: #edab2e;
	box-shadow: 0 0 0 3px rgba(237, 171, 46, 0.2);
}
.oc-rsvp__submit {
	margin-top: 4px;
	padding: 13px 20px;
	border: 0;
	border-radius: 11px;
	background: linear-gradient(180deg, #f2b53c 0%, #e8821e 100%);
	color: #1a1205;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	transition: filter 0.15s ease, transform 0.15s ease;
}
.oc-rsvp__submit:hover { filter: brightness(1.05); transform: translateY(-1px); }
.oc-rsvp__msg {
	margin: 4px 0 0;
	min-height: 1.1em;
	font-size: 14px;
	color: rgba(244, 241, 232, 0.8);
}
.oc-rsvp__msg.is-ok { color: #8be0b0; font-weight: 600; }
.oc-rsvp__msg.is-err { color: #f0a3a3; }
@keyframes ocRsvpFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes ocRsvpPop { from { opacity: 0; transform: translateY(14px) scale(0.97); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
	.oc-rsvp__backdrop, .oc-rsvp__card { animation: none; }
}

/* ── responsive refinements for the whole scroll flow ────────────────────── */
.oc-scenes { overflow-x: hidden; }        /* never let a section push the page sideways */

@media (max-width: 680px) {
	/* fonts scale fluidly via clamp() in the base rules — here we only adjust layout */
	.oc-scene { padding: clamp(40px, 7vh, 72px) 18px; }

	.oc-shopgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
	.oc-shopcard { padding: 10px; border-radius: 16px; }
	.oc-shopcard__btn { padding: 11px 12px; }

	.oc-memgrid { gap: 16px; }
	.oc-vipcard__top { padding: 22px 22px 26px; }
	.oc-vipcard__body { padding: 20px 20px 22px; }
	.oc-acctcard__top { padding: 18px; gap: 12px; }
	.oc-acctcard__meta { line-height: 1.35; }
	.oc-acctcard__list { padding: 4px 18px 16px; }

	.oc-video, .oc-video--embed { max-height: 54vh; }
}

@media (max-width: 400px) {
	.oc-shopgrid { grid-template-columns: 1fr; }
	.oc-evrow__date { width: 54px; height: 54px; }
	.oc-evrow__date strong { font-size: 22px; }
	.oc-acctrow__label { font-size: 13px; }
}
