/* ==========================================================
   Regency Casino Block Styles
   These styles are shared between the frontend and editor.
   Colours should mainly be controlled from the block editor.
   ========================================================== */

:root {
	--regency-content-width: var(--wp--style--global--content-size, 1180px);
	--regency-wide-width: var(--wp--style--global--wide-size, 1360px);

	--regency-font-body: var(--wp--preset--font-family--montserrat, Montserrat, sans-serif);
	--regency-font-heading: Georgia, "Times New Roman", serif;

	--regency-gold: var(--wp--preset--color--regency-gold, #c7a300);
	--regency-green: var(--wp--preset--color--regency-green, #00a650);
	--regency-black: var(--wp--preset--color--regency-black, #0f120f);
	--regency-white: var(--wp--preset--color--regency-white, #ffffff);

	--regency-border-soft: color-mix(in srgb, currentColor 16%, transparent);
	--regency-border-medium: color-mix(in srgb, currentColor 28%, transparent);

	--regency-transition: 0.22s ease;
}


/* ==========================================================
   Full-width block background helper
   Works for Groups that use alignfull + background.
   ========================================================== */

.wp-block-group.alignfull.has-background {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	box-sizing: border-box;
	padding-left: clamp(1rem, 4vw, 3rem);
	padding-right: clamp(1rem, 4vw, 3rem);
}

.wp-block-group.alignfull.has-background > .wp-block-group__inner-container {
	width: min(100%, var(--regency-content-width));
	margin-left: auto;
	margin-right: auto;
}


/* ==========================================================
   FAQ / Accordion section layout
   Add class: regency-faq-section
   to the Columns block.
   ========================================================== */

.regency-faq-section {
	width: min(100%, var(--regency-content-width));
	margin-inline: auto;
	gap: clamp(3rem, 8vw, 8rem);
	align-items: flex-start;
	padding-block: clamp(4rem, 8vw, 7rem);
}

.regency-faq-section > .wp-block-column:first-child {
	max-width: 330px;
}

.regency-faq-section > .wp-block-column:last-child {
	flex: 1;
}

.regency-faq-section p {
	max-width: 330px;
}


/* ==========================================================
   Global Accordion Block Styling
   Applies to all core accordion blocks.
   Colours inherit from editor block settings.
   ========================================================== */

.wp-block-accordion {
	width: 100%;
	margin: 0;
	color: inherit;
}

.wp-block-accordion-item {
	margin: 0;
	border-bottom: 1px solid var(--regency-border-medium);
	color: inherit;
	margin-block-start: 0 !important;
}

.wp-block-accordion-heading {
	margin: 0;
	padding: 0;
}

.wp-block-accordion-heading__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	width: 100%;
	padding: 1.45rem 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	font-family: var(--regency-font-body);
	font-size: clamp(0.95rem, 1.1vw, 1.05rem);
	font-weight: 400;
	line-height: 1.45;
	text-align: left;
	cursor: pointer;
	box-shadow: none;
	opacity: 0.72;
	transition:
		opacity var(--regency-transition),
		color var(--regency-transition);
}

.wp-block-accordion-heading__toggle:hover,
.wp-block-accordion-heading__toggle:focus-visible {
	opacity: 1;
	color: inherit;
	background: transparent;
}

.wp-block-accordion-heading__toggle:focus-visible {
	outline: 1px solid currentColor;
	outline-offset: 4px;
}

.wp-block-accordion-heading__toggle-title {
	display: block;
	max-width: 90%;
}

.wp-block-accordion-heading__toggle-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 1.25rem;
	height: 1.25rem;
	color: inherit;
	font-size: 1.25rem;
	font-weight: 300;
	line-height: 1;
	transition:
		transform var(--regency-transition),
		opacity var(--regency-transition);
}

.wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle-icon,
.wp-block-accordion-heading__toggle[aria-expanded="true"] .wp-block-accordion-heading__toggle-icon {
	transform: rotate(45deg);
	opacity: 1;
}

.wp-block-accordion-panel {
	padding: 0 0 1.5rem;
	color: inherit;
	font-family: var(--regency-font-body);
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.65;
	opacity: 0.72;
}

.wp-block-accordion-panel p {
	margin-top: 0;
	margin-bottom: 1rem;
	max-width: none;
}

.wp-block-accordion-panel p:last-child {
	margin-bottom: 0;
}

.wp-block-accordion-item:not(.is-open) .wp-block-accordion-panel {
	display: none;
}


/* ==========================================================
   Button Style: Regency Arrow Link
   Select this from Button block > Styles.
   Colour is controlled from editor text colour.
   ========================================================== */

.wp-block-button.is-style-regency-arrow-link {
	display: inline-flex;
}

.wp-block-button.is-style-regency-arrow-link .wp-block-button__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0 0 0.65rem;
	border: 0;
	border-bottom: 1px solid var(--regency-gold);
	border-radius: 0;
	background: transparent;
	color: inherit;
	font-family: var(--regency-font-body);
	font-size: 0.72rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-decoration: none;
	box-shadow: none;
	transition:
		color var(--regency-transition),
		opacity var(--regency-transition);
}

.wp-block-button.is-style-regency-arrow-link .wp-block-button__link::after {
	content: "→";
	display: inline-block;
	color: var(--regency-gold);
	font-size: 1rem;
	line-height: 1;
	transform: translateY(-1px);
	transition: transform var(--regency-transition);
}

.wp-block-button.is-style-regency-arrow-link .wp-block-button__link:hover,
.wp-block-button.is-style-regency-arrow-link .wp-block-button__link:focus-visible {
	background: transparent;
	color: inherit;
	opacity: 0.85;
}

.wp-block-button.is-style-regency-arrow-link .wp-block-button__link:hover::after,
.wp-block-button.is-style-regency-arrow-link .wp-block-button__link:focus-visible::after {
	transform: translate(0.25rem, -1px);
}

.wp-block-button.is-style-regency-arrow-link .wp-block-button__link:focus-visible {
	outline: 1px solid currentColor;
	outline-offset: 4px;
}


/* ==========================================================
   Optional: Button colour helpers
   These work when you choose text colour in editor.
   ========================================================== */

.wp-block-button.is-style-regency-arrow-link .has-regency-gold-color {
	color: var(--regency-gold);
}

.wp-block-button.is-style-regency-arrow-link .has-regency-green-color {
	color: var(--regency-green);
}

.wp-block-button.is-style-regency-arrow-link .has-regency-white-color {
	color: var(--regency-white);
}


/* ==========================================================
   Editor support
   Keeps the layout closer to frontend inside Gutenberg.
   ========================================================== */

.editor-styles-wrapper .regency-faq-section {
	width: min(100%, var(--regency-content-width));
	margin-inline: auto;
}

.editor-styles-wrapper .wp-block-accordion {
	color: inherit;
}

.editor-styles-wrapper .wp-block-button.is-style-regency-arrow-link .wp-block-button__link {
	background: transparent;
	color: inherit;
}


/* ==========================================================
   Responsive
   ========================================================== */

@media (max-width: 991px) {
	.regency-faq-section {
		gap: 2.5rem;
	}

	.regency-faq-section > .wp-block-column:first-child {
		max-width: 100%;
	}

	.regency-faq-section p {
		max-width: 520px;
	}
}

@media (max-width: 767px) {
	.regency-faq-section {
		flex-direction: column;
		padding-block: 4rem;
	}

	.regency-faq-section > .wp-block-column {
		flex-basis: 100% !important;
		width: 100%;
	}

	.wp-block-accordion-heading__toggle {
		padding: 1.25rem 0;
		font-size: 0.95rem;
	}

	.wp-block-accordion-heading__toggle-title {
		max-width: 85%;
	}

	.wp-block-accordion-panel {
		font-size: 0.92rem;
	}
}

@media (max-width: 575px) {
	.wp-block-group.alignfull.has-background {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.regency-faq-section {
		padding-block: 3.5rem;
	}
}

/* ==========================================================
   Newsletter Cover Block
   Add class to Cover block: regency-newsletter-cover
   ========================================================== */

.regency-newsletter-cover.wp-block-cover.alignfull {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	min-height: clamp(30rem, 40vw, 44.625rem);
	padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem);
	box-sizing: border-box;
	overflow: hidden;
}

/* Keep background image full width */
.regency-newsletter-cover .wp-block-cover__image-background {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Inner content remains within normal container width */
.regency-newsletter-cover .wp-block-cover__inner-container {
	width: min(100%, var(--wp--style--global--content-size, 1180px));
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: flex-end;
	position: relative;
	z-index: 2;
}

/* Right-side content box */
.regency-newsletter-cover .wp-block-cover__inner-container > .wp-block-group {
	width: min(100%, 575px);
	margin-right: unset !important;
	color: inherit;
}

/* Heading */
.regency-newsletter-cover h2 {
	margin: 0 0 1.5rem;
	font-family: var(--regency-font-heading, Georgia, "Times New Roman", serif);
	font-size: clamp(1.9rem, 3vw, 2.7rem);
	font-weight: 500;
	line-height: 1.1;
	color: inherit;
}

/* Intro paragraph */
.regency-newsletter-cover p {
	margin: 0 0 2rem;
	max-width: 570px;
	font-family: var(--regency-font-body, Montserrat, sans-serif);
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	font-weight: 400;
	line-height: 1.35;
	color: inherit;
	opacity: 0.9;
}

/* Mailchimp form wrapper */
.regency-newsletter-cover .mc4wp-form {
	width: 100%;
	margin: 0;
}

.regency-newsletter-cover .mc4wp-form-fields {
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
}

/* Reset Mailchimp paragraph spacing */
.regency-newsletter-cover .mc4wp-form-fields p {
	margin: 0;
	max-width: none;
	opacity: 1;
}

/* Email label wrapper */
.regency-newsletter-cover .mc4wp-form label {
	display: block;
	margin: 0;
	width: 100%;
	font-family: var(--regency-font-body, Montserrat, sans-serif);
	color: inherit;
}

/* Email input */
.regency-newsletter-cover .mc4wp-form input[type="email"] {
	width: 100%;
	height: 3.4rem;
	padding: 0 1.6rem;
	border: 1px solid color-mix(in srgb, currentColor 38%, transparent);
	border-radius: 0;
	background: transparent;
	color: currentColor;
	font-family: var(--regency-font-body, Montserrat, sans-serif);
	font-size: 0.88rem;
	font-weight: 400;
	outline: none;
	box-shadow: none;
	box-sizing: border-box;
	transition:
		border-color 0.22s ease,
		background-color 0.22s ease;
}

.regency-newsletter-cover .mc4wp-form input[type="email"]::placeholder {
	color: currentColor;
	opacity: 0.65;
}

.regency-newsletter-cover .mc4wp-form input[type="email"]:focus {
	border-color: currentColor;
	background: color-mix(in srgb, currentColor 5%, transparent);
}

/* Checkbox row */
.regency-newsletter-cover .mc4wp-form input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 1.25rem;
	height: 1.25rem;
	margin: 0;
	border: 1px solid color-mix(in srgb, currentColor 55%, transparent);
	border-radius: 2px;
	background: transparent;
	display: inline-grid;
	place-content: center;
	flex: 0 0 auto;
	cursor: pointer;
}

.regency-newsletter-cover .mc4wp-form input[type="checkbox"]::before {
	content: "";
	width: 0.65rem;
	height: 0.65rem;
	transform: scale(0);
	background: currentColor;
	transition: transform 0.16s ease;
}

.regency-newsletter-cover .mc4wp-form input[type="checkbox"]:checked::before {
	transform: scale(1);
}

.regency-newsletter-cover .mc4wp-form input[type="checkbox"]:focus-visible {
	outline: 1px solid currentColor;
	outline-offset: 3px;
}

.regency-newsletter-cover .mc4wp-form input[type="checkbox"] + span {
	font-size: 0.95rem;
	line-height: 1.4;
	opacity: 0.82;
}

/* Make checkbox label horizontal */
.regency-newsletter-cover .mc4wp-form p:nth-of-type(2) label {
	display: flex;
	align-items: center;
	gap: 1rem;
}

/* Submit button */
.regency-newsletter-cover .mc4wp-form input[type="submit"] {
	min-width: 150px;
	height: 3.65rem;
	padding: 0 2rem;
	border: 1px solid color-mix(in srgb, currentColor 48%, transparent);
	border-radius: 0;
	background: transparent;
	color: currentColor;
	font-family: var(--regency-font-body, Montserrat, sans-serif);
	font-size: 0.9rem;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
	box-shadow: none;
	transition:
		background-color 0.22s ease,
		color 0.22s ease,
		border-color 0.22s ease;
}

.regency-newsletter-cover .mc4wp-form input[type="submit"]:hover,
.regency-newsletter-cover .mc4wp-form input[type="submit"]:focus-visible {
	background: currentColor;
	color: var(--wp--preset--color--regency-black, #0f120f);
	border-color: currentColor;
}

/* Mailchimp response */
.regency-newsletter-cover .mc4wp-response {
	margin-top: 1rem;
	font-family: var(--regency-font-body, Montserrat, sans-serif);
	font-size: 0.9rem;
	line-height: 1.5;
}

/* Optional: API warning styling */
.regency-newsletter-cover p[style*="indianred"] {
	margin-bottom: 1rem;
	font-size: 0.9rem;
	line-height: 1.4;
}

/* Mobile/tablet */
@media (max-width: 991px) {
	.regency-newsletter-cover.wp-block-cover.alignfull {
		min-height: auto;
		padding-top: 5rem;
		padding-bottom: 5rem;
	}

	.regency-newsletter-cover .wp-block-cover__inner-container {
		justify-content: center;
		text-align: center;
	}

	.regency-newsletter-cover .wp-block-cover__inner-container > .wp-block-group {
		width: min(100%, 620px);
	}

	.regency-newsletter-cover .mc4wp-form p:nth-of-type(2) label {
		justify-content: center;
		text-align: left;
	}

	.regency-newsletter-cover .mc4wp-form input[type="submit"] {
		margin-inline: auto;
	}
}

@media (max-width: 575px) {
	.regency-newsletter-cover.wp-block-cover.alignfull {
		padding: 4rem 1rem;
	}

	.regency-newsletter-cover h2 {
		margin-bottom: 1rem;
	}

	.regency-newsletter-cover p {
		margin-bottom: 1.5rem;
	}

	.regency-newsletter-cover .mc4wp-form-fields {
		gap: 1.25rem;
	}

	.regency-newsletter-cover .mc4wp-form input[type="email"] {
		height: 3.25rem;
		padding-inline: 1rem;
	}

	.regency-newsletter-cover .mc4wp-form p:nth-of-type(2) label {
		align-items: flex-start;
		justify-content: flex-start;
	}

	.regency-newsletter-cover .mc4wp-form input[type="submit"] {
		width: 100%;
	}
}

/* GAMING PAGE STYLES */
.gaming-banner {
    /* background-color: #000; */
    padding: 100px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.gaming-banner__content {
    max-width: 700px;
    margin: 0 auto;
}

.gaming-banner__label {
    display: inline-block;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c7a300;
    margin-bottom: 20px;
}

.gaming-banner__heading {
    font-family: 'Playfair Display', serif; 
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
}

.gaming-banner__heading--white {
    display: block;
    color: #ffffff;
    font-size: 5.8rem;
}

.gaming-banner__heading--highlight {
    display: block;
    color: #c7a300;
    font-size: 5.8rem;
    /* font-style: italic; */
}

.gaming-banner__description {
    color: #b0b0b0;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 767.98px) {
    .gaming-banner {
        padding: 70px 0 40px;
    }

    .gaming-banner__heading--white,
    .gaming-banner__heading--highlight {
        font-size: 32px;
    }

    .gaming-banner__description {
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .gaming-banner__heading--white,
    .gaming-banner__heading--highlight {
        font-size: 40px;
    }
}

.casino-games {
    /* background-color: #000; */
    padding: 40px 0;
}

.game-card {
    padding: 80px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.game-card:last-child {
    border-bottom: none;
}

.game-card__image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.game-card__category {
    display: inline-block;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c7a300;
    margin-bottom: 12px;
}

.game-card__title {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 3.15rem;
    margin-bottom: 16px;
}

.game-card__description {
    color: #b0b0b0;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.game-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
}

.game-card__meta-item--right {
    text-align: right;
}

.game-card__meta-label {
    display: block;
    font-size: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 6px;
}

.game-card__meta-value {
    font-family: var(--font-display);
    font-size: 30px;
    color: #fff;
}

.game-card__meta-value--gold {
    color: #c7a300;
}

/* Scroll animation */
.js-animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991.98px) {
    .game-card {
        padding: 35px 0;
    }

    .game-card__image img {
        height: 280px;
        margin-bottom: 20px;
    }

    .game-card__title {
        font-size: 26px;
    }
}

@media (max-width: 575.98px) {
    .game-card__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .game-card__meta-item--right {
        text-align: left;
    }
}

/* --------------------------------------------------
   Reserve Seat CTA Section
   -------------------------------------------------- */
.reserve-seat {
    /* background-color: var(--regency-black, #0a0a0a); */
    padding: 100px 0;
	border-top: 2px solid rgba(255, 255, 255, 0.15);
}

.reserve-seat__inner {
    max-width: 700px;
    margin: 0 auto;
}

.reserve-seat__heading {
    font-family: var(--regency-font-serif, 'Playfair Display', serif);
    font-weight: 400;
    font-size: 3.15rem;
    line-height: 1.2;
    color: var(--regency-white, #f5f2ec);
    margin-bottom: 40px;
}

.reserve-seat__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 36px;
    /* background-color: var(--regency-gold, #c9a875); */
	background-color: var(--regency-gold-dark, #b8935c);
    color: var(--regency-black, #0a0a0a);
    font-size: 14px;
    font-weight: 400;
    /* letter-spacing: 1.5px; */
    text-transform: uppercase;
    text-decoration: none;
	border: 1px solid #ffffff;
    border-radius: 2px;
    transition: background-color 0.3s ease, transform 0.3s ease, gap 0.3s ease;
}

.reserve-seat__btn:hover {
    /* background-color: var(--regency-gold-dark, #b8935c); */
	background-color: var(--regency-gold, #c9a875);
    color: var(--regency-black, #0a0a0a);
    gap: 20px;
}

.reserve-seat__arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.reserve-seat__btn:hover .reserve-seat__arrow {
    transform: translateX(4px);
}

/* --------------------------------------------------
   Responsive
   -------------------------------------------------- */
@media (max-width: 991px) {
    .reserve-seat {
        padding: 80px 0;
    }
    .reserve-seat__heading {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .reserve-seat {
        padding: 60px 0;
    }
    .reserve-seat__heading {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .reserve-seat__btn {
        padding: 16px 28px;
        font-size: 13px;
        width: 100%;
        max-width: 340px;
    }
}

/* AGE RESTRICTION TEXT */
.age-restriction{
	margin-bottom: 15px;
}

.age-text{
	color: var(--regency-gold);
	font-size: 24px;
	font-weight: 600;
}

.home-faq{
	font-family: var(--font-heading) !important; 
	font-size: 54px;
}

/* RESPONSIBLE GAMBLING */
.rg-hero,
.rg-commitment,
.rg-tips,
.rg-warning,
.rg-support,
.rg-cta,
.rg-visit {
	/* --rg-bg: #0d0a06; */
	--rg-bg-alt: #0E0E0C;
	--rg-card-bg: #1c150e;
	--rg-gold: #c9a24b;
	--rg-cream: #f4ede1;
	--rg-muted: #b7ab98;
	/* --rg-border: rgba(201, 162, 75, 0.25); */
	background-color: var(--rg-bg);
	color: var(--rg-cream);
}

.rg-hero{
	padding: 90px 0 !important;
}

.rg-commitment,
.rg-warning,
.rg-visit {
	background-color: var(--rg-bg-alt);
}

.rg-eyebrow {
	display: inline-block;
	font-size: 1.2rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--rg-gold);
	margin-bottom: 1.2rem;
}


.rg-section-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 500;
	color: var(--rg-cream);
	margin-bottom: 1.25rem;
}

.rg-highlight {
	color: var(--rg-gold);
}

.rg-hero__title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(2rem, 4vw, 5.8rem);
	line-height: 1.2;
	margin-bottom: 1.25rem;
}

/* .rg-hero__text {
	max-width: 640px;
	color: var(--rg-muted);
	font-size: 1rem;
	line-height: 1.7;
} */

.rg-hero__text {
	/* max-width: 640px; */
	margin-left: auto;
	margin-right: auto;
	/* color: var(--rg-muted); */
	font-size: 1.4rem;
	line-height: 1.7;
}

.rg-commitment__list {
	margin: 0;
	padding: 0;
}

.rg-commitment__item {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.1rem 0;
	border-bottom: 1px solid var(--rg-border);
	color: var(--rg-cream);
}

.rg-commitment__item:last-child {
	border-bottom: none;
}

.rg-commitment__dash {
	flex-shrink: 0;
	width: 28px;
	height: 1px;
	background-color: var(--rg-gold);
}

.rg-tips__row {
	margin-top: 2.5rem;
}

.rg-tips__col {
	margin-bottom: 2rem;
}

.rg-tips__number {
	display: block;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.5rem;
	color: var(--rg-gold);
	margin-bottom: 0.4rem;
}

.rg-tips__text {
	color: var(--rg-muted);
	margin-bottom: 0;
}

.rg-warning__intro {
	color: var(--rg-muted);
	line-height: 1.7;
}

.rg-warning__list {
	margin: 0;
	padding: 0;
}

.rg-warning__item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background-color: var(--rg-card-bg);
	border: 1px solid var(--rg-border);
	border-radius: 6px;
	margin-bottom: 0.9rem;
}

.rg-warning__index {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	color: var(--rg-gold);
	border: 1px solid var(--rg-border);
	border-radius: 50%;
}

.rg-support__text {
	color: var(--rg-muted);
	line-height: 1.7;
}

.rg-confidential-box {
	background-color: var(--rg-card-bg);
	border: 1px solid var(--rg-border);
	border-radius: 8px;
	padding: 2rem;
}

.rg-confidential-box__text {
	color: var(--rg-muted);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.rg-confidential-box__phone {
	display: inline-block;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.5rem;
	color: var(--rg-gold);
	text-decoration: none;
}

.rg-confidential-box__phone:hover {
	color: var(--rg-cream);
}

.rg-cta__quote {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(1.4rem, 3vw, 2rem);
	max-width: 760px;
	margin: 0 auto 0.75rem;
	line-height: 1.4;
}

.rg-cta__tag {
	font-size: 0.75rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--rg-muted);
	margin-bottom: 0;
}

.rg-visit__hours,
.rg-visit__contact {
	margin: 0;
	padding: 0;
}

.rg-visit__hours li {
	display: flex;
	justify-content: space-between;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--rg-border);
	color: var(--rg-cream);
}

.rg-visit__hours li span:first-child {
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	color: var(--rg-muted);
}

.rg-visit__address {
	color: var(--rg-muted);
	line-height: 1.7;
}

.rg-visit__contact li {
	color: var(--rg-muted);
	padding: 0.35rem 0;
}

.rg-visit__contact a {
	color: var(--rg-cream);
	text-decoration: none;
}

.rg-visit__contact a:hover {
	color: var(--rg-gold);
}

@media (max-width: 991.98px) {
	.rg-confidential-box {
		margin-top: 2rem;
	}
}


/* PROMOTIONS PAGE */
.promo-hero{
  background: var(--color-page-bg);
  padding: 110px 0 60px;
  text-align: center;
}
.promo-eyebrow{
  color: var(--color-gold);
  letter-spacing: 3px;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 400;
}
.promo-hero-title{
  color: var(--color-white);
  font-family: var(--regency-font-heading);
  font-size: 5.8rem;
  font-weight: 400;
  margin: 1rem 0;
}
.text-gold{ color: var(--color-gold); }
.promo-hero-sub{
  color: var(--color-muted);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.promo-list{ background: var(--color-page-bg); padding: 40px 0 100px; }

.promo-card{
  background: var(--color-card-bg);
  border: 1px solid rgba(198,154,8,0.25);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: border-color .25s ease, transform .25s ease;
}
.promo-card:hover{
  border-color: var(--color-gold);
  transform: translateY(-4px);
}
.promo-card-img img{ border-radius: 6px; margin-bottom: 1rem; width: 100%; }
.promo-card-title{ color: var(--color-gold); font-size: 1.4rem; margin-bottom: .75rem; }
.promo-card-desc{ color: var(--color-muted); font-size: .95rem; }

.promo-highlights{ list-style: none; padding: 0; margin: 1rem 0; }
.promo-highlights li{
  color: var(--color-text);
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: .4rem;
  font-size: .9rem;
}
.promo-highlights li::before{
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 6px; height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
}

.promo-duration{ color: var(--color-muted); font-size: .85rem; margin-top: auto; padding-top: .5rem; }

.promo-card-link{
  display: inline-block;
  margin-top: 1rem;
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
}
.promo-card-link:hover{ border-color: var(--color-gold); }

@media (max-width: 768px){
  .promo-hero-title{ font-size: 2.1rem; }
}

/* SINGLE PROMO */
.promo-hero--single{ padding-bottom: 40px; }

.promo-detail{
  background: var(--color-page-bg);
  padding: 20px 0 100px;
}
.promo-detail-img img{
  width: 100%;
  border-radius: 10px;
  margin-bottom: 2rem;
}
.promo-detail-desc{
  color: var(--color-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.promo-detail-subhead{
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.promo-highlights--large li{
  font-size: 1rem;
  margin-bottom: .7rem;
}
.promo-duration--large{
  font-size: 1rem;
  color: var(--color-text);
  margin-top: 1.5rem;
}
.promo-back-link{
  display: inline-block;
  margin-top: 2rem;
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
}
.promo-back-link:hover{ border-color: var(--color-gold); }

/* .promo-card-img img {
  border-radius: 6px;
  margin-bottom: 1rem;
  width: 100%;
  height: 280px;
  object-fit: cover;
} */

