@charset "UTF-8";

:root {
	--black: #070707;
	--deep: #0c0c0c;
	--card: #111111;
	--card2: #161616;
	--white: #f0ebe0;
	--gold: #c9a84c;
	--gold-l: #e8c96e;
	--gold-d: #7a5e18;
	--red: #aa1a1a;
	--red-b: #cc2020;
	--border: rgba(201, 168, 76, 0.25);
	--border-r: rgba(170, 26, 26, 0.3);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--black) url("../img/pattern.png");
	color: var(--white);
	overflow-x: hidden;
}
img {
	max-width:100%;
	height: auto;
}

/* ===== NAV ===== */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 900;
	background: rgba(7, 7, 7, 0.92);
	border-bottom: 1px solid var(--border);
	backdrop-filter: blur(12px);
}

.nav-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 24px;
	height: 60px;
}

.nav-menu {
	display: flex;
	gap: 4px;
	list-style: none;
}

.nav-menu a {
	font-family: 'Rye', serif;
	font-size: 1rem;
	color: rgba(240, 235, 224, 0.5);
	text-decoration: none;
	padding: 8px 12px;
	transition: color 0.2s;
	position: relative;
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 12px;
	right: 12px;
	height: 1px;
	background: var(--gold);
	transform: scaleX(0);
	transition: transform 0.2s;
}

.nav-menu a:hover {
	color: var(--gold);
}

.nav-menu a:hover::after {
	transform: scaleX(1);
}

@media(max-width:700px) {
	.nav-menu {
		overflow-x: auto;
		overflow-y: hidden;
	}
	.nav-inner {
		padding: 0;
	}
	.nav-menu a {
		padding: 8px 24px;
	}
}

/* ===== HERO ===== */
.hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding: 80px 20px 30px;
}

.hero-bg {
	position: absolute;
	inset: 0;
}

.hero-grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
	background-size: 80px 80px;
	mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 70%);
}

.hero-corner {
	position: absolute;
	width: 100px;
	height: 100px;
	border-color: var(--gold);
	border-style: solid;
	opacity: 0.35;
}

.hero-corner.tl {
	top: 24px;
	left: 24px;
	border-width: 2px 0 0 2px;
}

.hero-corner.tr {
	top: 24px;
	right: 24px;
	border-width: 2px 2px 0 0;
}

.hero-corner.bl {
	bottom: 24px;
	left: 24px;
	border-width: 0 0 2px 2px;
}

.hero-corner.br {
	bottom: 24px;
	right: 24px;
	border-width: 0 2px 2px 0;
}

.hero-eyebrow {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 0.8rem;
	letter-spacing: 0.5em;
	color: var(--gold);
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
	animation: fadeDown 0.9s ease both;
}

.hero-eyebrow span {
	width: 40px;
	height: 1px;
	background: var(--gold);
	opacity: 0.5;
}

.hero-main {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 1000px;
}

.hero-img-wrap {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 0;
	margin-bottom: 32px;
	animation: fadeDown 0.9s 0.1s ease both;
}

.hero-img-main {
	width: clamp(300px, 80vw, 1000px);
	filter: drop-shadow(0 0 40px rgba(170, 26, 26, 0.4));
	transition: transform 0.4s;
}


.hero-title-block {
	animation: fadeDown 0.9s 0.2s ease both;
}

.hero-light {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(0.7rem, 2vw, 1rem);
	letter-spacing: 0.6em;
	color: rgba(240, 235, 224, 0.4);
	margin-bottom: 6px;
}

