/**
 * BBQ event landing page
 * Retro travel pass × Seoul blue-hour editorial.
 */

.bbq-page {
	--bbq-coral: #df4e43;
	--bbq-coral-dark: #a72d2a;
	--bbq-honey: #f4c85c;
	--bbq-sky: #91cdda;
	--bbq-green: #386b4d;
	--bbq-green-dark: #173f34;
	--bbq-ink: #382619;
	--bbq-cream: #fff8e8;
	--bbq-paper: #f5ead4;
	--bbq-line: rgba(56, 38, 25, 0.18);
	--bbq-shadow: 0 24px 70px rgba(64, 37, 14, 0.16);
	position: relative;
	background: var(--bbq-cream);
	color: var(--bbq-ink);
	font-family: 'Noto Sans KR', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 16px;
	line-height: 1.75;
	overflow: clip;
}

.bbq-page *,
.bbq-page *::before,
.bbq-page *::after { box-sizing: border-box; }

.bbq-page img { width: 100%; height: auto; }

body.is-bbq-event-page .site-header {
	background: rgba(255, 249, 237, 0.97);
	box-shadow: 0 1px 0 rgba(65, 39, 7, 0.12);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

body.is-bbq-event-page .mobile-cta-bar { display: none; }
body.is-bbq-event-page .site-footer { padding-bottom: 88px; }

.bbq-skip-link {
	position: fixed;
	top: 8px;
	left: 12px;
	z-index: 1000;
	padding: 10px 16px;
	background: var(--bbq-ink);
	color: #fff;
	font-weight: 700;
	transform: translateY(-160%);
}

.bbq-skip-link:focus { transform: translateY(0); }

.bbq-container {
	width: min(100% - 40px, 1180px);
	margin-inline: auto;
}

.bbq-container--narrow { width: min(100% - 40px, 920px); }
.bbq-container--form { width: min(100% - 32px, 940px); }

.bbq-section { padding-block: clamp(72px, 9vw, 132px); }

.bbq-section-heading {
	display: grid;
	gap: 14px;
	max-width: 780px;
	margin-bottom: clamp(36px, 5vw, 64px);
}

.bbq-section-heading > p,
.bbq-assurance__eyebrow {
	width: fit-content;
	padding: 5px 13px;
	background: var(--bbq-honey);
	color: var(--bbq-ink);
	font-family: 'Anton', 'Noto Sans KR', sans-serif;
	font-size: 13px;
	line-height: 1.35;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	transform: rotate(-1deg);
}

.bbq-section-heading h2,
.bbq-assurance__content h2 {
	font-family: 'Noto Sans KR', 'Noto Sans JP', sans-serif;
	font-size: clamp(30px, 4.4vw, 58px);
	font-weight: 900;
	line-height: 1.22;
	letter-spacing: -0.035em;
	text-wrap: balance;
}

.bbq-section-heading > span {
	max-width: 56ch;
	font-size: clamp(16px, 1.6vw, 19px);
	line-height: 1.85;
}

.bbq-section-heading--light { color: #fff9ed; }

.bbq-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 13px 26px;
	border: 2px solid transparent;
	border-radius: 999px;
	font: inherit;
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: 0.03em;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.bbq-button--primary {
	background: var(--bbq-coral);
	color: #fff;
	box-shadow: 0 9px 0 var(--bbq-coral-dark);
}

.bbq-button--outline {
	background: #fffaf0;
	border-color: var(--bbq-ink);
	color: var(--bbq-ink);
}

.bbq-button--quiet {
	background: transparent;
	border-color: var(--bbq-line);
	color: var(--bbq-ink);
}

.bbq-button:hover { transform: translateY(-2px); }
.bbq-button--primary:hover { box-shadow: 0 11px 0 var(--bbq-coral-dark); }
.bbq-button:disabled,
.bbq-button.is-submitting {
	cursor: wait;
	opacity: 0.68;
	transform: none;
	box-shadow: none;
}

.bbq-page a:focus-visible,
.bbq-page button:focus-visible,
.bbq-page input:focus-visible,
.bbq-page select:focus-visible,
.bbq-page textarea:focus-visible,
.bbq-page summary:focus-visible {
	outline: 3px solid #087ea4;
	outline-offset: 4px;
}

/* Hero */
.bbq-hero {
	position: relative;
	min-height: clamp(820px, 69vw, 980px);
	padding: 126px 0 64px;
	display: grid;
	align-items: center;
	isolation: isolate;
}

.bbq-hero__media,
.bbq-hero__shade {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.bbq-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.bbq-hero__shade {
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(255, 250, 238, 0.96) 0%, rgba(255, 250, 238, 0.78) 33%, rgba(255, 250, 238, 0.08) 62%),
		linear-gradient(0deg, rgba(22, 44, 32, 0.24), transparent 44%);
}

.bbq-hero__inner {
	width: min(100% - 48px, 1260px);
	margin-inline: auto;
}

.bbq-hero__pass {
	position: relative;
	width: min(590px, 49vw);
	padding: clamp(30px, 4vw, 54px);
	background: rgba(255, 248, 232, 0.94);
	border: 2px solid rgba(56, 38, 25, 0.82);
	box-shadow: var(--bbq-shadow);
}

.bbq-hero__pass::after {
	content: '';
	position: absolute;
	inset: 10px;
	border: 1px dashed rgba(56, 38, 25, 0.35);
	pointer-events: none;
}

.bbq-ribbon {
	position: absolute;
	top: -22px;
	left: 28px;
	z-index: 2;
	padding: 8px 26px;
	background: var(--bbq-coral);
	color: #fff;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0.08em;
	transform: rotate(-3deg);
	box-shadow: 5px 5px 0 var(--bbq-coral-dark);
}

.bbq-ribbon::before,
.bbq-ribbon::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 12px;
	height: 12px;
	background: var(--bbq-cream);
	border-radius: 50%;
	transform: translateY(-50%);
}

.bbq-ribbon::before { left: -6px; }
.bbq-ribbon::after { right: -6px; }

.bbq-hero__kicker {
	position: relative;
	z-index: 1;
	margin: 4px 0 18px;
	color: var(--bbq-green);
	font-family: 'Anton', sans-serif;
	font-size: 13px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.bbq-hero__title {
	position: relative;
	z-index: 1;
	display: grid;
	line-height: 0.98;
	letter-spacing: -0.05em;
}

.bbq-hero__title span {
	font-size: clamp(28px, 3.3vw, 51px);
	font-weight: 900;
}

.bbq-hero__title strong {
	margin: 7px 0 2px;
	color: var(--bbq-ink);
	font-family: 'Anton', Impact, sans-serif;
	font-size: clamp(104px, 12.4vw, 174px);
	font-weight: 400;
	letter-spacing: -0.025em;
}

.bbq-page--ko .bbq-hero__title span { letter-spacing: -0.06em; }
.bbq-page--en .bbq-hero__title span { font-size: clamp(26px, 3vw, 46px); }

.bbq-hero__place {
	position: relative;
	z-index: 1;
	width: fit-content;
	margin: 17px 0 18px auto;
	padding: 6px 24px;
	background: var(--bbq-green);
	color: #fff;
	font-family: 'Anton', sans-serif;
	font-size: 21px;
	letter-spacing: 0.08em;
	transform: rotate(-1deg);
}

.bbq-hero__lead {
	position: relative;
	z-index: 1;
	max-width: 48ch;
	margin-bottom: 24px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.8;
}

.bbq-hero__dates {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.bbq-date-stub {
	position: relative;
	padding: 17px 18px;
	background: #fffdf6;
	border: 1px dashed var(--bbq-ink);
	box-shadow: 4px 4px 0 var(--bbq-honey);
}

.bbq-date-stub__date {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 21px;
	font-weight: 900;
	line-height: 1.25;
}

.bbq-date-stub__date span {
	display: grid;
	place-items: center;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: var(--bbq-coral);
	color: #fff;
	font-size: 11px;
}

.bbq-date-stub__age { margin: 5px 0 8px; font-weight: 700; }
.bbq-date-stub.is-closed { opacity: 0.62; filter: grayscale(0.4); }

.bbq-hero__action {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 20px;
	align-items: center;
	margin-top: 26px;
	padding-top: 22px;
	border-top: 2px dotted rgba(56, 38, 25, 0.42);
}

.bbq-hero__action > div { display: grid; line-height: 1.25; }
.bbq-hero__action > div span { color: #6d5948; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; }
.bbq-hero__action > div strong { font-size: 17px; }
.bbq-hero__action .bbq-button { justify-self: end; padding-inline: 24px; }
.bbq-hero__note { position: relative; z-index: 1; margin-top: 18px; color: #6d5948; font-size: 12px; }

/* Value cards */
.bbq-values {
	background-color: var(--bbq-cream);
	background-image: linear-gradient(rgba(145, 205, 218, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(145, 205, 218, 0.12) 1px, transparent 1px);
	background-size: 32px 32px;
}

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

.bbq-value-card {
	position: relative;
	min-height: 320px;
	padding: 34px 30px;
	background: #fffdf7;
	border: 1px solid var(--bbq-line);
	box-shadow: 8px 8px 0 var(--bbq-sky);
}

.bbq-value-card:nth-child(2) { margin-top: 34px; box-shadow-color: var(--bbq-honey); }
.bbq-value-card:nth-child(3) { box-shadow-color: #7cb88f; }
.bbq-value-card__number { color: var(--bbq-coral); font-family: 'Anton', sans-serif; font-size: 56px; line-height: 1; }
.bbq-value-card h3 { margin: 25px 0 14px; font-size: 23px; font-weight: 900; line-height: 1.45; }
.bbq-value-card p { color: #65574d; }

/* Route */
.bbq-route-section { background: var(--bbq-green-dark); }

.bbq-route { position: relative; padding: 0 0 4px 150px; }
.bbq-route__track { position: absolute; top: 22px; bottom: 42px; left: 91px; width: 4px; background: rgba(255,255,255,0.18); }
.bbq-route__track span { display: block; width: 100%; height: calc(var(--route-progress) * 100%); background: linear-gradient(var(--bbq-honey), var(--bbq-coral)); transition: height 80ms linear; }
.bbq-route ol { display: grid; gap: clamp(38px, 6vw, 68px); }
.bbq-route-stop { position: relative; display: grid; grid-template-columns: 116px 1fr; gap: 34px; align-items: start; min-height: 142px; }
.bbq-route-stop::before { content: ''; position: absolute; top: 17px; left: -65px; width: 20px; height: 20px; border: 5px solid var(--bbq-green-dark); border-radius: 50%; background: var(--bbq-honey); box-shadow: 0 0 0 3px rgba(255,255,255,0.32); }
.bbq-route-stop time { color: var(--bbq-honey); font-family: 'Anton', sans-serif; font-size: clamp(38px, 5vw, 60px); line-height: 1; letter-spacing: 0.03em; }
.bbq-route-stop > div { padding: 0 0 30px 30px; border-left: 1px dashed rgba(255,255,255,0.25); color: #fff9ed; }
.bbq-route-stop > div > span { color: var(--bbq-sky); font-family: 'Anton', sans-serif; font-size: 13px; letter-spacing: 0.15em; }
.bbq-route-stop h3 { margin: 7px 0 10px; font-size: clamp(22px, 2.7vw, 34px); line-height: 1.35; }
.bbq-route-stop p { max-width: 46ch; color: rgba(255,249,237,0.76); }

/* Date tickets */
.bbq-dates { background: #efe3c8; }
.bbq-dates__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 4vw, 42px); }

.bbq-session-ticket {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 410px;
	padding: clamp(30px, 4vw, 48px);
	background: #fffaf0;
	border: 2px solid var(--bbq-ink);
	box-shadow: 12px 12px 0 var(--bbq-coral);
}

.bbq-session-ticket:nth-child(2) { box-shadow-color: var(--bbq-honey); }
.bbq-session-ticket::after { content: ''; position: absolute; inset: 12px; border: 1px dashed rgba(56,38,25,0.32); pointer-events: none; }
.bbq-session-ticket__index { position: relative; z-index: 1; align-self: flex-end; color: var(--bbq-sky); font-family: 'Anton', sans-serif; font-size: 68px; line-height: 0.8; }
.bbq-session-ticket__date { position: relative; z-index: 1; display: flex; align-items: baseline; gap: 10px; margin-top: 22px; color: var(--bbq-coral-dark); font-size: clamp(26px, 3vw, 40px); font-weight: 900; line-height: 1.2; }
.bbq-session-ticket__date span { font-size: 15px; }
.bbq-session-ticket h3 { position: relative; z-index: 1; margin-top: 8px; font-size: 24px; }
.bbq-session-ticket__route { position: relative; z-index: 1; margin-top: 25px; padding-block: 13px; border-block: 1px dashed var(--bbq-line); font-family: 'Anton', sans-serif; letter-spacing: 0.08em; }
.bbq-session-ticket__common { position: relative; z-index: 1; margin: 10px 0 18px; color: #66584d; font-size: 14px; }
.bbq-session-ticket .bbq-button { position: relative; z-index: 1; align-self: flex-start; margin-top: 20px; }
.bbq-session-ticket.is-closed { opacity: 0.66; filter: grayscale(0.55); }

/* Pricing */
.bbq-pricing { background: var(--bbq-cream); }

.bbq-price-board {
	position: relative;
	padding: clamp(28px, 5vw, 64px);
	background: #fffdf7;
	border: 2px solid var(--bbq-ink);
	box-shadow: var(--bbq-shadow);
}

.bbq-price-board__currency { margin-bottom: 22px; color: var(--bbq-green); font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-align: center; }
.bbq-price-board__prices { display: grid; grid-template-columns: repeat(2, 1fr); border: 2px solid var(--bbq-ink); }
.bbq-price-board__prices > div { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; padding: clamp(20px, 3vw, 36px); }
.bbq-price-board__prices > div + div { border-left: 2px dashed var(--bbq-ink); }
.bbq-price-board__prices span { padding: 5px 12px; background: var(--bbq-honey); font-weight: 900; }
.bbq-price-board__prices strong { color: var(--bbq-coral-dark); font-family: 'Anton', 'Noto Sans KR', sans-serif; font-size: clamp(36px, 5vw, 66px); font-weight: 400; line-height: 1; text-align: right; }
.bbq-price-board__details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 30px; background: var(--bbq-line); }
.bbq-price-board__details > div { padding: 26px; background: #fffdf7; }
.bbq-price-board__details h3 { margin-bottom: 14px; font-size: 19px; }
.bbq-price-board__details li { position: relative; padding-left: 20px; color: #62564d; }
.bbq-price-board__details li + li { margin-top: 7px; }
.bbq-price-board__details li::before { content: ''; position: absolute; top: 0.74em; left: 0; width: 8px; height: 3px; background: var(--bbq-coral); }
.bbq-price-board__payment { margin-top: 26px; padding: 18px 22px; background: rgba(145,205,218,0.22); border-left: 5px solid var(--bbq-sky); font-size: 14px; font-weight: 600; }
.bbq-price-board__cancellation { margin-top: 12px; padding: 15px 18px; background: #fff4ef; border: 1px solid rgba(223,78,67,0.38); color: #7f2924; font-size: 14px; font-weight: 800; }

/* Assurance photo */
.bbq-assurance { display: grid; grid-template-columns: minmax(0, 1.14fr) minmax(380px, 0.86fr); min-height: 700px; background: #203a31; color: #fff9ed; }
.bbq-assurance__media { min-height: 540px; }
.bbq-assurance__media picture,
.bbq-assurance__media img { display: block; width: 100%; height: 100%; }
.bbq-assurance__media img { object-fit: cover; object-position: 44% center; }
.bbq-assurance__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(42px, 7vw, 90px); }
.bbq-assurance__content h2 { margin: 20px 0 24px; }
.bbq-assurance__content > p:not(.bbq-assurance__eyebrow) { color: rgba(255,249,237,0.78); font-size: 17px; }
.bbq-assurance__content ol { display: grid; gap: 14px; margin-top: 34px; }
.bbq-assurance__content li { display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: center; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.17); font-weight: 700; }
.bbq-assurance__content li span { color: var(--bbq-honey); font-family: 'Anton', sans-serif; }

/* Join flow */
.bbq-join-flow { background: var(--bbq-sky); }
.bbq-join-flow__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bbq-join-flow__grid li { position: relative; padding: 32px 28px; background: #fffaf0; border: 1px solid var(--bbq-ink); }
.bbq-join-flow__grid li:not(:last-child)::after { content: ''; position: absolute; top: 50%; right: -20px; z-index: 2; width: 38px; height: 2px; background: var(--bbq-coral); }
.bbq-join-flow__grid span { color: var(--bbq-coral-dark); font-family: 'Anton', sans-serif; font-size: 14px; letter-spacing: 0.12em; }
.bbq-join-flow__grid h3 { margin: 18px 0 10px; font-size: 21px; }
.bbq-join-flow__grid p { color: #66584d; font-size: 14px; }

/* Application */
.bbq-application { background: var(--bbq-paper); scroll-margin-top: 90px; }
.bbq-notice,
.bbq-closed { margin-bottom: 30px; padding: 20px 22px; background: #fffaf0; border: 2px solid var(--bbq-ink); font-weight: 700; }
.bbq-notice--success { border-left: 8px solid var(--bbq-green); }
.bbq-notice--error { border-left: 8px solid var(--bbq-coral); }

.bbq-form { display: grid; gap: 28px; }
.bbq-hp { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.bbq-stepper { display: none; padding: 20px; background: #fffaf0; border: 1px solid var(--bbq-line); }
.bbq-form.is-stepped .bbq-stepper { display: block; }
.bbq-stepper__status { margin-bottom: 14px; color: var(--bbq-coral-dark); font-size: 13px; font-weight: 800; }
.bbq-stepper ol { display: grid; grid-template-columns: repeat(3, 1fr); }
.bbq-stepper li { position: relative; display: grid; grid-template-columns: 32px 1fr; gap: 9px; align-items: center; color: #76685d; font-size: 12px; font-weight: 700; }
.bbq-stepper li::after { content: ''; position: absolute; top: 50%; right: 10px; left: 43px; z-index: 0; height: 2px; background: #dfd4c2; }
.bbq-stepper li:last-child::after { display: none; }
.bbq-stepper li span { position: relative; z-index: 1; display: grid; place-items: center; width: 32px; height: 32px; border: 2px solid #c8bcaa; border-radius: 50%; background: #fffaf0; }
.bbq-stepper li.is-active,
.bbq-stepper li.is-complete { color: var(--bbq-ink); }
.bbq-stepper li.is-active span { border-color: var(--bbq-coral); background: var(--bbq-coral); color: #fff; }
.bbq-stepper li.is-complete span { border-color: var(--bbq-green); background: var(--bbq-green); color: #fff; }

.bbq-form__error { padding: 15px 18px; background: #fff6f3; border-left: 6px solid var(--bbq-coral); color: #7f201c; font-weight: 700; }

.bbq-form-step {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin: 0;
	padding: clamp(22px, 4vw, 44px);
	background: #fffdf8;
	border: 1px solid var(--bbq-line);
	box-shadow: 8px 8px 0 rgba(56,38,25,0.09);
}

.bbq-form-step + .bbq-form-step { margin-top: 20px; }
.bbq-form-step[hidden] { display: none; }
.bbq-form-step legend { grid-column: 1 / -1; width: 100%; margin-bottom: 8px; padding-bottom: 18px; border-bottom: 2px dashed var(--bbq-line); font-size: clamp(22px, 3vw, 31px); font-weight: 900; }
.bbq-form-step legend span { display: block; margin-bottom: 5px; color: var(--bbq-coral-dark); font-family: 'Anton', sans-serif; font-size: 13px; letter-spacing: 0.13em; }

.bbq-field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.bbq-field--full,
.bbq-consents,
.bbq-form-step__actions,
.bbq-form__submit-note { grid-column: 1 / -1; }
.bbq-field > label,
.bbq-field__label { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 14px; font-weight: 800; }
.bbq-field label em,
.bbq-field__label em { padding: 2px 7px; background: var(--bbq-coral); color: #fff; font-size: 10px; font-style: normal; }
.bbq-field label small { color: #76685d; font-size: 11px; font-weight: 500; }

.bbq-field input:not([type="radio"]):not([type="checkbox"]),
.bbq-field select,
.bbq-field textarea {
	width: 100%;
	min-height: 52px;
	padding: 12px 14px;
	background: #fff;
	border: 1px solid #b9ac9a;
	border-radius: 0;
	color: var(--bbq-ink);
	font: inherit;
	font-size: 16px;
	line-height: 1.5;
}

.bbq-field textarea { min-height: 120px; resize: vertical; }
.bbq-field--photo input[type="file"] { padding: 8px; cursor: pointer; }
.bbq-field--photo input[type="file"]::file-selector-button {
	margin-right: 12px;
	padding: 9px 14px;
	background: var(--bbq-honey);
	border: 1px solid var(--bbq-ink);
	color: var(--bbq-ink);
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
}
.bbq-file-warning {
	margin: 0;
	padding: 10px 12px;
	background: #fff6ef;
	border-left: 4px solid var(--bbq-coral);
	color: var(--bbq-coral-dark);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.7;
}
.bbq-file-note { color: #6d5f54; font-size: 12px; line-height: 1.7; }
.bbq-file-name { color: var(--bbq-green); font-size: 12px; font-weight: 800; overflow-wrap: anywhere; }
.bbq-field input:focus,
.bbq-field select:focus,
.bbq-field textarea:focus { border-color: var(--bbq-coral-dark); }
.bbq-field input:user-invalid,
.bbq-field select:user-invalid,
.bbq-field textarea:user-invalid { border-color: var(--bbq-coral); background: #fff9f7; }

.bbq-choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.bbq-choice-card { position: relative; cursor: pointer; }
.bbq-choice-card input { position: absolute; top: 19px; left: 17px; width: 20px; height: 20px; accent-color: var(--bbq-coral); }
.bbq-choice-card > span { display: grid; gap: 4px; min-height: 86px; padding: 16px 16px 16px 50px; background: #fff; border: 2px solid #c6baa8; }
.bbq-choice-card input:checked + span { border-color: var(--bbq-coral); box-shadow: 4px 4px 0 var(--bbq-honey); }
.bbq-choice-card small { color: #6d5f54; font-size: 12px; }
.bbq-choice-card.is-disabled { opacity: 0.55; cursor: not-allowed; }

.bbq-consents { display: grid; gap: 12px; margin-top: 6px; padding: 22px; background: #f7efdf; }
.bbq-consents label { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; cursor: pointer; }
.bbq-consents input { width: 19px; height: 19px; margin-top: 4px; accent-color: var(--bbq-green); }
.bbq-consents span { font-size: 13px; }
.bbq-consents a { text-decoration: underline; text-underline-offset: 3px; }

.bbq-form-step__actions { display: flex; justify-content: flex-end; gap: 16px; margin-top: 12px; padding-top: 22px; border-top: 1px dashed var(--bbq-line); }
.bbq-form__submit-note { margin-top: -12px; color: #74675d; font-size: 12px; text-align: right; }

/* FAQ */
.bbq-faq { background: #fffaf0; }
.bbq-faq__list { border-top: 2px solid var(--bbq-ink); }
.bbq-faq details { border-bottom: 1px solid var(--bbq-line); }
.bbq-faq summary { display: grid; grid-template-columns: 42px 1fr; gap: 16px; align-items: center; padding: 25px 8px; font-size: 17px; font-weight: 800; list-style: none; cursor: pointer; }
.bbq-faq summary::-webkit-details-marker { display: none; }
.bbq-faq summary::after { content: '+'; grid-column: 3; color: var(--bbq-coral-dark); font-family: 'Anton', sans-serif; font-size: 28px; }
.bbq-faq details[open] summary::after { content: '−'; }
.bbq-faq summary span { color: var(--bbq-coral-dark); font-family: 'Anton', sans-serif; font-size: 19px; }
.bbq-faq details > div { padding: 0 58px 25px; color: #66584d; }

/* Mobile event CTA */
.bbq-sticky {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 115;
	display: none;
	grid-template-columns: 1fr auto;
	align-items: stretch;
	background: #fff8e8;
	border-top: 2px solid var(--bbq-ink);
	box-shadow: 0 -10px 30px rgba(56,38,25,0.13);
	transition: transform 220ms ease;
}
.bbq-sticky > div { display: grid; align-content: center; padding: 8px 14px; line-height: 1.2; }
.bbq-sticky span { color: #6a5c50; font-size: 10px; font-weight: 700; }
.bbq-sticky strong { margin-top: 4px; color: var(--bbq-coral-dark); font-size: 15px; }
.bbq-sticky a { display: grid; place-items: center; max-width: 58vw; min-width: 122px; padding: 10px 17px; background: var(--bbq-coral); color: #fff; font-weight: 900; line-height: 1.3; text-align: center; text-decoration: none; }
.bbq-sticky.is-hidden { transform: translateY(100%); pointer-events: none; }

/* Front page banner: bbq.css is also enqueued on the front page. */
.bbq-home-alert {
	background: #fff8e8;
	color: #382619;
	border-block: 1px solid rgba(56, 38, 25, 0.18);
}
.bbq-home-alert__inner {
	display: grid;
	grid-template-columns: minmax(230px, 0.9fr) minmax(0, 1.25fr) auto;
	gap: 24px;
	align-items: center;
	width: min(100% - 40px, 1200px);
	margin-inline: auto;
	padding-block: 14px;
}
.bbq-home-alert__heading { display: grid; gap: 2px; min-width: 0; }
.bbq-home-alert__heading span {
	color: #a72d2a;
	font-family: 'Anton', 'Noto Sans KR', 'Noto Sans JP', sans-serif;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.bbq-home-alert__heading strong {
	font-family: 'Noto Sans KR', 'Noto Sans JP', sans-serif;
	font-size: clamp(16px, 1.55vw, 20px);
	font-weight: 900;
	line-height: 1.35;
}
.bbq-home-alert__meta { display: flex; flex-wrap: wrap; gap: 7px; }
.bbq-home-alert__meta span {
	padding: 5px 10px;
	background: #fffdf8;
	border: 1px solid rgba(56, 38, 25, 0.28);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.4;
}
.bbq-home-alert__meta span:last-child { border-color: #df4e43; color: #a72d2a; }
.bbq-home-alert__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 19px;
	background: #df4e43;
	color: #fff;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 4px 0 #a72d2a;
}
.bbq-home-alert__button:hover { color: #fff; transform: translateY(1px); box-shadow: 0 3px 0 #a72d2a; }
.bbq-home-alert__button:focus-visible { outline: 3px solid #382619; outline-offset: 3px; }

.section--bbq-cta { padding-block: clamp(44px, 7vw, 82px); background: var(--color-bg); }
.section--bbq-cta .section__inner { max-width: 1200px; }
.bbq-top-cta { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr); min-height: 420px; overflow: hidden; background: #173f34; color: #fff8e8; border-radius: 30px; box-shadow: var(--shadow-md); }
.bbq-top-cta__content { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(34px, 6vw, 72px); }
.bbq-top-cta__eyebrow { width: fit-content; margin-bottom: 20px; padding: 5px 12px; background: #f4c85c; color: #382619; font-family: 'Anton', sans-serif; font-size: 12px; letter-spacing: 0.15em; }
.bbq-top-cta h2 { max-width: 14ch; font-family: 'Noto Sans KR', 'Noto Sans JP', sans-serif; font-size: clamp(28px, 3.5vw, 48px); font-weight: 900; line-height: 1.25; letter-spacing: -0.03em; }
.bbq-top-cta__lead { max-width: 45ch; margin-top: 18px; color: rgba(255,248,232,0.78); }
.bbq-top-cta__meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.bbq-top-cta__meta span { padding: 6px 11px; border: 1px solid rgba(255,255,255,0.36); border-radius: 999px; font-size: 12px; font-weight: 700; }
.bbq-top-cta__button { margin-top: 28px; padding: 14px 28px; background: #df4e43; color: #fff; border-radius: 999px; font-weight: 800; text-decoration: none; box-shadow: 0 7px 0 #a72d2a; }
.bbq-top-cta__media picture,
.bbq-top-cta__media img { display: block; width: 100%; height: 100%; }
.bbq-top-cta__media img { object-fit: cover; object-position: 70% center; }

@media (max-width: 960px) {
	.bbq-values__grid { grid-template-columns: 1fr; }
	.bbq-value-card { min-height: 0; }
	.bbq-value-card:nth-child(2) { margin-top: 0; }
	.bbq-assurance { grid-template-columns: 1fr; }
	.bbq-assurance__media { min-height: 520px; }
	.bbq-assurance__content { padding: 60px max(20px, 7vw); }
	.bbq-join-flow__grid { grid-template-columns: 1fr; }
	.bbq-join-flow__grid li:not(:last-child)::after { display: none; }
	.bbq-top-cta { grid-template-columns: 1fr; }
	.bbq-top-cta__media { min-height: 350px; }
}

@media (max-width: 767px) {
	body.is-bbq-event-page .site-footer { padding-bottom: 78px; }
	.bbq-container,
	.bbq-container--narrow { width: min(100% - 32px, 1180px); }
	.bbq-section { padding-block: 72px; }
	.bbq-section-heading { margin-bottom: 34px; }
	.bbq-section-heading h2,
	.bbq-assurance__content h2 { font-size: clamp(28px, 9.2vw, 42px); }

	.bbq-hero {
		min-height: 1200px;
		padding: 108px 0 430px;
		align-items: start;
	}
	.bbq-hero__media img { object-position: center bottom; }
	.bbq-hero__shade { background: linear-gradient(180deg, rgba(255,250,238,0.98) 0%, rgba(255,250,238,0.86) 42%, rgba(255,250,238,0.12) 68%, rgba(24,43,32,0.2) 100%); }
	.bbq-hero__inner { width: min(100% - 24px, 560px); }
	.bbq-hero__pass { width: 100%; padding: 34px 24px 28px; }
	.bbq-ribbon { top: -17px; left: 18px; padding: 6px 20px; font-size: 15px; }
	.bbq-hero__kicker { margin-top: 8px; font-size: 10px; }
	.bbq-hero__title span { font-size: clamp(28px, 9vw, 44px); }
	.bbq-hero__title strong { font-size: clamp(102px, 35vw, 168px); }
	.bbq-page--en .bbq-hero__title span { font-size: clamp(26px, 8vw, 38px); }
	.bbq-hero__place { margin-top: 11px; font-size: 17px; }
	.bbq-hero__lead { font-size: 14px; }
	.bbq-date-stub { padding: 14px 12px; }
	.bbq-date-stub__date { font-size: 17px; }
	.bbq-hero__action { grid-template-columns: 1fr; gap: 14px; }
	.bbq-hero__action .bbq-button { grid-column: 1 / -1; justify-self: stretch; }

	.bbq-route { padding-left: 69px; }
	.bbq-route__track { left: 20px; }
	.bbq-route-stop { grid-template-columns: 1fr; gap: 13px; }
	.bbq-route-stop::before { left: -58px; }
	.bbq-route-stop time { font-size: 43px; }
	.bbq-route-stop > div { padding-left: 17px; }

	.bbq-dates__grid,
	.bbq-price-board__prices,
	.bbq-price-board__details { grid-template-columns: 1fr; }
	.bbq-session-ticket { min-height: 390px; }
	.bbq-price-board__prices > div + div { border-left: none; border-top: 2px dashed var(--bbq-ink); }
	.bbq-price-board__prices > div { padding: 22px 18px; }
	.bbq-price-board__prices strong { font-size: 46px; }
	.bbq-price-board__details { gap: 0; }
	.bbq-price-board__details > div + div { border-top: 1px solid var(--bbq-line); }
	.bbq-assurance__media { min-height: 390px; }
	.bbq-assurance__media img { object-position: 36% center; }
	.bbq-assurance__content { padding-block: 54px; }

	.bbq-stepper { padding: 16px 12px; }
	.bbq-stepper li { grid-template-columns: 28px 1fr; gap: 6px; font-size: 9px; line-height: 1.25; }
	.bbq-stepper li span { width: 28px; height: 28px; }
	.bbq-stepper li::after { left: 35px; right: 5px; }
	.bbq-form-step { grid-template-columns: 1fr; gap: 20px; padding: 24px 18px; }
	.bbq-field--full,
	.bbq-consents,
	.bbq-form-step__actions,
	.bbq-form__submit-note { grid-column: auto; }
	.bbq-choice-grid { grid-template-columns: 1fr; }
	.bbq-form-step__actions { justify-content: stretch; }
	.bbq-form-step__actions .bbq-button { flex: 1; padding-inline: 14px; }
	.bbq-faq summary { grid-template-columns: 34px 1fr auto; gap: 10px; padding-block: 21px; font-size: 15px; }
	.bbq-faq details > div { padding: 0 8px 22px 44px; }
	.bbq-sticky { display: grid; }

	.bbq-home-alert__inner {
		grid-template-columns: 1fr;
		gap: 10px;
		width: min(100% - 24px, 560px);
		padding-block: 13px 16px;
	}
	.bbq-home-alert__heading { gap: 1px; }
	.bbq-home-alert__heading strong { font-size: 17px; }
	.bbq-home-alert__meta { gap: 5px; }
	.bbq-home-alert__meta span { padding: 4px 8px; font-size: 10px; }
	.bbq-home-alert__button { width: 100%; min-height: 42px; padding-block: 8px; }

	.bbq-top-cta { border-radius: 18px; }
	.bbq-top-cta__content { padding: 38px 24px 45px; }
	.bbq-top-cta__media { min-height: 290px; }
}

@media (max-width: 390px) {
	.bbq-hero { min-height: 1160px; padding-bottom: 400px; }
	.bbq-hero__pass { padding-inline: 18px; }
	.bbq-hero__title span { font-size: 27px; }
	.bbq-hero__title strong { font-size: 105px; }
	.bbq-date-stub__date { display: grid; grid-template-columns: 1fr auto; gap: 4px; font-size: 15px; }
	.bbq-date-stub__age { font-size: 12px; }
	.bbq-hero__action > div strong { font-size: 14px; }
	.bbq-sticky a { min-width: 108px; }
}

@media (prefers-reduced-motion: reduce) {
	.bbq-page { scroll-behavior: auto; }
	.bbq-page *,
	.bbq-page *::before,
	.bbq-page *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
	.bbq-route__track span { height: 100%; }
}
