:root {
	--color-bg: #1e1c4e;
	--color-bg-deep: #171540;
	--color-panel: rgba(30, 28, 78, 0.92);
	--color-panel-strong: rgba(44, 41, 105, 0.92);
	--color-panel-soft: rgba(255, 255, 255, 0.05);
	--color-text: #f7f8ff;
	--color-text-soft: rgba(247, 248, 255, 0.78);
	--color-text-muted: rgba(247, 248, 255, 0.56);
	--color-footer-bg: #2b3a8b;
	--color-accent: #f0d21f;
	--color-accent-soft: #fff1a4;
	--color-border: rgba(255, 255, 255, 0.14);
	--color-shadow: rgba(6, 10, 34, 0.4);
	--radius-lg: 30px;
	--radius-md: 20px;
	--radius-sm: 14px;
	--shell: min(1120px, calc(100vw - 32px));
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
	color: var(--color-text);
	background-color: var(--color-bg);
	background-image:
		radial-gradient(circle at top center, rgba(255, 255, 255, 0.06), transparent 28%),
		radial-gradient(circle at 50% 120%, rgba(111, 133, 235, 0.12), transparent 26%);
	line-height: 1.65;
}

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.16em;
}

img {
	max-width: 100%;
	height: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.screen-reader-text:focus {
	left: 12px;
	top: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	margin: 0;
	clip: auto;
	background: #ffffff;
	color: #10133f;
	border-radius: var(--radius-sm);
	z-index: 1000;
}

.site-shell {
	width: var(--shell);
	margin: 0 auto;
}

.site-shell--narrow {
	max-width: 820px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(18px);
	background:
		linear-gradient(180deg, rgba(43, 58, 139, 0.96), rgba(34, 45, 112, 0.9)),
		var(--color-footer-bg);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 10px 28px rgba(11, 18, 52, 0.22);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 0;
}

.site-branding__title {
	display: inline-block;
	font-size: 1.15rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-decoration: none;
	text-transform: uppercase;
	color: #ffffff;
}

.site-branding__tagline {
	margin: 4px 0 0;
	color: var(--color-text-muted);
	font-size: 0.9rem;
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	border: 1px solid var(--color-border);
	background: rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	padding: 10px 16px;
	font: inherit;
	font-weight: 700;
	color: #ffffff;
	cursor: pointer;
}

.menu-toggle__label {
	line-height: 1;
}

.menu-toggle__icon {
	display: inline-grid;
	gap: 3px;
	width: 18px;
}

.menu-toggle__icon span {
	display: block;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transform-origin: center;
	transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(1) {
	transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(3) {
	transform: translateY(-5px) rotate(-45deg);
}

.primary-navigation .menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-navigation a {
	text-decoration: none;
	font-weight: 700;
	color: var(--color-text-soft);
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible {
	color: #ffffff;
}

.site-content {
	padding-bottom: 0;
}

.is-front-page .site-content > *:not(section):not(.site-shell):not(.content-stack):not(.alignwide):not(.alignfull) {
	width: var(--shell);
	max-width: var(--shell);
	margin-left: auto;
	margin-right: auto;
}

.is-front-page .site-content > :where(p, ul, ol, blockquote):not(.alignwide):not(.alignfull) {
	color: var(--color-text-soft);
}

.is-front-page .site-content > :where(h1, h2, h3, h4, h5, h6):not(.alignwide):not(.alignfull) {
	color: #ffffff;
}

.is-front-page .site-content > :where(.wp-block-heading, h1, h2, h3, h4, h5, h6):not(.alignwide):not(.alignfull) {
	margin-top: 0;
	margin-bottom: 18px;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.02;
}

.is-front-page .site-content > :where(h1, .wp-block-heading:is(h1)):not(.alignwide):not(.alignfull) {
	font-size: clamp(3rem, 7vw, 5.4rem);
}

.is-front-page .site-content > :where(h2, .wp-block-heading:is(h2)):not(.alignwide):not(.alignfull) {
	font-size: clamp(2rem, 3.6vw, 3.25rem);
	margin-bottom: 18px;
}

.is-front-page .site-content > section + :where(h2, .wp-block-heading:is(h2)):not(.alignwide):not(.alignfull) {
	margin-top: 26px;
}

.is-front-page .site-content > :where(h3, .wp-block-heading:is(h3)):not(.alignwide):not(.alignfull) {
	font-size: clamp(1.55rem, 2.8vw, 2.25rem);
}

.is-front-page .site-content > :where(h4, .wp-block-heading:is(h4)):not(.alignwide):not(.alignfull) {
	font-size: clamp(1.25rem, 2.1vw, 1.7rem);
}

.is-front-page .site-content > :where(h5, .wp-block-heading:is(h5)):not(.alignwide):not(.alignfull),
.is-front-page .site-content > :where(h6, .wp-block-heading:is(h6)):not(.alignwide):not(.alignfull) {
	font-size: 1rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hero {
	padding: 44px 0 34px;
}

.hero__banner {
	margin: 0;
	font-size: clamp(4rem, 14vw, 8.5rem);
	font-weight: 900;
	line-height: 0.86;
	letter-spacing: -0.08em;
	text-transform: uppercase;
	text-align: center;
	color: rgba(255, 255, 255, 0.98);
}

.hero__poster {
	position: relative;
	max-width: 860px;
	margin: 10px auto 0;
	padding: 36px 36px 38px;
	border-radius: 36px;
	background: var(--color-bg);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 26px 70px var(--color-shadow);
	backdrop-filter: blur(18px);
	text-align: center;
	overflow: hidden;
}

.hero__poster::before {
	content: "";
	position: absolute;
	inset: auto 8% -30% 8%;
	height: 180px;
	background: radial-gradient(circle, rgba(138, 168, 255, 0.12), transparent 70%);
	pointer-events: none;
}

.hero__logo {
	display: block;
	width: min(130px, 24vw);
	height: auto;
	margin: 0 auto 22px;
	filter: drop-shadow(0 14px 28px rgba(7, 10, 30, 0.28));
}

.section-kicker,
.site-footer__eyebrow,
.partner-logo__eyebrow,
.summary-card__label {
	margin: 0 0 12px;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.section-kicker--light {
	color: rgba(255, 255, 255, 0.88);
}

.hero__title {
	margin: 0;
	font-size: clamp(2.2rem, 5vw, 4.1rem);
	line-height: 0.96;
	letter-spacing: -0.05em;
	text-transform: uppercase;
}

.hero__subtitle {
	margin: 14px auto 0;
	max-width: 16ch;
	font-size: clamp(1.35rem, 2.8vw, 2.35rem);
	line-height: 1.08;
	color: var(--color-accent);
}

.hero__meta {
	margin: 24px 0 0;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.88);
}

.hero__lede {
	max-width: 760px;
	margin: 26px auto 0;
}

.hero__lede p {
	margin: 0;
	color: var(--color-text-soft);
	font-size: 1.02rem;
}

.hero__lede p + p {
	margin-top: 18px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-top: 30px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 22px;
	border-radius: 999px;
	font-weight: 900;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, filter 180ms ease;
}

.button--primary {
	background: var(--color-accent);
	color: #131641;
	box-shadow: 0 14px 34px rgba(240, 210, 31, 0.22);
}

.button--ghost {
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: var(--color-footer-bg);
	color: #ffffff;
	box-shadow: 0 14px 30px rgba(15, 24, 69, 0.2);
}

.button:hover,
.button:focus-visible {
	transform: translateY(-1px);
}

.button--primary:hover,
.button--primary:focus-visible {
	box-shadow: 0 18px 38px rgba(240, 210, 31, 0.28);
	filter: brightness(1.03);
}

.button--ghost:hover,
.button--ghost:focus-visible {
	background: #3648a6;
	border-color: rgba(255, 255, 255, 0.18);
	box-shadow: 0 18px 38px rgba(15, 24, 69, 0.28);
}

.hero__summary {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 22px;
}

.highlights-section .hero__summary {
	margin-top: 0;
}

.summary-card,
.info-card,
.option-card,
.registration-card,
.feature-panel,
.entry-card {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
		var(--color-panel-soft);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 20px 52px var(--color-shadow);
	backdrop-filter: blur(16px);
}

.summary-card {
	padding: 22px 22px 20px;
	border-radius: 22px;
	height: 100%;
}

.summary-card__value {
	margin: 0;
	font-size: 1.22rem;
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
}

.summary-card__meta {
	margin: 8px 0 0;
	color: var(--color-text-soft);
	font-size: 0.95rem;
}

.section {
	padding: 34px 0;
}

.section-heading {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 860px;
	margin-bottom: 24px;
}

.section-heading--compact {
	margin-bottom: 0;
}

.section-heading--wide {
	max-width: 100%;
}

.section-title {
	margin: 0;
	font-size: clamp(2rem, 3.6vw, 3.25rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.04em;
	color: #ffffff;
}

.section-copy,
.feature-panel__copy p,
.entry-card__content,
.site-footer__text,
.site-footer__meta,
.info-card p,
.option-card p {
	margin: 0;
	color: var(--color-text-soft);
}

.card-grid,
.option-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.info-card,
.option-card {
	padding: 24px;
	border-radius: var(--radius-md);
}

.info-card h3,
.option-card h3 {
	margin: 0 0 10px;
	font-size: 1.1rem;
	color: #ffffff;
}

.section--muted .option-card,
.section--muted .info-card,
.section--muted .registration-card {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
		var(--color-panel-strong);
}

.registration-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
	gap: 24px;
	align-items: start;
}

.detail-list {
	margin: 6px 0 0;
	padding-left: 18px;
	color: var(--color-text-soft);
}

.detail-list li + li {
	margin-top: 6px;
}

.registration-card,
.entry-card,
.feature-panel {
	padding: 30px;
	border-radius: var(--radius-lg);
}

.registration-card {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)),
		rgba(38, 35, 92, 0.94);
}

.registration-card--full {
	width: 100%;
	padding: 34px;
}

.registration-card--full > * {
	max-width: 100%;
}

.registration-card--full .wp-block-shortcode,
.registration-card--full .wp-block-paragraph,
.registration-card--full .wp-block-heading,
.registration-card--full .wp-block-list {
	margin-top: 0;
}

.programme-section .section-heading {
	margin-bottom: 30px;
}

.programme-timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
	padding-top: 18px;
}

.programme-timeline::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 36px;
	height: 1px;
	background: rgba(255, 255, 255, 0.14);
}

.programme-item {
	position: relative;
	padding: 46px 22px 24px;
	border-radius: 24px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
		rgba(42, 39, 103, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 20px 52px var(--color-shadow);
}

.programme-item__badge {
	position: absolute;
	left: 22px;
	top: -14px;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--color-accent);
	color: #141742;
	box-shadow: 0 10px 26px rgba(240, 210, 31, 0.2);
}

.programme-item__badge svg {
	width: 20px;
	height: 20px;
	stroke: #141742;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
}

.programme-item__badge circle,
.programme-item__badge rect {
	fill: none;
}

.programme-item:nth-child(even) {
	transform: translateY(28px);
}

.programme-item__meta {
	margin: 0 0 10px;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.programme-item__title {
	margin: 0;
	font-size: 1.28rem;
	line-height: 1.12;
	color: #ffffff;
}

.programme-item__text {
	margin: 12px 0 0;
	color: var(--color-text-soft);
	font-size: 0.98rem;
}

.registration-section .section-heading {
	margin-bottom: 20px;
}

.hotel-section {
	padding-top: 24px;
}

.hotel-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
	gap: 24px;
	padding: 30px;
	border-radius: var(--radius-lg);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
		rgba(41, 37, 98, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 20px 52px var(--color-shadow);
}

.hotel-panel__content {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hotel-voucher {
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 24px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.hotel-voucher__label {
	margin: 0;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.hotel-voucher__code {
	margin: 10px 0 0;
	font-size: clamp(1.8rem, 4vw, 2.7rem);
	font-weight: 900;
	letter-spacing: 0.02em;
	color: var(--color-accent);
}

.hotel-voucher__actions {
	margin-top: 18px;
}

.hotel-voucher__note {
	margin: 14px 0 0;
	color: var(--color-text-soft);
	font-size: 0.95rem;
}

.registration-card > :first-child {
	margin-top: 0;
}

.registration-card > :last-child {
	margin-bottom: 0;
}

.placeholder-note,
.placeholder-code {
	display: block;
}

.placeholder-note {
	margin: 0 0 14px;
	color: var(--color-text-soft);
}

.placeholder-code {
	padding: 12px 14px;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--color-border);
	overflow-x: auto;
	color: var(--color-accent-soft);
}

.feature-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
	gap: 24px;
	align-items: center;
}

.content-stack {
	padding-top: 48px;
	padding-bottom: 40px;
}

.entry-card__title {
	margin-top: 0;
	margin-bottom: 18px;
	font-size: clamp(2rem, 4vw, 3rem);
	letter-spacing: -0.04em;
	color: #ffffff;
}

.entry-card__content > :first-child {
	margin-top: 0;
}

.entry-card__content > :last-child {
	margin-bottom: 0;
}

.entry-card__content a {
	color: var(--color-accent-soft);
}

.site-footer {
	margin-top: 26px;
	padding: 0 0 56px;
	background-color: var(--color-bg);
}

.site-footer__rail {
	width: min(100%, 800px);
	margin: 0 auto;
	background-color: var(--color-footer-bg);
}

.site-footer__skyline-wrap {
	margin: 0;
	line-height: 0;
}

.site-footer__skyline {
	display: block;
	width: 100%;
	height: auto;
	opacity: 0.96;
}

.site-footer__content {
	padding: 18px 28px 36px;
}

.site-footer__partners {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin: 0 auto 18px;
}

.partner-logo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	min-height: 112px;
	padding: 8px 6px;
	border: 0;
	background: transparent;
	box-shadow: none;
	text-decoration: none;
	text-align: center;
	transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
}

.partner-logo:hover,
.partner-logo:focus-visible {
	transform: translateY(-1px);
	filter: brightness(1.08);
}

.partner-logo__image {
	display: block;
	max-width: min(100%, 200px);
	max-height: 76px;
	width: auto;
	height: auto;
}

.partner-logo__name-fallback {
	font-size: 1.2rem;
	font-weight: 900;
	line-height: 1.1;
	color: #ffffff;
	text-transform: uppercase;
}

.site-footer__inner {
	max-width: 720px;
	margin: 0 auto;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.site-footer__eyebrow {
	margin-bottom: 8px;
}

.site-footer__text {
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

.site-footer__meta {
	margin-top: 8px;
	font-size: 0.92rem;
	color: var(--color-text-muted);
}

input,
select,
textarea {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.08);
	font: inherit;
	color: #ffffff;
}

input::placeholder,
textarea::placeholder {
	color: rgba(247, 248, 255, 0.56);
}

select option {
	color: #10133f;
}

textarea {
	min-height: 140px;
	resize: vertical;
}

label {
	display: inline-block;
	margin-bottom: 6px;
	font-weight: 700;
	color: #ffffff;
}

button,
input[type="submit"],
input[type="button"] {
	border: 0;
	border-radius: 999px;
	background: var(--color-accent);
	color: #131641;
	padding: 13px 22px;
	font: inherit;
	font-weight: 900;
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, filter 180ms ease;
	box-shadow: 0 14px 34px rgba(240, 210, 31, 0.22);
}

button:hover,
button:focus-visible,
input[type="submit"]:hover,
input[type="submit"]:focus-visible,
input[type="button"]:hover,
input[type="button"]:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 18px 38px rgba(240, 210, 31, 0.28);
	filter: brightness(1.03);
}

input[type="checkbox"],
input[type="radio"] {
	width: auto;
	accent-color: var(--color-accent);
}

.wpcf7 form,
.gform_wrapper form {
	display: grid;
	gap: 16px;
}

.wpcf7 {
	width: 100%;
	max-width: var(--shell);
	margin-left: auto;
	margin-right: auto;
}

.wpcf7 form {
	width: 100%;
}

.wpcf7 p {
	margin: 0;
}

.cf7-form {
	display: grid;
	gap: 24px;
	width: 100%;
}

.cf7-form__section {
	margin: 0;
	padding: 14px 24px 22px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
		rgba(43, 40, 101, 0.88);
}

.cf7-form__section > .wpcf7-form-control-wrap {
	display: block;
}

.cf7-form__section-title {
	display: block;
	width: 100%;
	margin: 0 0 6px;
	padding: 0;
	border: 0;
	font-size: 0.9rem;
	font-weight: 900;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-accent-soft);
}

.cf7-grid {
	display: grid;
	gap: 10px 18px;
	align-items: start;
}

.cf7-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cf7-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cf7-field {
	margin: 0;
	align-self: start;
}

.cf7-field--full {
	grid-column: 1 / -1;
}

.cf7-field label {
	display: grid;
	gap: 2px;
	margin: 0;
	line-height: 1.35;
}

.cf7-field .wpcf7-form-control-wrap {
	display: block;
	margin-top: 0;
}

.cf7-form__section-title + .cf7-grid,
.cf7-form__section-title + .wpcf7-form-control-wrap {
	margin-top: -6px;
}

.cf7-check-grid .wpcf7-form-control {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.cf7-check-grid .wpcf7-list-item {
	display: block;
	margin: 0;
}

.cf7-check-grid .wpcf7-list-item label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	min-height: 100%;
	padding: 18px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.06);
	transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.cf7-check-grid .wpcf7-list-item label:hover {
	transform: translateY(-1px);
	border-color: rgba(240, 210, 31, 0.34);
}

.cf7-check-grid .wpcf7-list-item input {
	margin-top: 4px;
	flex: 0 0 auto;
}

.cf7-inline-note {
	margin: -6px 0 0;
	color: var(--color-text-muted);
	font-size: 0.92rem;
}

.cf7-submit-row {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 12px;
	margin-top: 2px;
}

.cf7-submit-row .wpcf7-spinner {
	margin: 0;
}

.cf7-form > .cf7-cf-turnstile,
.cf7-form > .cf-turnstile {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	margin-top: -6px;
	margin-bottom: 8px;
}

.cf7-form > .cf7-cf-turnstile > *,
.cf7-form > .cf-turnstile > * {
	max-width: 100%;
}

.registration-card--full input,
.registration-card--full select,
.registration-card--full textarea {
	background: rgba(255, 255, 255, 0.09);
}

.wpcf7 .wpcf7-submit,
.gform_wrapper .gform_button {
	min-width: 180px;
}

.wpcf7-not-valid-tip,
.gform_wrapper .validation_message,
.gform_wrapper .gfield_validation_message {
	color: #ffd8d8;
	font-size: 0.94rem;
}

.wpcf7 form .wpcf7-response-output,
.gform_wrapper .validation_error {
	margin: 0;
	border-radius: 14px;
	color: #ffffff;
	border-color: rgba(240, 210, 31, 0.48);
	background: rgba(240, 210, 31, 0.08);
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: rgba(138, 214, 162, 0.54);
	background: rgba(112, 196, 137, 0.14);
}

@media (max-width: 980px) {
	.hero__summary,
	.card-grid,
	.option-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.registration-layout,
	.feature-panel,
	.hotel-panel {
		grid-template-columns: 1fr;
	}

	.programme-timeline {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.programme-item:nth-child(even) {
		transform: none;
	}

	.programme-timeline::before {
		display: none;
	}
}

@media (max-width: 760px) {
	.site-header__inner {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.primary-navigation {
		display: none;
		width: 100%;
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-navigation .menu {
		flex-direction: column;
		align-items: flex-start;
		padding-top: 10px;
	}

	.hero {
		padding-top: 24px;
	}

	.hero__poster,
	.registration-card,
	.feature-panel,
	.hotel-panel,
	.entry-card {
		padding: 24px;
	}

	.hero__summary,
	.card-grid,
	.option-grid,
	.site-footer__partners,
	.programme-timeline {
		grid-template-columns: 1fr;
	}

	.site-footer {
		margin-top: 18px;
	}

	.site-footer__content {
		padding: 18px 22px 30px;
	}

	.partner-logo {
		min-height: auto;
		padding: 4px 0;
	}

	.partner-logo__image {
		max-width: min(100%, 240px);
		max-height: 72px;
	}

	.site-footer__inner {
		max-width: 100%;
		padding-top: 20px;
	}

	.cf7-grid--2,
	.cf7-grid--3,
	.cf7-check-grid .wpcf7-form-control {
		grid-template-columns: 1fr;
	}

	.registration-card--full {
		padding: 24px;
	}

	.cf7-form__section {
		padding: 20px;
	}
}