.hero-title {
	font-size: clamp(2.2rem, 7vw, 5rem);
	font-weight: 800;
	line-height: 1;
	background: linear-gradient(135deg, var(--gold-l) 0%, var(--gold) 40%, var(--gold-d) 70%, var(--gold-l) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-sub {
	font-size: clamp(1rem, 3vw, 1.6rem);
	color: rgba(240, 235, 224, 0.7);
	letter-spacing: 0.1em;
	margin-top: 6px;
}

.hero-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 24px 0;
	animation: fadeDown 0.9s 0.3s ease both;
}

.hero-divider .ln {
	flex: 1;
	max-width: 120px;
	height: 1px;
}

.hero-divider .ln.l {
	background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-divider .ln.r {
	background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-divider .dm {
	width: 8px;
	height: 8px;
	background: var(--red);
	transform: rotate(45deg);
	box-shadow: 0 0 12px var(--red-b);
}

.hero-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	animation: fadeDown 0.9s 0.4s ease both;
}

.hero-meta-item {
	text-align: center;
}

.hero-meta-label {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.35em;
	color: var(--gold);
	margin-bottom: 4px;
}

.hero-meta-val {
	font-size: clamp(0.85rem, 2.5vw, 1.05rem);
	font-weight: 700;
	color: var(--white);
	line-height: 1.5;
}

.meta-sep {
	width: 1px;
	background: var(--border);
	align-self: stretch;
}

.hero-cast {
	margin-top: 28px;
	font-size: clamp(0.85rem, 2vw, 1rem);
	color: rgba(240, 235, 224, 0.6);
	letter-spacing: 0.1em;
	animation: fadeDown 0.9s 0.5s ease both;
}

.hero-cast strong {
	color: var(--white);
}

.scroll-hint {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.4em;
	color: rgba(240, 235, 224, 0.2);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.scroll-hint::after {
	content: '';
	width: 1px;
	height: 40px;
	background: linear-gradient(var(--gold-d), transparent);
	animation: scrollPulse 2s ease-in-out infinite;
}

/* ===== SECTION COMMON ===== */
section {
	padding: 80px 0;
}

.inner {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 24px;
}

.sec-header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 50px;
}

.sec-num {
	font-family: 'Rye', serif;
	font-size: 4rem;
	line-height: 1;
	color: var(--red);
	opacity: 0.5;
	min-width: 60px;
}

.sec-titles {
	flex: 1;
}

.sec-en {
	font-family: 'Rye', serif;
	font-size: clamp(1.5rem, 4vw, 2.4rem);
	letter-spacing: 0.15em;
	background: linear-gradient(90deg, var(--gold-l), var(--gold));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.sec-jp {
	font-size: 1rem;
	letter-spacing: 0.25em;
	color: rgba(240, 235, 224, 0.35);
	margin-top: 2px;
}

.sec-line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, var(--gold-d), transparent);
	opacity: 0.4;
}
@media(max-width:700px) {
.sec-line {
	display: none;
}
}

/* ===== OVERVIEW ===== */
#overview {
	background: color-mix(in sRGB,var(--deep) 85%,transparent);
}

.overview-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2px;
}


.ov-item {
	background: var(--card);
	padding: 0.5rem;
	display: flex;
}


.ov-label {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.35em;
	color: var(--gold);
	width: 150px;
	text-align: right;
	padding-top:0.5rem;
	padding-right:1rem;
}

.ov-value {
	font-size: clamp(0.85rem, 2vw, 1rem);
	line-height: 1.9;
	color: var(--white);
	width:calc(100% - 150px);
}
@media(max-width:700px) {
.ov-item {
	flex-direction: column;
}


.ov-label {
	width: 100%;
	text-align: left;
	padding-top:0;
	padding-right:0;
	padding-bottom: 0.5rem;
}

.ov-value {
	width: 100%;
}
}

.ov-item.wide {
	grid-column: 1/-1;
}

.ov-item.staff {
	grid-column: 1/-1;
}

.cast-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 2px;
	margin-top: 2px;
}

.cast-item {
	display: flex;
	align-items: center;
}

.cast-role {
	font-size: 1rem;
	letter-spacing: 0.2em;
	color: var(--gold);
}

.cast-char {
	font-size: 0.85rem;
	color: rgba(240, 235, 224, 0.55);
	white-space: nowrap;
}
.cast-char::after {
	content: '-';
	color: var(--gold-d);
	padding: 0 0.5rem;
}

.cast-cv {
	font-size: 1rem;
	color: var(--white);
}

.cast-tba {
	color: rgba(240, 235, 224, 0.2);
	font-style: italic;
}

.staff-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 2px;
	margin-top: 2px;
}

.staff-item {
	background: var(--card);
	padding: 16px 20px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.staff-role {
	font-size: 1rem;
	letter-spacing: 0.2em;
	color: var(--gold-d);
}

.staff-name {
	font-size: 0.9rem;
	color: var(--white);
}

.staff-tba {
	color: rgba(240, 235, 224, 0.2);
}

/* ===== ABOUT ===== */
#about {}

.about-layout {
}

@media(max-width:700px) {
}

.story-block {
	background: var(--card);
	border: 1px solid var(--border);
	padding: 32px;
	position: relative;
}

.story-block::before {
	content: 'STORY';
	position: absolute;
	top: -10px;
	left: 24px;
	background: var(--card);
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.3em;
	color: var(--gold);
	padding: 0 10px;
}

.story-text {
	font-size: 1rem;
	line-height: 1.75;
	color: rgba(240, 235, 224, 0.8);
}

.char-cards {
	display: flex;
	gap: 20px;
	margin:20px 0;
}

@media(max-width:700px) {
.char-cards {
	flex-direction: column;
}
}

.char-card {
	background: var(--card);
	border: 1px solid var(--border);
	padding: 24px 28px;
	position: relative;
	overflow: hidden;
}

.char-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}

.char-name {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--gold-l);
	margin-bottom: 4px;
}

.char-cv {
	font-size: 1rem;
	letter-spacing: 0.2em;
	color: var(--gold-d);
	margin-bottom: 12px;
}

.char-desc {
	font-size: 0.875rem;
	color: rgba(240, 235, 224, 0.7);
}

.series-section {
	margin-top: 50px;
}

.series-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.3em;
	color: var(--gold);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top:1.5rem;
}
.series-title:first-child {
	margin-top:0;
}

.series-title::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--gold-d);
	opacity: 0.4;
}

.series-imgs {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.series-img-wrap {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--border);
}

.series-img-wrap img {
	width: 130px;
	height: auto;
	display: block;
	filter: brightness(0.85);
	transition: filter 0.3s, transform 0.3s;
}

.series-img-wrap:hover img {
	filter: brightness(1);
	transform: scale(1.04);
}

.series-releases {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 16px;
}
@media(max-width:700px) {
.series-releases {
	grid-template-columns: 1fr;
}
}

.release-item {
	background: var(--card);
	border: 1px solid var(--border);
	padding: 16px 20px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.release-img {
	width: 80px;
	flex-shrink: 0;
}

.release-img img {
	width: 100%;
	display: block;
	border: 1px solid var(--border);
}

.release-info {}

.release-type {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.2em;
	color: var(--red);
	margin-bottom: 4px;
}

.release-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--white);
	line-height: 1.5;
	margin-bottom: 6px;
}

.release-cast {
	font-size: 0.875rem;
	color: rgba(240, 235, 224, 0.4);
	line-height: 1.6;
}

/* ===== TICKET ===== */

#ticket {
	background: color-mix(in sRGB,var(--deep) 85%,transparent);
}

.ticket-types {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2px;
}

.ttype {
	background: var(--card);
	padding: 1rem 1.5rem;
	position: relative;
	overflow: hidden;
	border-left: 3px solid rgba(255, 255, 255, 0.06);
	transition: border-color 0.3s;
}

.ttype.premium {
	border-left-color: var(--gold);
}

.ttype.special {
	border-left-color: var(--red);
}
.ttype-main {
	display: flex;
	align-items: center;
}
.ttype-badge {
	display: inline-block;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.25em;
	padding: 3px 10px;
}

.ttype-badge.prem {
	background: var(--gold-d);
	color: var(--gold-l);
}

.ttype-badge.spec {
	background: var(--red);
	color: rgba(240, 235, 224, 0.9);
}

.ttype-badge.norm {
	background: rgba(255, 255, 255, 0.06);
	color: rgba(240, 235, 224, 0.4);
}

.ttype-name {
	font-size: 1rem;
	color: var(--white);
	line-height: 1.6;
}

.ttype-price {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 2rem;
	background: linear-gradient(90deg, var(--gold-l), var(--gold));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ttype-price span {
	font-size: 1rem;
	color: rgba(240, 235, 224, 0.2);
}
@media(max-width:700px) {
	.ttype-main {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 0.5rem;
	}
.ttype-name {
	margin:0.25rem 0;
}
}

.ttype-perks {
	list-style: none;
}

.ttype-perks li {
	font-size: 1rem;
	line-height: 1.9;
	color: rgba(240, 235, 224, 0.6);
	padding-left: 14px;
	position: relative;
}

.ttype-perks li::before {
	content: '◇';
	position: absolute;
	left: 0;
	color: var(--gold-d);
	font-size: 0.5rem;
	top: 1em;
}

.ttype-note {
	margin: 1rem 0;
	font-size: 0.75rem;
	color: rgba(240, 235, 224, 0.3);
	line-height: 1.8;
}

/* schedule */
.sched-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.3em;
	color: var(--gold);
	margin: 2rem 0 1.25rem;
	display: flex;
	align-items: center;
	gap: 12px;
}

.sched-title::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--gold-d);
	opacity: 0.4;
}

.sched-block {
	background: var(--card);
	border: 1px solid var(--border);
	margin-bottom: 16px;
	overflow: hidden;
	position: relative;
}

.sched-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
}

.sched-block.official::before {
	background: linear-gradient(90deg, var(--gold-d), var(--gold-l), var(--gold-d));
}

.sched-block.lottery::before {
	background: linear-gradient(90deg, var(--red), var(--red-b), var(--red));
}

.sched-block.general::before {
	background: rgba(255, 255, 255, 0.1);
}

.sched-inner {
	padding: 24px 28px;
}

.sched-label {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
}

.sched-label-dot {
	width: 6px;
	height: 6px;
	background: var(--gold);
	transform: rotate(45deg);
}

.sched-label-text {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.3em;
	color: var(--gold);
}

.sched-name {
	font-size: clamp(0.95rem, 2.5vw, 1.2rem);
	font-weight: 700;
	color: var(--white);
	margin-bottom: 16px;
}

.sched-name .tag {
	display: inline-block;
	border: 1px solid var(--gold);
	padding: 2px 10px;
	font-size: 0.8em;
	color: var(--gold-l);
	margin-right: 8px;
}

.sched-name .tag.red {
	border-color: var(--red);
	color: rgba(240, 235, 224, 0.7);
}

.sched-grid {
}

.sched-item {
	display: flex;
	margin-bottom: 4px;
}
@media(max-width:700px) {
.sched-item {
	flex-direction: column;
	margin-bottom: 0.5rem;
}
}

.sched-item-label {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 0.875rem;
	letter-spacing: 0.3em;
	color: var(--gold);
	padding-right: .5rem;
}

.sched-item-val {
	font-size: 1rem;
	color: var(--white);
	line-height: 1.7;
}

.sched-item-val.tba {
	color: rgba(240, 235, 224, 0.25);
	font-style: italic;
}

.tba-pill {
	display: inline-block;
	margin-top: 10px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.3em;
	color: rgba(240, 235, 224, 0.2);
	padding: 3px 12px;
}
.aiken-products {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 16px;
}

.aiken-imgs {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.aiken-imgs img {
	height: 100px;
	width: auto;
	border: 1px solid var(--border);
	display: block;
}

.aiken-note {
	flex: 1;
	min-width: 200px;
	font-size: 0.875rem;
	color: rgba(240,235,224,0.4);
	line-height: 1.9;
}
/* streaming */
.stream-grid {
	display: grid;
	grid-template-columns:1fr;
	gap: 2px;
	margin-top: 8px;
}

.stream-item {
	background: var(--card);
	padding: 20px 24px;
	border-left: 2px solid var(--red);
}

.stream-label {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.3em;
	color: var(--red);
	margin-bottom: 8px;
}

.stream-name {
	font-size: 1rem;
	color: var(--white);
	margin-bottom: 4px;
	display: inline-block;
}

.stream-price {
	display: inline-block;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.4rem;
	background: linear-gradient(90deg, var(--gold-l), var(--gold));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stream-price span {
	font-size: 0.875rem;
}

.stream-benefit {
	font-size: 0.875rem;
	color: rgba(240, 235, 224, 0.4);
	margin-top: 6px;
	line-height: 1.7;
}

/* ===== GOODS ===== */
#goods {}

.goods-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 2px;
}
@media(max-width:700px) {
.goods-grid {
	grid-template-columns: 1fr;
}
}

.goods-item {
	background: var(--card);
	padding: 24px 20px;
	position: relative;
	overflow: hidden;
	border-bottom: 2px solid transparent;
	transition: border-color 0.3s;
}

.goods-icon {
	font-size: 1.5rem;
	margin-bottom: 12px;
	opacity: 0.4;
}

.goods-name {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 6px;
}

.goods-price {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 0.875rem;
	color: rgba(240, 235, 224, 0.25);
}

.goods-sales-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.3em;
	color: var(--gold);
	margin: 40px 0 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.goods-sales-title::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--gold-d);
	opacity: 0.4;
}

.sales-schedule {
	background: var(--card);
	border: 1px solid var(--border);
	padding: 24px 28px;
}

.sales-row {
	display: flex;
	gap: 20px;
	align-items: baseline;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sales-row:last-child {
	border-bottom: none;
}
@media(max-width:700px) {
.sales-row {
	gap: 5px;
	flex-direction: column;
}
}

.sales-side {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.25em;
	color: var(--red);
	width: 120px;
	flex-shrink: 0;
}

.sales-detail {
	font-size: 0.85rem;
	color: rgba(240, 235, 224, 0.65);
	line-height: 1.8;
}

.payment-block {
	margin-top: 28px;
}

.payment-block img {
	width: 100%;
	max-width: 600px;
	display: block;
	filter: brightness(0.9);
}

.goods-notes {
	background: rgba(170, 26, 26, 0.05);
	border: 1px solid var(--border-r);
	padding: 20px 24px;
	margin-top: 20px;
}

.goods-notes-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.3em;
	color: var(--red);
	margin-bottom: 12px;
}

.goods-notes ul {
	list-style: none;
}

.goods-notes ul li {
	font-size: 1rem;
	line-height: 1.9;
	color: rgba(240, 235, 224, 0.55);
	padding-left: 1.25rem;
	position: relative;
}

.goods-notes ul li::before {
	content: '—';
	position: absolute;
	left: 0;
	color: var(--red);
	opacity: 0.5;
}

/* ===== INFORMATION ===== */
#information {
	background: color-mix(in sRGB,var(--deep) 85%,transparent);
}

.info-card {
	background: var(--card);
	padding: 28px 24px;
	border-top: 2px solid var(--border);
}

.info-card-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.3em;
	color: var(--gold);
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.info-card-title::before {
	content: '';
	width: 4px;
	height: 4px;
	background: var(--red);
	transform: rotate(45deg);
}

.info-card ul {
	list-style: none;
}

.info-card ul li {
	font-size: 1rem;
	line-height: 1.9;
	color: rgba(240, 235, 224, 0.6);
	padding-left: 1.25rem;
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	margin-bottom: 0.25rem;
}

.info-card ul li:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.info-card ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.8em;
	width: 4px;
	height: 1px;
	background: var(--gold-d);
}

.treat-block {
	background: var(--card);
	border: 1px solid var(--border);
	padding: 28px;
	margin-top: 2px;
}

.treat-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--gold-l);
	margin-bottom: 10px;
}

.treat-text {
	font-size: 1rem;
	line-height: 1.9;
	color: rgba(240, 235, 224, 0.6);
}

.treat-text a {
	color: var(--gold);
	text-decoration: none;
}

.treat-text a:hover {
	text-decoration: underline;
}

.contact-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px;
	margin-top: 2px;
}

.contact-item {
	background: var(--card);
	padding: 20px 24px;
}

.contact-label {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.3em;
	color: var(--gold);
	margin-bottom: 8px;
}

.contact-val {
	font-size: 1rem;
	color: rgba(240, 235, 224, 0.6);
}

.info-card a {
	color: var(--gold-l);
}

/* ===== SPECIAL ===== */
#special {}

.special-card {
	background: var(--card);
	border: 1px solid var(--border);
	padding: 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.special-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}

.special-card-title {
	font-family: 'Cinzel Decorative', serif;
	font-size: clamp(1.2rem, 3vw, 2rem);
	background: linear-gradient(135deg, var(--gold-l), var(--gold));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
}

.special-card-sub {
	font-size: 0.8rem;
	letter-spacing: 0.2em;
	color: rgba(240, 235, 224, 0.4);
	margin-bottom: 28px;
}

.special-img {
	width: clamp(160px, 30vw, 240px);
	margin: 0 auto 20px;
	display: block;
	border: 1px solid var(--border);
}

.special-desc {
	font-size: 0.85rem;
	line-height: 1.9;
	color: rgba(240, 235, 224, 0.6);
}

/* ===== FOOTER ===== */
footer {
	background: color-mix(in sRGB,var(--deep) 85%,transparent);
  border-top: 1px solid var(--border);
  padding: 50px 20px 40px;
  text-align: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(240,235,224,0.35);
  line-height: 2.2;
}

.footer-copy a {
  color: rgba(240,235,224,0.5);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

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

.footer-copy p + p {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(240,235,224,0.1);
}
/* ===== ANIMATIONS ===== */
@keyframes fadeDown {
	from {
		opacity: 0;
		transform: translateY(-24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes scrollPulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.2;
	}
}

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s, transform 0.7s;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

