/*!
 * Easy Peasy Party Hire — Theme Styles
 * ─────────────────────────────────────
 * Custom theme replacing The7. Self-contained: manages own header,
 * footer, mobile menu, and responsive layout.
 *
 * Palette:
 *   coral   #E94B35   primary
 *   cream   #FFFFFF   backgrounds (pure white)
 *   cream-2 #F4F6F9   panel backgrounds (cool off-white, no warm tint)
 *   ink     #15110F   text
 *   ink-2   #2D2421   secondary text
 *   yellow  #FFC93C   accent, buttons
 *   gold    #B5945C   wedding-page accent
 *   blue    #5B8AB8   bayside accent
 *   muted   #786F66   subdued text
 *   line    #E1E5EB   dividers (cool grey)
 */

/* ============================================================
 * TOKENS
 * ============================================================ */
:root {
	--coral: #E94B35;
	--coral-dark: #C73A24;
	--coral-light: #FF7B5C;
	--cream: #FFFFFF;
	--cream-2: #F4F6F9;
	--ink: #15110F;
	--ink-2: #2D2421;
	--yellow: #FFC93C;
	--yellow-dark: #E8B32A;
	--gold: #B5945C;
	--blue: #5B8AB8;
	--muted: #786F66;
	--line: #E1E5EB;

	--font-display: 'Fraunces', Georgia, serif;
	--font-body: 'Familjen Grotesk', system-ui, -apple-system, sans-serif;
	--font-brand: 'DM Sans', system-ui, sans-serif;

	--radius-sm: 4px;
	--radius: 8px;
	--radius-lg: 16px;
	--radius-full: 999px;

	--shadow-sm: 0 1px 2px rgba(21, 17, 15, 0.04), 0 1px 3px rgba(21, 17, 15, 0.06);
	--shadow: 0 4px 8px rgba(21, 17, 15, 0.06), 0 8px 24px rgba(21, 17, 15, 0.08);
	--shadow-lg: 0 12px 32px rgba(21, 17, 15, 0.12), 0 24px 64px rgba(21, 17, 15, 0.10);

	--container: 1200px;
	--container-narrow: 900px;
	--nav-h: 74px;

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
 * RESET / BASE
 * ============================================================ */
*, *::before, *::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	tab-size: 4;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.55;
	color: var(--ink);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* NOTE: no overflow-x here — it breaks position:sticky on .site-header.
	   If a specific section pushes decorative elements past the viewport,
	   clip on that section (see .hero) rather than at the body level. */
}

img, svg, video {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* H1 gets Fraunces — the playful display serif works for one-shot page
   headlines. H2 and below use Familjen Grotesk with heavy weight; the
   serif reads as noisy on repeated section headers and longer
   two-line H2s. Weight 800 keeps the visual hierarchy strong. */
h1 {
	font-family: var(--font-display);
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0 0 0.5em;
}
h2, h3, h4, h5, h6 {
	font-family: var(--font-body);
	font-weight: 800;
	letter-spacing: -0.015em;
	line-height: 1.2;
	margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

button {
	font-family: inherit;
	font-size: inherit;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
	color: inherit;
}

input, textarea, select {
	font-family: inherit;
	font-size: inherit;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 20px;
}

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

.skip-link {
	position: absolute;
	top: -40px;
	left: 6px;
	background: var(--ink);
	color: var(--cream);
	padding: 8px 12px;
	z-index: 999;
	border-radius: 0 0 var(--radius) var(--radius);
}
.skip-link:focus {
	top: 0;
}

/* Better focus rings */
:focus-visible {
	outline: 3px solid var(--coral);
	outline-offset: 2px;
	border-radius: var(--radius-sm);
}

/* ============================================================
 * TOPBAR
 * ============================================================ */
.topbar {
	background: var(--ink);
	color: var(--cream);
	font-size: 14px;
	padding: 8px 0;
}
.topbar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
.topbar-message strong { color: var(--yellow); }
.topbar-contact {
	display: flex;
	gap: 20px;
	align-items: center;
}
.topbar-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--cream);
	opacity: 0.9;
	transition: opacity 0.15s;
}
.topbar-link:hover { opacity: 1; text-decoration: none; }

@media (max-width: 720px) {
	.topbar-contact { display: none; }
	.topbar-inner { justify-content: center; text-align: center; }
	.topbar-message { font-size: 13px; }
}

/* ============================================================
 * SITE HEADER / NAV
 * ============================================================ */
.site-header {
	background: var(--cream);
	border-bottom: 1px solid var(--line);
	position: sticky;
	top: 0;
	z-index: 100;
}
.site-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--nav-h);
	gap: 24px;
}

/* Logo */
.nav-logo, .custom-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none !important;
	flex-shrink: 0;
}
.nav-logo-mark {
	font-family: var(--font-brand);
	font-weight: 900;
	background: var(--ink);
	color: var(--coral);
	width: 46px;
	height: 46px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	letter-spacing: -0.02em;
}
.nav-logo-text {
	font-family: var(--font-brand);
	font-weight: 900;
	line-height: 1;
	color: var(--ink);
	font-size: 20px;
	letter-spacing: -0.01em;
}
.nav-logo-text small {
	display: block;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 3px;
	color: var(--coral);
	margin-top: 3px;
	text-transform: uppercase;
}

/* Menu */
.nav-menu {
	display: flex;
	align-items: center;
	gap: 4px;
}
.nav-menu a {
	color: var(--ink);
	font-weight: 500;
	font-size: 15px;
	padding: 8px 14px;
	border-radius: var(--radius);
	transition: all 0.15s;
	text-decoration: none;
}
.nav-menu a:hover:not(.nav-cta) {
	background: var(--cream-2);
	text-decoration: none;
}
.nav-menu a.is-active:not(.nav-cta) {
	color: var(--coral);
	font-weight: 700;
}
.nav-menu a.nav-cta {
	background: var(--coral);
	color: var(--cream) !important;
	font-weight: 700;
	padding: 10px 18px;
	margin-left: 10px;
}
.nav-menu a.nav-cta:hover {
	background: var(--coral-dark);
	text-decoration: none;
}

/* Hamburger */
.nav-hamburger {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	border-radius: var(--radius);
	transition: background 0.15s;
}
.nav-hamburger:hover { background: var(--cream-2); }
.hamburger-line {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform 0.25s var(--ease), opacity 0.15s;
}
.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
	opacity: 0;
}
.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
	.nav-menu { display: none; }
	.nav-hamburger { display: flex; }
}

/* ============================================================
 * MOBILE MENU (off-canvas)
 * ============================================================ */
.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 200;
}
.mobile-menu[hidden] { display: none !important; }
.mobile-menu-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(21, 17, 15, 0.55);
	backdrop-filter: blur(4px);
	animation: fadeIn 0.25s var(--ease);
	z-index: 1;
}
.mobile-menu-inner {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: min(360px, 88vw);
	background: var(--cream);
	display: flex;
	flex-direction: column;
	padding: 20px;
	animation: slideInRight 0.28s var(--ease);
	box-shadow: -8px 0 24px rgba(21, 17, 15, 0.15);
	z-index: 2;
}
.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--line);
	margin-bottom: 8px;
}
.mobile-menu-title {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 900;
	margin: 0;
}
.mobile-menu-close {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius);
	color: var(--ink);
}
.mobile-menu-close:hover { background: var(--cream-2); }

.mobile-menu-nav {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 20px 0;
}
.mobile-menu-nav a {
	display: block;
	padding: 14px 12px;
	border-radius: var(--radius);
	font-size: 17px;
	font-weight: 500;
	color: var(--ink);
	text-decoration: none;
	transition: background 0.15s;
}
.mobile-menu-nav a:hover:not(.nav-cta) { background: var(--cream-2); }
.mobile-menu-nav a.is-active:not(.nav-cta) { color: var(--coral); font-weight: 700; }
.mobile-menu-nav a.nav-cta {
	background: var(--coral);
	color: var(--cream);
	font-weight: 700;
	text-align: center;
	margin-top: 12px;
	padding: 16px;
}
.mobile-menu-footer {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
}
.mobile-menu-contact {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	color: var(--muted);
	font-size: 15px;
	text-decoration: none;
}
.mobile-menu-contact:hover { color: var(--ink); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }

/* Body locked when mobile menu open */
body.mobile-menu-open { overflow: hidden; }

/* ============================================================
 * BUTTONS
 * ============================================================ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: var(--radius);
	font-weight: 700;
	font-size: 15px;
	text-decoration: none !important;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.15s;
	white-space: nowrap;
	line-height: 1;
}
.btn-lg { padding: 16px 30px; font-size: 17px; }

.btn-primary {
	background: var(--coral);
	color: var(--cream);
	border-color: var(--coral);
}
.btn-primary:hover { background: var(--coral-dark); border-color: var(--coral-dark); }

.btn-yellow {
	background: var(--yellow);
	color: var(--ink);
	border-color: var(--yellow);
}
.btn-yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }

.btn-ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--cream-2); }

.btn-ghost-cream {
	background: transparent;
	color: var(--cream);
	border-color: rgba(255, 248, 236, 0.4);
}
.btn-ghost-cream:hover { background: rgba(255, 248, 236, 0.1); border-color: var(--cream); }

/* ============================================================
 * SECTION HEADER (shared across page)
 * ============================================================ */
.section-header {
	max-width: 780px;
	margin: 0 auto 48px;
	text-align: center;
}
.section-header .eyebrow {
	display: inline-block;
	font-family: var(--font-brand);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 3px;
	color: var(--coral);
	margin-bottom: 16px;
	text-transform: uppercase;
}
.section-header h2 {
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.1;
	margin-bottom: 16px;
}
.section-header .section-lede {
	font-size: 18px;
	color: var(--muted);
	line-height: 1.5;
	margin-bottom: 0;
}

/* ============================================================
 * HERO
 * ============================================================ */
.hero {
	position: relative;
	background: var(--coral);
	color: var(--cream);
	padding: 100px 0 120px;
	overflow: hidden;
	isolation: isolate;
}
.hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: -1;
}
.hero-bg::before {
	content: '';
	position: absolute;
	top: -20%;
	right: -10%;
	width: 60%;
	height: 80%;
	background: radial-gradient(circle at center, var(--coral-light) 0%, transparent 70%);
	opacity: 0.6;
}
.hero-confetti {
	position: absolute;
	left: var(--x);
	top: var(--y);
	width: 14px;
	height: 14px;
	background: var(--c);
	transform: rotate(var(--r));
	border-radius: 2px;
}
.hero-confetti:nth-child(odd) { border-radius: 50%; width: 10px; height: 10px; }

.hero-inner {
	position: relative;
	max-width: 900px;
	text-align: center;
}
.hero-eyebrow {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 248, 236, 0.15);
	backdrop-filter: blur(8px);
	color: var(--cream);
	padding: 8px 14px;
	border-radius: var(--radius-full);
	font-family: var(--font-brand);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 1.5px;
}
.hero-badge-review .hero-stars { color: var(--yellow); letter-spacing: 1px; }

.hero-headline {
	font-size: clamp(48px, 8vw, 96px);
	line-height: 0.95;
	letter-spacing: -0.03em;
	color: var(--cream);
	margin-bottom: 28px;
}
.hero-headline em {
	color: var(--yellow);
	font-style: italic;
	font-weight: 500;
}

.hero-subhead {
	font-size: clamp(17px, 2vw, 21px);
	color: rgba(255, 248, 236, 0.92);
	max-width: 640px;
	margin: 0 auto 40px;
	line-height: 1.5;
}

.hero-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.hero-inclusions {
	display: flex;
	gap: 24px;
	justify-content: center;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	font-family: var(--font-brand);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.5px;
	color: rgba(255, 248, 236, 0.9);
}

@media (max-width: 640px) {
	.hero { padding: 60px 0 80px; }
	.hero-headline { font-size: clamp(40px, 12vw, 60px); }
	.hero-inclusions { gap: 12px; font-size: 13px; }
}

/* ============================================================
 * TRUST STRIP
 * ============================================================ */
.trust-strip {
	background: var(--ink);
	color: var(--cream);
	padding: 40px 0;
}
.trust-inner {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
	text-align: center;
}
.trust-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.trust-item strong {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 32px;
	color: var(--yellow);
	line-height: 1;
}
.trust-item span {
	font-size: 13px;
	color: rgba(255, 248, 236, 0.75);
}

@media (max-width: 780px) {
	.trust-inner { grid-template-columns: repeat(2, 1fr); }
	.trust-item strong { font-size: 26px; }
}

/* ============================================================
 * HOW IT WORKS
 * ============================================================ */
.how-it-works, .scenarios, .pricing-guide, .products, .guest-guide,
.suburbs, .reviews-section, .credentials, .faq-section {
	padding: 100px 0;
}
.how-it-works { background: var(--cream); }

.steps-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.step-card {
	background: var(--cream-2);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px 24px;
	position: relative;
}
.step-num {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 48px;
	color: var(--coral);
	line-height: 1;
	margin-bottom: 16px;
	opacity: 0.9;
}
.step-card h3 {
	font-size: 20px;
	margin-bottom: 10px;
}
.step-card p {
	color: var(--muted);
	font-size: 15px;
	margin: 0;
}

@media (max-width: 900px) {
	.steps-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
	.steps-list { grid-template-columns: 1fr; }
}

/* ============================================================
 * SCENARIO CARDS
 * ============================================================ */
.scenarios { background: var(--cream-2); }
.scenario-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.scenario-card {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px 24px;
	text-decoration: none !important;
	color: var(--ink);
	transition: transform 0.2s var(--ease), box-shadow 0.2s;
	position: relative;
	display: flex;
	flex-direction: column;
}
.scenario-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}
.scenario-icon {
	color: var(--coral);
	width: 40px;
	height: 40px;
	margin-bottom: 20px;
}
.scenario-card h3 {
	font-size: 22px;
	margin-bottom: 10px;
}
.scenario-card p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.5;
	flex: 1;
	margin-bottom: 20px;
}
.scenario-arrow {
	font-family: var(--font-brand);
	font-weight: 900;
	color: var(--coral);
	font-size: 22px;
}
.scenario-card-wedding .scenario-icon { color: var(--gold); }
.scenario-card-bayside .scenario-icon { color: var(--blue); }

@media (max-width: 900px) {
	.scenario-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
	.scenario-grid { grid-template-columns: 1fr; }
}

/* ============================================================
 * PLANNER
 * ============================================================ */
.planner-section {
	background: var(--ink);
	color: var(--cream);
	padding: 100px 0;
}
.planner-section .section-header h2 { color: var(--cream); }
.planner-section .section-header .section-lede { color: rgba(255, 248, 236, 0.7); }
.planner-section .section-header .eyebrow { color: var(--yellow); }

.planner {
	max-width: 780px;
	margin: 0 auto;
	background: var(--cream);
	color: var(--ink);
	border-radius: var(--radius-lg);
	padding: 40px;
	box-shadow: var(--shadow-lg);
}

.planner-progress {
	margin-bottom: 32px;
	position: relative;
	height: 8px;
	background: var(--cream-2);
	border-radius: var(--radius-full);
	overflow: hidden;
}
.planner-progress-bar {
	position: absolute;
	inset: 0;
	background: var(--coral);
	width: 20%;
	transition: width 0.35s var(--ease);
	border-radius: var(--radius-full);
}
.planner-progress-text {
	position: absolute;
	top: 14px;
	right: 0;
	font-size: 13px;
	color: var(--muted);
	font-family: var(--font-brand);
	font-weight: 700;
}

.planner-step {
	display: none;
	border: none;
	padding: 0;
	margin: 24px 0 0;
	animation: fadeIn 0.3s var(--ease);
}
.planner-step.is-active { display: block; }
.planner-step-title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 28px;
	color: var(--ink);
	padding: 0;
	margin: 0 0 24px;
	line-height: 1.2;
}

/* Option tiles */
.option-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-bottom: 24px;
}
.option-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 20px 12px;
	background: var(--cream-2);
	border: 2px solid transparent;
	border-radius: var(--radius);
	cursor: pointer;
	transition: all 0.15s;
	text-align: center;
}
.option-tile input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.option-tile:hover { border-color: var(--line); }
.option-tile:has(input:checked) {
	background: var(--coral);
	color: var(--cream);
	border-color: var(--coral);
}
.option-tile-icon { font-size: 24px; line-height: 1; }
.option-tile-label { font-size: 13px; font-weight: 700; }

@media (max-width: 600px) {
	.option-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Option chips (single-line radio) */
.option-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}
.option-chip {
	position: relative;
	display: inline-block;
}
.option-chip input {
	position: absolute; opacity: 0; pointer-events: none;
}
.option-chip span {
	display: inline-block;
	padding: 10px 18px;
	background: var(--cream-2);
	border: 2px solid transparent;
	border-radius: var(--radius-full);
	font-size: 14px;
	font-weight: 700;
	color: var(--ink);
	cursor: pointer;
	transition: all 0.15s;
}
.option-chip:has(input:checked) span {
	background: var(--coral);
	color: var(--cream);
	border-color: var(--coral);
}
.option-chip span:hover { border-color: var(--line); }

/* Check tiles */
.checkbox-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-bottom: 24px;
}
.check-tile {
	position: relative;
	display: block;
}
.check-tile input { position: absolute; opacity: 0; pointer-events: none; }
.check-tile span {
	display: block;
	padding: 12px 10px;
	background: var(--cream-2);
	border: 2px solid transparent;
	border-radius: var(--radius);
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	transition: all 0.15s;
}
.check-tile span:hover { border-color: var(--line); }
.check-tile:has(input:checked) span {
	background: var(--coral);
	color: var(--cream);
	border-color: var(--coral);
}

@media (max-width: 600px) {
	.checkbox-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Field groups */
.field-group { margin-bottom: 20px; }
.field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 20px;
}
.field-row .field-group { margin-bottom: 0; }

.field-label {
	display: block;
	font-family: var(--font-brand);
	font-weight: 700;
	font-size: 13px;
	color: var(--ink);
	margin-bottom: 8px;
	letter-spacing: 0.5px;
}
.field-input {
	width: 100%;
	padding: 14px 16px;
	background: var(--cream-2);
	border: 2px solid transparent;
	border-radius: var(--radius);
	font-size: 16px;
	color: var(--ink);
	transition: all 0.15s;
	font-family: inherit;
}
.field-input:focus {
	outline: none;
	background: var(--cream);
	border-color: var(--coral);
}
textarea.field-input { resize: vertical; min-height: 90px; }

.checkbox-inline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	font-size: 14px;
	color: var(--muted);
	cursor: pointer;
}
.checkbox-inline input[type="checkbox"] { accent-color: var(--coral); }

@media (max-width: 540px) {
	.field-row { grid-template-columns: 1fr; }
}

/* Photo upload */
.upload-zone {
	position: relative;
	border: 2px dashed var(--line);
	border-radius: var(--radius);
	background: var(--cream-2);
	padding: 32px 20px;
	text-align: center;
	transition: all 0.2s;
	cursor: pointer;
}
.upload-zone:hover, .upload-zone.is-dragover {
	border-color: var(--coral);
	background: var(--cream);
}
.upload-input {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}
.upload-hint { pointer-events: none; }
.upload-icon { font-size: 32px; display: block; margin-bottom: 8px; }
.upload-text { color: var(--muted); font-size: 14px; line-height: 1.5; }
.upload-text strong { color: var(--coral); }
.upload-text small { color: var(--muted); font-size: 12px; }
.upload-preview {
	margin-top: 16px;
	padding: 12px;
	background: var(--cream);
	border-radius: var(--radius);
	text-align: left;
	display: flex;
	gap: 12px;
	align-items: center;
}
.upload-preview img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius-sm); }
.upload-preview-info { flex: 1; font-size: 14px; }
.upload-preview-info strong { display: block; color: var(--ink); }
.upload-preview-info small { color: var(--muted); }
.upload-preview-remove {
	background: var(--cream-2);
	border-radius: var(--radius-sm);
	padding: 6px 10px;
	font-size: 12px;
	font-weight: 700;
	color: var(--ink-2);
}

/* Consent line */
.consent-line {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 13px;
	color: var(--muted);
	line-height: 1.5;
	cursor: pointer;
}
.consent-line input { accent-color: var(--coral); margin-top: 2px; }

/* Honeypot */
.honeypot { position: absolute; left: -9999px; }

/* Nav */
.planner-nav {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}
.planner-nav .planner-prev { margin-right: auto; }
.planner-submit .submit-spinner { display: inline-flex; align-items: center; gap: 8px; }
.planner-submit.is-loading .submit-text { display: none; }

/* Success / error */
.planner-success, .planner-error {
	text-align: center;
	padding: 40px 20px;
	animation: fadeIn 0.4s var(--ease);
}
.success-icon {
	width: 64px;
	height: 64px;
	background: var(--coral);
	color: var(--cream);
	border-radius: 50%;
	font-size: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.planner-success h3 {
	font-size: 28px;
	margin-bottom: 12px;
}
.success-ref {
	font-family: var(--font-brand);
	color: var(--muted);
	margin-bottom: 16px;
}
.success-ref strong { color: var(--coral); font-size: 18px; }
.success-fine {
	font-size: 13px;
	color: var(--muted);
	margin-top: 20px;
}
.success-fine code {
	background: var(--cream-2);
	padding: 2px 6px;
	border-radius: var(--radius-sm);
	font-size: 12px;
}

.planner-error {
	background: rgba(233, 75, 53, 0.08);
	border: 1px solid rgba(233, 75, 53, 0.2);
	border-radius: var(--radius);
	color: var(--ink);
	font-size: 14px;
	padding: 20px;
	text-align: center;
	margin-top: 20px;
}

@media (max-width: 640px) {
	.planner { padding: 24px; }
	.planner-step-title { font-size: 22px; }
	.planner-nav { flex-direction: column; }
	.planner-nav .btn { width: 100%; }
	.planner-nav .planner-prev { order: 2; }
}

/* ============================================================
 * PRICING TABLE
 * ============================================================ */
.pricing-guide { background: var(--cream); }
.pricing-table-wrap {
	overflow-x: auto;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	background: var(--cream);
}
.pricing-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--cream);
}
.pricing-table thead {
	background: var(--ink);
	color: var(--cream);
}
.pricing-table th, .pricing-table td {
	padding: 16px 20px;
	text-align: left;
	border-bottom: 1px solid var(--line);
}
.pricing-table thead th {
	font-family: var(--font-brand);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--yellow);
	border-bottom: none;
}
.pricing-table tbody th {
	font-weight: 700;
	color: var(--ink);
}
.pricing-table tbody tr:last-child th, .pricing-table tbody tr:last-child td {
	border-bottom: none;
}
.pricing-table tbody td strong { color: var(--coral); font-size: 16px; }
.pricing-fineprint {
	margin-top: 20px;
	text-align: center;
	color: var(--muted);
	font-size: 14px;
}

/* ============================================================
 * PRODUCTS
 * ============================================================ */
.products { background: var(--cream-2); }
.product-categories {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.product-category {
	background: var(--cream);
	border-radius: var(--radius-lg);
	padding: 32px;
	border: 1px solid var(--line);
}
.product-category header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--line);
}
.product-category h3 {
	font-size: 22px;
	margin: 0;
}
.category-price {
	font-family: var(--font-brand);
	font-weight: 900;
	color: var(--coral);
	font-size: 14px;
	margin: 0;
}
.category-desc {
	color: var(--muted);
	font-size: 14px;
	margin-bottom: 16px;
}
.product-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.product-list li {
	padding: 8px 0;
	border-bottom: 1px dashed var(--line);
	font-size: 14px;
}
.product-list li:last-child { border-bottom: none; }
.products-cta {
	text-align: center;
	color: var(--muted);
	margin-top: 40px;
	font-size: 15px;
}
.products-cta a { color: var(--coral); font-weight: 700; }

@media (max-width: 900px) {
	.product-categories { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
	.product-categories { grid-template-columns: 1fr; }
}

/* ============================================================
 * GUEST GUIDE
 * ============================================================ */
.guest-guide { background: var(--cream); }
.guest-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.guest-card {
	background: var(--cream-2);
	border-radius: var(--radius-lg);
	padding: 28px 24px;
	border: 1px solid var(--line);
}
.guest-card h3 {
	font-size: 20px;
	color: var(--coral);
	margin-bottom: 12px;
}
.guest-recommend {
	font-size: 14px;
	color: var(--ink);
	margin-bottom: 14px;
	line-height: 1.4;
}
.guest-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 13px;
	color: var(--muted);
}
.guest-card li {
	padding: 4px 0 4px 16px;
	position: relative;
}
.guest-card li::before {
	content: '·';
	position: absolute;
	left: 4px;
	color: var(--coral);
	font-weight: 900;
}

@media (max-width: 900px) {
	.guest-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
	.guest-cards { grid-template-columns: 1fr; }
}

/* ============================================================
 * SUBURBS
 * ============================================================ */
.suburbs { background: var(--cream-2); }
.suburb-zones {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.suburb-zone {
	background: var(--cream);
	border-radius: var(--radius-lg);
	padding: 32px;
	border: 1px solid var(--line);
}
.suburb-zone h3 {
	font-size: 20px;
	margin-bottom: 8px;
}
.zone-timing {
	font-size: 14px;
	color: var(--muted);
	margin-bottom: 20px;
}
.zone-timing strong { color: var(--coral); }
.suburb-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.suburb-list li {
	background: var(--cream-2);
	padding: 6px 12px;
	border-radius: var(--radius-full);
	font-size: 13px;
	font-weight: 500;
}
.suburbs-note {
	text-align: center;
	color: var(--muted);
	margin-top: 32px;
	font-size: 15px;
}
.suburbs-note a { color: var(--coral); font-weight: 700; }

@media (max-width: 720px) {
	.suburb-zones { grid-template-columns: 1fr; }
}

/* ============================================================
 * REVIEWS
 * ============================================================ */
.reviews-section { background: var(--cream); }
.review-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.review-card {
	background: var(--cream-2);
	border-radius: var(--radius-lg);
	padding: 32px;
	border: 1px solid var(--line);
	display: flex;
	flex-direction: column;
}
.review-stars {
	color: var(--yellow);
	font-size: 18px;
	letter-spacing: 2px;
	margin-bottom: 16px;
}
.review-body {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--ink);
	margin: 0 0 20px;
	padding: 0;
	border: none;
	flex: 1;
	font-style: italic;
}
.review-footer {
	font-family: var(--font-brand);
	font-weight: 700;
	font-size: 13px;
	color: var(--muted);
}
.review-footer cite { font-style: normal; color: var(--ink); }

@media (max-width: 900px) {
	.review-grid { grid-template-columns: 1fr; }
}

/* ============================================================
 * CREDENTIALS
 * ============================================================ */
.credentials { background: var(--ink); color: var(--cream); }
.cred-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}
.cred-block h2 {
	font-size: clamp(28px, 3.5vw, 40px);
	color: var(--cream);
	margin-bottom: 20px;
}
.cred-block p {
	color: rgba(255, 248, 236, 0.8);
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 16px;
}
.cred-facts {
	list-style: none;
	padding: 0;
	margin: 0;
	background: var(--ink-2);
	border-radius: var(--radius-lg);
	padding: 8px 24px;
}
.cred-facts li {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 20px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(255, 248, 236, 0.1);
	font-size: 14px;
	line-height: 1.5;
}
.cred-facts li:last-child { border-bottom: none; }
.cred-facts strong {
	font-family: var(--font-brand);
	color: var(--yellow);
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.cred-facts span { color: var(--cream); }
.cred-facts em { color: var(--muted); font-style: normal; }
.cred-facts a { color: var(--yellow); font-weight: 700; }

@media (max-width: 900px) {
	.cred-grid { grid-template-columns: 1fr; gap: 40px; }
	.cred-facts li { grid-template-columns: 1fr; gap: 4px; }
}

/* ============================================================
 * FAQ
 * ============================================================ */
.faq-section { background: var(--cream); }
.faq-list {
	max-width: 780px;
	margin: 0 auto;
}
.faq-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	max-width: 1080px;
	margin: 0 auto;
}
@media (max-width: 780px) {
	.faq-list { grid-template-columns: 1fr; }
}
.faq-item {
	padding: 24px 28px;
	background: var(--cream-2);
	border-radius: 12px;
	border-left: 3px solid var(--coral);
}
.faq-item h3.faq-question {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--ink);
	margin: 0 0 8px;
	line-height: 1.35;
}
.faq-answer {
	color: var(--ink-2);
	line-height: 1.65;
	max-width: 640px;
}
.faq-answer p { margin: 0; font-size: 0.98rem; }

/* ============================================================
 * FINAL CTA
 * ============================================================ */
.final-cta {
	background: var(--coral);
	color: var(--cream);
	padding: 80px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}
.final-cta::before, .final-cta::after {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: var(--coral-light);
	opacity: 0.4;
	z-index: -1;
}
.final-cta::before { top: -100px; left: -100px; }
.final-cta::after { bottom: -100px; right: -100px; }
.final-cta-inner { position: relative; }
.final-cta h2 {
	font-size: clamp(32px, 5vw, 56px);
	color: var(--cream);
	margin-bottom: 16px;
}
.final-cta p {
	font-size: 18px;
	color: rgba(255, 248, 236, 0.9);
	margin-bottom: 32px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.final-cta-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ============================================================
 * FOOTER
 * ============================================================ */
.site-footer {
	background: var(--ink);
	color: var(--cream);
	padding: 60px 0 30px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}
.footer-col-brand { padding-right: 24px; }
.footer-brand-lockup {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--cream);
	text-decoration: none;
	margin-bottom: 20px;
}
.footer-brand-mark {
	background: var(--cream);
	color: var(--coral);
	width: 44px;
	height: 44px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-brand);
	font-weight: 900;
	font-size: 22px;
}
.footer-brand-text {
	font-family: var(--font-brand);
	font-weight: 900;
	font-size: 20px;
	color: var(--cream);
}
.footer-brand-text small {
	display: block;
	font-weight: 700;
	font-size: 11px;
	color: var(--coral-light);
	letter-spacing: 3px;
	margin-top: 3px;
	text-transform: uppercase;
}
.footer-blurb {
	color: rgba(255, 248, 236, 0.75);
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
}
.footer-address {
	color: rgba(255, 248, 236, 0.75);
	font-size: 14px;
	line-height: 1.8;
}
.footer-address a { color: var(--yellow); text-decoration: none; }
.footer-address a:hover { text-decoration: underline; }

.footer-widget-title {
	font-family: var(--font-brand);
	font-weight: 700;
	color: var(--yellow);
	font-size: 13px;
	letter-spacing: 2px;
	margin: 0 0 20px;
	text-transform: uppercase;
}
.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-menu li { margin-bottom: 10px; }
.footer-menu a {
	color: rgba(255, 248, 236, 0.75);
	font-size: 14px;
	text-decoration: none;
}
.footer-menu a:hover { color: var(--cream); }

.footer-bottom {
	border-top: 1px solid rgba(255, 248, 236, 0.1);
	padding-top: 24px;
	text-align: center;
}
.footer-legal {
	font-size: 13px;
	color: rgba(255, 248, 236, 0.55);
	margin: 0;
}
.footer-legal a { color: var(--cream); text-decoration: none; }
.footer-legal a:hover { text-decoration: underline; }
.footer-legal-sep { margin: 0 8px; opacity: 0.4; }

@media (max-width: 900px) {
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
	.footer-grid { grid-template-columns: 1fr; gap: 32px; }
	.footer-col-brand { padding-right: 0; }
}

/* ============================================================
 * ACCESSIBILITY / MOTION
 * ============================================================ */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* Print */
@media print {
	.topbar, .site-header, .mobile-menu, .final-cta, .site-footer { display: none; }
	.planner-section, .hero { background: white; color: black; }
	.hero-headline, .planner-step-title, h1, h2, h3 { color: black; }
	body { background: white; color: black; }
}

/* ============================================================
 * LANDING PAGE SUPPORT
 * page-landing.php template. Landing pages control their own
 * section widths and backgrounds — the wrapper stays out of the way.
 * ============================================================ */
.landing-main {
	width: 100%;
	max-width: none;
	padding: 0;
	margin: 0;
}

.landing-article {
	width: 100%;
	max-width: none;
	padding: 0;
	margin: 0;
}

/* Neutralise anything the theme's default page.php would add if a landing
   page fragment ever ends up on a regular page template by mistake. */
.landing-article > * {
	max-width: none;
}

/* Robust highlight span — used across landing pages to draw attention to
   key words in H1s (e.g., "milestone party"). The linear-gradient version
   was fragile against font-loading and inherited color; this version uses
   an inline-block background with box-decoration-break so multi-line
   highlights don't split awkwardly. */
.landing-article .underline,
.landing-article .hl,
.hero h1 .underline {
	background-color: rgba(255, 201, 60, 0.55); /* --yellow at 55% */
	color: inherit;
	padding: 0 6px;
	border-radius: 3px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	background-image: none; /* override any lingering gradient */
}

/* ============================================================
 * SITE-WIDE CONTACT MODAL
 * Triggered by any element with .epph-open-contact or data-open-contact.
 * Lives in footer.php so it's available on every page.
 * ============================================================ */
.epph-contact-modal[hidden] { display: none !important; }
.epph-contact-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	animation: epphCmIn 0.2s ease-out;
}
@keyframes epphCmIn { from { opacity: 0; } to { opacity: 1; } }
.epph-cm-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(21, 17, 15, 0.72);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 1;
}
.epph-cm-card {
	position: relative;
	z-index: 2;
	background: #fff;
	border-radius: 20px;
	max-width: 540px;
	width: 100%;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	box-shadow: 0 30px 80px rgba(0,0,0,0.3);
	animation: epphCmCardIn 0.25s ease-out;
}
@keyframes epphCmCardIn {
	from { opacity: 0; transform: translateY(20px) scale(0.98); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}
.epph-cm-head {
	padding: 22px 32px 14px;
	border-bottom: 1px solid var(--line);
	position: relative;
}
.epph-cm-head h2 {
	font-family: var(--font-body);
	font-weight: 800;
	font-size: 1.35rem;
	margin: 0 0 4px;
	color: var(--ink);
}
.epph-cm-head p {
	margin: 0;
	color: var(--muted);
	font-size: 0.88rem;
	line-height: 1.45;
}
.epph-cm-head a { color: var(--coral); text-decoration: underline; }
.epph-cm-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: none;
	background: var(--cream-2);
	color: var(--ink);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	line-height: 1;
	transition: background 0.15s;
}
.epph-cm-close:hover { background: var(--line); }
.epph-cm-body { padding: 16px 32px 22px; }
.epph-cm-row { margin-bottom: 10px; }
.epph-cm-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
.epph-cm-split .epph-cm-row { margin-bottom: 0; }
.epph-cm-body label {
	display: block;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 4px;
}
.epph-cm-body label .req { color: var(--coral); }
.epph-cm-body input[type="text"],
.epph-cm-body input[type="email"],
.epph-cm-body input[type="tel"],
.epph-cm-body textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1.5px solid var(--line);
	border-radius: 8px;
	font-size: 0.92rem;
	font-family: inherit;
	background: #fff;
	color: var(--ink);
	transition: border-color 0.15s;
}
.epph-cm-body input:focus,
.epph-cm-body textarea:focus {
	outline: none;
	border-color: var(--coral);
}
.epph-cm-actions {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
}
.epph-cm-error {
	background: rgba(233,75,53,0.08);
	color: var(--coral);
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 0.88rem;
	margin-bottom: 14px;
}
.epph-cm-success {
	padding: 40px 36px;
	text-align: center;
}
.epph-cm-check {
	width: 64px;
	height: 64px;
	background: var(--coral);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 2.2rem;
}
.epph-cm-success h3 {
	font-family: var(--font-body);
	font-weight: 800;
	font-size: 1.4rem;
	margin: 0 0 6px;
	color: var(--ink);
}
.epph-cm-ref {
	background: var(--cream-2);
	border-radius: 8px;
	padding: 10px 18px;
	display: inline-block;
	margin: 12px 0 8px;
	font-family: var(--font-display);
	font-weight: 700;
}
.epph-cm-ref strong {
	color: var(--coral);
	font-family: inherit;
	letter-spacing: 0.05em;
}
body.epph-cm-open { overflow: hidden; }
@media (max-width: 600px) {
	.epph-cm-split { grid-template-columns: 1fr; }
	.epph-cm-head, .epph-cm-body, .epph-cm-success { padding-left: 24px; padding-right: 24px; }
}

/* Shared CTA row for the end of any section (how-it-works, scenarios, etc.) */
.section-cta {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	margin-top: 48px;
	flex-wrap: wrap;
}
.section-cta .btn { min-width: 0; }
@media (max-width: 640px) {
	.section-cta { flex-direction: column; align-items: stretch; }
	.section-cta .btn { justify-content: center; }
}

/* ============================================================
 * SITE-WIDE QUICK QUOTE MODAL
 * Triggered by .epph-open-quote / data-open-quote
 * ============================================================ */
.epph-quote-modal[hidden] { display: none !important; }
.epph-quote-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	animation: epphCmIn 0.2s ease-out;
}
.epph-qm-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(21, 17, 15, 0.72);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 1;
}
.epph-qm-card {
	position: relative;
	z-index: 2;
	background: #fff;
	border-radius: 20px;
	max-width: 620px;
	width: 100%;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	box-shadow: 0 30px 80px rgba(0,0,0,0.3);
	animation: epphCmCardIn 0.25s ease-out;
}
.epph-qm-head {
	padding: 22px 32px 14px;
	border-bottom: 1px solid var(--line);
	position: relative;
}
.epph-qm-head h2 { font-family: var(--font-body); font-weight: 800; font-size: 1.4rem; margin: 0 0 4px; color: var(--ink); }
.epph-qm-head p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.45; }
.epph-qm-close {
	position: absolute;
	top: 14px; right: 14px;
	width: 32px; height: 32px;
	border-radius: 50%;
	border: none;
	background: var(--cream-2);
	color: var(--ink);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	line-height: 1;
	transition: background 0.15s;
}
.epph-qm-close:hover { background: var(--line); }
.epph-qm-body { padding: 16px 32px 22px; }
.epph-qm-section-label {
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--coral);
	margin: 8px 0 8px;
	padding-bottom: 4px;
	border-bottom: 1px solid var(--line);
}
.epph-qm-section-label:first-child { margin-top: 0; }
.epph-qm-row { margin-bottom: 10px; }
.epph-qm-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 10px;
}
.epph-qm-split .epph-qm-row { margin-bottom: 0; }
.epph-qm-body label {
	display: block;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 4px;
}
.epph-qm-body label .req { color: var(--coral); }
.epph-qm-body input[type="text"],
.epph-qm-body input[type="email"],
.epph-qm-body input[type="tel"],
.epph-qm-body input[type="date"],
.epph-qm-body select,
.epph-qm-body textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1.5px solid var(--line);
	border-radius: 8px;
	font-size: 0.92rem;
	font-family: inherit;
	background: #fff;
	color: var(--ink);
	transition: border-color 0.15s;
}
.epph-qm-body input:focus, .epph-qm-body select:focus, .epph-qm-body textarea:focus {
	outline: none;
	border-color: var(--coral);
}
.epph-qm-actions {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
}
.epph-qm-error {
	background: rgba(233,75,53,0.08);
	color: var(--coral);
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 0.88rem;
	margin-bottom: 14px;
}
.epph-qm-success { padding: 40px 36px; text-align: center; }
.epph-qm-check {
	width: 64px; height: 64px;
	background: var(--coral); color: #fff;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 16px;
	font-size: 2.2rem;
}
.epph-qm-success h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.4rem; margin: 0 0 6px; color: var(--ink); }
.epph-qm-ref {
	background: var(--cream-2);
	border-radius: 8px;
	padding: 10px 18px;
	display: inline-block;
	margin: 12px 0 8px;
	font-family: var(--font-display);
	font-weight: 700;
}
.epph-qm-ref strong {
	color: var(--coral);
	font-family: inherit;
	letter-spacing: 0.05em;
}
body.epph-qm-open { overflow: hidden; }
@media (max-width: 600px) {
	.epph-qm-split { grid-template-columns: 1fr; }
	.epph-qm-head, .epph-qm-body, .epph-qm-success { padding-left: 24px; padding-right: 24px; }
}

/* ============================================================
 * SHARED LANDING-PAGE FRAMEWORK (.ep-lp-*)
 * Used by wedding, birthday, event, and specific-occasion pages.
 * Kept lean — each landing page adds page-specific styles inline.
 * ============================================================ */
.ep-lp {
	--lp-space-1: 12px;
	--lp-space-2: 24px;
	--lp-space-3: 40px;
	--lp-space-4: 80px;
	font-family: var(--font-body);
	color: var(--ink);
	line-height: 1.55;
}
.ep-lp * { box-sizing: border-box; }
.ep-lp h1 {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0 0 16px;
	color: var(--ink);
	line-height: 1.1;
	font-size: clamp(2.4rem, 5.5vw, 4rem);
}
.ep-lp h2, .ep-lp h3, .ep-lp h4 {
	font-family: var(--font-body);
	font-weight: 800;
	letter-spacing: -0.015em;
	margin: 0 0 16px;
	color: var(--ink);
	line-height: 1.2;
}
.ep-lp h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); }
.ep-lp h3 { font-size: 1.2rem; }
.ep-lp p { margin: 0 0 16px; }
/* Coral inline links, but with zero specificity via :where() so button
   classes below always win their own text-colour battle. */
.ep-lp :where(a) { color: var(--coral); }

.ep-lp-eyebrow {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--coral);
	margin-bottom: 12px;
}

.ep-lp-section {
	padding: var(--lp-space-4) var(--lp-space-2);
	background: var(--cream);
}
.ep-lp-section-dark {
	background: var(--ink);
	color: #fff;
}
.ep-lp-section-dark h2, .ep-lp-section-dark h3 { color: #fff; }
.ep-lp-section-alt { background: var(--cream-2); }
.ep-lp-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.ep-lp-inner-narrow {
	max-width: 780px;
	margin: 0 auto;
}
.ep-lp-section-head {
	text-align: center;
	max-width: 700px;
	margin: 0 auto var(--lp-space-3);
}
.ep-lp-lead {
	font-size: 1.1rem;
	color: var(--ink-2);
	margin: 0;
}
.ep-lp-section-dark .ep-lp-lead { color: rgba(255,255,255,0.75); }

/* Hero */
.ep-lp-hero {
	background: var(--cream);
	padding: 50px 24px 60px;
	position: relative;
	overflow: hidden;
}
.ep-lp-hero-inner {
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 60px;
	align-items: center;
}
.ep-lp-hero-copy h1 { margin-bottom: 20px; }
.ep-lp-hero-copy .ep-lp-lead { font-size: 1.15rem; margin-bottom: 28px; }
.ep-lp-hero-ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}
.ep-lp-hero-proof {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	color: var(--muted);
	font-size: 0.9rem;
}
.ep-lp-hero-proof strong { color: var(--ink); font-weight: 700; }
.ep-lp-hero-visual {
	background: var(--cream-2);
	border-radius: 24px;
	aspect-ratio: 4/5;
	padding: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.ep-lp-hero-visual svg { max-width: 100%; height: auto; }
@media (max-width: 900px) {
	.ep-lp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
	.ep-lp-hero-visual { aspect-ratio: 5/4; padding: 30px; }
	.ep-lp-hero { padding: 30px 24px 40px; }
}

/* Buttons */
.ep-lp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 24px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 0.98rem;
	font-family: inherit;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.15s;
	text-decoration: none;
	line-height: 1.2;
}
.ep-lp-btn-primary {
	background: var(--coral);
	color: #fff;
	border-color: var(--coral);
}
.ep-lp-btn-primary:hover {
	background: var(--coral-dark);
	border-color: var(--coral-dark);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(233,75,53,0.28);
}
.ep-lp-btn-ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--line);
}
.ep-lp-btn-ghost:hover {
	background: var(--cream-2);
	border-color: var(--ink);
	color: var(--ink);
}
.ep-lp-btn-yellow {
	background: var(--yellow);
	color: var(--ink);
	border-color: var(--yellow);
}
.ep-lp-btn-yellow:hover {
	background: #ffbf10;
	border-color: #ffbf10;
	color: var(--ink);
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(255,201,60,0.35);
}

/* Trust strip */
.ep-lp-trust {
	background: var(--ink);
	color: #fff;
	padding: 20px 24px;
}
.ep-lp-trust-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 20px;
	align-items: center;
	text-align: center;
	font-size: 0.9rem;
}
.ep-lp-trust-item strong { color: var(--yellow); font-family: var(--font-display); }

/* 3-col feature grid */
.ep-lp-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.ep-lp-feature {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 28px;
	transition: transform 0.15s, box-shadow 0.15s;
}
.ep-lp-feature:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(21,17,15,0.08);
}
.ep-lp-feature-icon {
	width: 72px;
	height: 72px;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(233,75,53,0.15), rgba(255,201,60,0.25));
	color: var(--coral);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	border: 1px solid rgba(233,75,53,0.18);
	box-shadow: 0 4px 12px rgba(233,75,53,0.08);
}
.ep-lp-feature-icon svg {
	width: 36px;
	height: 36px;
	stroke-width: 1.75;
}
.ep-lp-feature h3 { margin-bottom: 10px; font-size: 1.12rem; }
.ep-lp-feature p { color: var(--ink-2); font-size: 0.95rem; margin: 0; }
@media (max-width: 900px) {
	.ep-lp-features { grid-template-columns: 1fr; }
}

/* Packages */
.ep-lp-packages {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.ep-lp-package {
	background: #fff;
	border: 2px solid var(--line);
	border-radius: 16px;
	padding: 32px 28px;
	position: relative;
	display: flex;
	flex-direction: column;
}
.ep-lp-package.is-featured {
	border-color: var(--coral);
	transform: scale(1.03);
	box-shadow: 0 20px 50px rgba(233,75,53,0.15);
}
.ep-lp-package-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--coral);
	color: #fff;
	padding: 5px 14px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.ep-lp-package-name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--ink);
	margin-bottom: 6px;
}
.ep-lp-package-price {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
	color: var(--ink);
	line-height: 1;
	margin-bottom: 4px;
}
.ep-lp-package-price small { font-size: 0.9rem; color: var(--muted); font-weight: 400; }
.ep-lp-package-tag { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; }
.ep-lp-package ul {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	flex: 1;
}
.ep-lp-package li {
	padding: 8px 0;
	font-size: 0.92rem;
	color: var(--ink-2);
	border-bottom: 1px solid var(--cream-2);
	position: relative;
	padding-left: 22px;
}
.ep-lp-package li:before {
	content: "✓";
	color: var(--coral);
	font-weight: 800;
	position: absolute;
	left: 0;
}
@media (max-width: 900px) {
	.ep-lp-packages { grid-template-columns: 1fr; }
	.ep-lp-package.is-featured { transform: none; }
}

/* Steps / process */
.ep-lp-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.ep-lp-step {
	background: var(--cream-2);
	border-radius: 14px;
	padding: 28px 24px;
	position: relative;
}
.ep-lp-step-num {
	position: absolute;
	top: -18px;
	left: 24px;
	background: var(--coral);
	color: #fff;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.1rem;
}
.ep-lp-step h3 { margin: 12px 0 8px; font-size: 1.05rem; }
.ep-lp-step p { color: var(--ink-2); font-size: 0.92rem; margin: 0; }
@media (max-width: 900px) { .ep-lp-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ep-lp-steps { grid-template-columns: 1fr; } }

/* Testimonials */
.ep-lp-testimonials {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.ep-lp-testimonial {
	background: #fff;
	border-radius: 16px;
	padding: 28px;
	border: 1px solid var(--line);
}
.ep-lp-testimonial-stars {
	color: var(--yellow);
	font-size: 1.1rem;
	margin-bottom: 12px;
}
.ep-lp-testimonial p {
	font-style: italic;
	color: var(--ink-2);
	line-height: 1.6;
}
.ep-lp-testimonial-author {
	margin-top: 16px;
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--ink);
}
.ep-lp-testimonial-author span {
	font-weight: 400;
	color: var(--muted);
	display: block;
	font-size: 0.85rem;
	margin-top: 2px;
}
@media (max-width: 900px) { .ep-lp-testimonials { grid-template-columns: 1fr; } }

/* FAQ — 2 col on desktop, deliberately visually distinct from Location cards */
.ep-lp-faqs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	max-width: 1080px;
	margin: 0 auto;
	counter-reset: faq-counter;
}
.ep-lp-faq {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 26px 28px 24px;
	counter-increment: faq-counter;
	transition: border-color 0.15s;
}
.ep-lp-faq:hover { border-color: var(--coral); }
.ep-lp-faq::before {
	content: counter(faq-counter, decimal-leading-zero);
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--coral);
	letter-spacing: 0.08em;
	margin-bottom: 12px;
	line-height: 1;
}
.ep-lp-faq h3 {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 1.05rem;
	margin: 0 0 10px;
	line-height: 1.35;
	color: var(--ink);
}
.ep-lp-faq p {
	color: var(--ink-2);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}
@media (max-width: 780px) { .ep-lp-faqs { grid-template-columns: 1fr; } }

/* CTA row */
.ep-lp-cta-row {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 40px;
}

/* Final CTA */
.ep-lp-final {
	background: var(--coral);
	color: #fff;
	padding: 100px 24px;
	text-align: center;
}
.ep-lp-final h2 { color: #fff; margin-bottom: 16px; }
.ep-lp-final p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 620px; margin: 0 auto 32px; }
.ep-lp-final-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}
.ep-lp-final .ep-lp-btn-primary { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.ep-lp-final .ep-lp-btn-primary:hover { background: #ffbf10; border-color: #ffbf10; }
.ep-lp-final .ep-lp-btn-ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,0.4);
}
.ep-lp-final .ep-lp-btn-ghost:hover { background: #fff; color: var(--coral); border-color: #fff; }

/* ============================================================
 * OCCASION HUB CARDS (used on the /occasions/ umbrella page)
 * Each card is a whole clickable link to a detail page.
 * ============================================================ */
.ep-lp-occasion-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media (max-width: 900px) {
	.ep-lp-occasion-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.ep-lp-occasion-grid { grid-template-columns: 1fr; }
}
.ep-lp a.ep-lp-occasion-card {
	display: block;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 24px 26px 22px;
	color: var(--ink);
	text-decoration: none;
	transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
	position: relative;
	min-height: 100%;
}
.ep-lp a.ep-lp-occasion-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(21,17,15,0.08);
	border-color: var(--coral);
	color: var(--ink);
}
.ep-lp-occasion-card-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(233,75,53,0.1);
	color: var(--coral);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}
.ep-lp a.ep-lp-occasion-card h3 {
	font-family: var(--font-body);
	font-size: 1.02rem;
	font-weight: 700;
	margin: 0 0 6px;
	color: var(--ink);
	line-height: 1.3;
}
.ep-lp a.ep-lp-occasion-card p {
	color: var(--ink-2);
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
}
.ep-lp-occasion-card-arrow {
	position: absolute;
	top: 24px;
	right: 24px;
	color: var(--coral);
	font-size: 1.1rem;
	font-weight: 700;
	transition: transform 0.15s;
	line-height: 1;
}
.ep-lp a.ep-lp-occasion-card:hover .ep-lp-occasion-card-arrow {
	transform: translateX(4px);
}

/* Narrower centered grid variant for sections with fewer cards */
.ep-lp-occasion-grid-narrow {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 560px) {
	.ep-lp-occasion-grid-narrow { grid-template-columns: 1fr; }
}

/* ============================================================
 * SUB-PAGE LINK GRID
 * Used on category pages (birthday, wedding, event) to route
 * users to specific sub-pages within the category early.
 * Auto-wraps any number of cards down to a single column at 640px.
 * ============================================================ */
.ep-lp-subpages {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
}
.ep-lp-subpage {
	background: #fff;
	border: 1.5px solid var(--line);
	border-radius: 14px;
	padding: 22px 22px 20px;
	text-decoration: none !important;
	color: inherit;
	transition: all 0.15s;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ep-lp-subpage:hover {
	border-color: var(--coral);
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(21,17,15,0.08);
}
.ep-lp-subpage-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(233,75,53,0.1);
	color: var(--coral);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.ep-lp-subpage h3 {
	font-family: var(--font-body);
	font-weight: 800;
	font-size: 1.02rem;
	margin: 0;
	color: var(--ink);
	line-height: 1.3;
}
.ep-lp-subpage p {
	color: var(--ink-2);
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
	flex: 1;
}
.ep-lp-subpage-arrow {
	color: var(--coral);
	font-weight: 700;
	font-size: 0.88rem;
	margin-top: 6px;
	display: flex;
	align-items: center;
	gap: 4px;
	transition: gap 0.15s;
}
.ep-lp-subpage:hover .ep-lp-subpage-arrow { gap: 10px; }

/* ============================================================
 * DELIVERY-COVERAGE / LOCATION SECTION
 * Standard section on every landing page. Two group buckets
 * (metro + regional) with an auto-fit card grid inside each.
 * ============================================================ */
.ep-lp-locations-subtitle {
	font-family: var(--font-body);
	font-weight: 800;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--coral);
	margin: 96px 0 28px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--line);
}
.ep-lp-locations-subtitle:first-of-type { margin-top: 0; }
.ep-lp-locations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
}
.ep-lp-location {
	background: var(--cream-2);
	border-radius: 12px;
	padding: 20px 22px;
	border-left: 3px solid var(--coral);
}
.ep-lp-location h4 {
	font-family: var(--font-body);
	font-weight: 800;
	font-size: 1.02rem;
	margin: 0 0 6px;
	color: var(--ink);
	letter-spacing: -0.01em;
}
.ep-lp-location p {
	color: var(--ink-2);
	font-size: 0.9rem;
	line-height: 1.55;
	margin: 0;
}
.ep-lp-locations-note {
	background: rgba(255,201,60,0.15);
	border-left: 3px solid var(--yellow);
	border-radius: 8px;
	padding: 18px 22px;
	margin-top: 60px;
	font-size: 0.92rem;
	color: var(--ink-2);
}
.ep-lp-locations-note strong { color: var(--ink); }

/* ============================================================
 * MID-PAGE SPOTLIGHT — Visual break between features and process.
 * Uses the page's hero_svg (smaller) alongside a stats/proof callout
 * with big illustrated numbers.
 * ============================================================ */
.ep-lp-spotlight {
	background: linear-gradient(135deg, var(--ink) 0%, #241a15 100%);
	color: #fff;
	padding: 80px 24px;
	position: relative;
	overflow: hidden;
}
.ep-lp-spotlight::before,
.ep-lp-spotlight::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}
.ep-lp-spotlight::before {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(233,75,53,0.18), transparent 70%);
	top: -250px;
	right: -150px;
}
.ep-lp-spotlight::after {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255,201,60,0.15), transparent 70%);
	bottom: -200px;
	left: -100px;
}
.ep-lp-spotlight-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 2;
}
.ep-lp-spotlight-visual {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 24px;
	aspect-ratio: 5/4;
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ep-lp-spotlight-visual svg {
	max-width: 100%;
	max-height: 100%;
	filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}
.ep-lp-spotlight-copy .ep-lp-eyebrow { color: var(--yellow); }
.ep-lp-spotlight-copy h2 { color: #fff; margin-bottom: 20px; }
.ep-lp-spotlight-copy > p {
	color: rgba(255,255,255,0.8);
	font-size: 1.05rem;
	margin-bottom: 28px;
	max-width: 480px;
}
.ep-lp-spotlight-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 24px;
}
.ep-lp-spotlight-stat {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 14px;
	padding: 16px 14px;
	text-align: center;
}
.ep-lp-spotlight-stat-num {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.7rem;
	color: var(--yellow);
	line-height: 1;
	margin-bottom: 6px;
	letter-spacing: -0.02em;
}
.ep-lp-spotlight-stat-label {
	font-size: 0.78rem;
	color: rgba(255,255,255,0.65);
	line-height: 1.35;
}
@media (max-width: 900px) {
	.ep-lp-spotlight { padding: 60px 24px; }
	.ep-lp-spotlight-inner { grid-template-columns: 1fr; gap: 40px; }
	.ep-lp-spotlight-visual { aspect-ratio: 4/3; padding: 20px; max-width: 400px; margin: 0 auto; }
}
@media (max-width: 500px) {
	.ep-lp-spotlight-stats { gap: 12px; }
	.ep-lp-spotlight-stat { padding: 12px 8px; }
	.ep-lp-spotlight-stat-num { font-size: 1.4rem; }
}

/* ============================================================
 * PRICING TABLE — per-occasion tiers, table format
 * ============================================================ */
.ep-lp-pricing-table {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--line);
	margin: 0 auto;
	max-width: 1050px;
	box-shadow: 0 4px 16px rgba(21,17,15,0.04);
}
.ep-lp-pricing-table-inner {
	width: 100%;
	border-collapse: collapse;
}
.ep-lp-pricing-table th {
	background: var(--ink);
	color: var(--yellow);
	padding: 18px 24px;
	text-align: left;
	font-family: var(--font-body);
	font-weight: 800;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}
.ep-lp-pricing-table th:last-child { text-align: right; }
.ep-lp-pricing-table td {
	padding: 20px 24px;
	border-bottom: 1px solid var(--line);
	font-size: 0.95rem;
	vertical-align: top;
	color: var(--ink-2);
	line-height: 1.5;
}
.ep-lp-pricing-table tr:last-child td { border-bottom: none; }
.ep-lp-pricing-table td:first-child {
	font-weight: 700;
	color: var(--ink);
	min-width: 200px;
}
.ep-lp-pricing-table td:nth-child(2) {
	min-width: 90px;
	color: var(--ink);
	white-space: nowrap;
}
.ep-lp-pricing-table td:last-child {
	text-align: right;
	color: var(--coral);
	font-weight: 700;
	font-size: 1.05rem;
	white-space: nowrap;
	font-family: var(--font-body);
}
.ep-lp-pricing-footnote {
	max-width: 900px;
	margin: 32px auto 0;
	color: var(--muted);
	font-size: 0.9rem;
	text-align: center;
	line-height: 1.55;
}

/* ============================================================
 * WHAT'S INCLUDED — category cards with sub-item lists
 * ============================================================ */
.ep-lp-included {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	max-width: 1080px;
	margin: 0 auto;
}
.ep-lp-included-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 28px;
	transition: border-color 0.15s;
}
.ep-lp-included-card:hover { border-color: var(--coral); }
.ep-lp-included-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 14px;
	border-bottom: 1px solid var(--line);
	padding-bottom: 14px;
	margin-bottom: 16px;
}
.ep-lp-included-head h3 {
	margin: 0;
	font-size: 1.1rem;
	color: var(--ink);
}
.ep-lp-included-price {
	color: var(--coral);
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.85rem;
	white-space: nowrap;
	flex-shrink: 0;
}
.ep-lp-included-card > p {
	color: var(--ink-2);
	font-size: 0.92rem;
	line-height: 1.55;
	margin: 0 0 18px;
}
.ep-lp-included-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.ep-lp-included-list li {
	padding: 9px 0;
	border-bottom: 1px dotted var(--line);
	color: var(--ink-2);
	font-size: 0.9rem;
	line-height: 1.45;
}
.ep-lp-included-list li:last-child { border-bottom: none; }

@media (max-width: 700px) {
	.ep-lp-included { grid-template-columns: 1fr; }
	.ep-lp-pricing-table th, .ep-lp-pricing-table td { padding: 14px 16px; }
	.ep-lp-pricing-table th { font-size: 0.72rem; }
	.ep-lp-pricing-table td { font-size: 0.88rem; }
	.ep-lp-pricing-table td:last-child { font-size: 0.95rem; }
}

/* ============================================================
 * SCROLL-TO-TOP BUTTON
 * Desktop only. Appears after scroll passes 500px. Semi-transparent
 * glass-effect ink circle, coral on hover, smooth-scroll on click.
 * ============================================================ */
.epph-scrolltop {
	position: fixed;
	bottom: 32px;
	right: 32px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(21, 17, 15, 0.55);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 90;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.25s ease, transform 0.25s ease, background 0.15s ease;
	pointer-events: none;
	padding: 0;
}
.epph-scrolltop.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.epph-scrolltop:hover {
	background: var(--coral);
	transform: translateY(-2px);
}
.epph-scrolltop:focus-visible {
	outline: 2px solid var(--coral);
	outline-offset: 3px;
}
/* Mobile: hidden — mobile users have their own OS-level scroll-to-top gesture */
@media (max-width: 899px) {
	.epph-scrolltop { display: none !important; }
}

/* Also-serving line used on location pages between the primary
   suburb grid and the regional section — visually distinct,
   compact one-liner about broader coverage. */
.ep-lp-also-serving {
	background: linear-gradient(135deg, rgba(233,75,53,0.05), rgba(255,201,60,0.08));
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 20px 24px;
	margin: 0 0 24px;
	color: var(--ink-2);
	font-size: 0.95rem;
	line-height: 1.6;
}
.ep-lp-also-serving strong { color: var(--ink); }
.ep-lp-also-serving a { color: var(--coral); font-weight: 700; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.15s; }
.ep-lp-also-serving a:hover { border-bottom-color: var(--coral); }


/* ═══════════════════════════════════════════════════════════════════
   Location template (v2.0.1) — region + suburb pages
   ═══════════════════════════════════════════════════════════════════ */
/* ─── Easy Peasy Party Hire — Location template additions ────────────────
 *
 * Append this to your existing assets/css/main.css. All selectors use the
 * `ep-lp-*` prefix so they don't collide with existing components.
 * Uses the theme's existing brand tokens: --coral, --ink, --yellow, etc.
 * ───────────────────────────────────────────────────────────────────── */

/* Breadcrumb (suburb pages only) */
.ep-lp-breadcrumb{
	font-size:0.85rem;
	color:var(--muted, #786F66);
	margin-bottom:16px;
}
.ep-lp-breadcrumb a{ color:var(--muted, #786F66); text-decoration:none; border-bottom:1px solid transparent; transition:border-color .15s; }
.ep-lp-breadcrumb a:hover{ border-bottom-color:var(--coral, #E94B35); }
.ep-lp-breadcrumb span{ margin:0 6px; opacity:.5; }

/* Content bands — shared for suburb detail + occasions + coverage */
.ep-lp-content-band{ padding:70px 0; background:var(--cream-2, #F4F6F9); }
.ep-lp-content-band-alt{ background:#ffffff; }

/* Two-column layout inside content bands */
.ep-lp-two-col{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:36px;
	margin:24px 0;
}
.ep-lp-two-col h3{ font-family:var(--font-body); font-weight:800; font-size:1.15rem; color:var(--ink, #15110F); margin:0 0 8px; }
.ep-lp-two-col p{ margin:0; color:var(--muted, #786F66); line-height:1.65; }
@media (max-width:820px){ .ep-lp-two-col{ grid-template-columns:1fr; gap:24px; } }

/* Callout - local knowledge box */
.ep-lp-callout{
	background:#fff8ec;
	border:1px solid #f0d9a0;
	border-left:4px solid var(--coral, #E94B35);
	border-radius:0 12px 12px 0;
	padding:18px 22px;
	margin-top:20px;
	color:var(--ink, #15110F);
	line-height:1.6;
	font-size:.95rem;
}
.ep-lp-callout strong{ color:var(--coral-dark, #C73A24); }

/* Occasion cards grid */
.ep-lp-occasions-grid{
	display:grid;
	grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
	gap:12px;
	margin-top:20px;
}
.ep-lp-occasion-card{
	display:flex;
	align-items:center;
	justify-content:center;
	min-height:74px;
	padding:14px 18px;
	background:#ffffff;
	border:1.5px solid var(--line, #E1E5EB);
	border-radius:10px;
	text-align:center;
	text-decoration:none;
	color:var(--ink, #15110F);
	font-weight:600;
	font-size:0.95rem;
	transition:transform .15s, border-color .15s, box-shadow .15s;
}
.ep-lp-occasion-card:hover{
	transform:translateY(-2px);
	border-color:var(--coral, #E94B35);
	box-shadow:0 6px 18px rgba(233, 75, 53, .08);
	color:var(--coral, #E94B35);
}
.ep-lp-occasion-card span{ display:block; }

/* Suburb cards grid — used on region pages AND on "nearby suburbs" of suburb pages */
.ep-lp-suburbs-grid{
	display:grid;
	grid-template-columns:repeat(auto-fill, minmax(240px, 1fr));
	gap:16px;
	margin-top:20px;
}
.ep-lp-suburb-card{
	display:block;
	padding:22px 24px;
	background:#ffffff;
	border:1.5px solid var(--line, #E1E5EB);
	border-radius:12px;
	text-decoration:none;
	color:var(--ink, #15110F);
	transition:transform .15s, border-color .15s, box-shadow .15s;
}
.ep-lp-suburb-card:hover{
	transform:translateY(-3px);
	border-color:var(--coral, #E94B35);
	box-shadow:0 10px 26px rgba(21, 17, 15, .08);
}
.ep-lp-suburb-name{
	font-family:var(--font-body);
	font-weight:800;
	font-size:1.15rem;
	color:var(--ink, #15110F);
	margin-bottom:4px;
	letter-spacing:-.01em;
}
.ep-lp-suburb-pc{
	font-family:ui-monospace, Menlo, monospace;
	font-size:0.78rem;
	color:var(--muted, #786F66);
	margin-bottom:10px;
}
.ep-lp-suburb-note{
	font-size:0.85rem;
	line-height:1.5;
	color:var(--muted, #786F66);
}
.ep-lp-suburb-card-parent{
	background:var(--ink, #15110F);
	color:#ffffff;
}
.ep-lp-suburb-card-parent .ep-lp-suburb-name,
.ep-lp-suburb-card-parent .ep-lp-suburb-note{
	color:#ffffff;
}
.ep-lp-suburb-card-parent .ep-lp-suburb-note{
	color:var(--yellow, #FFC93C);
	font-weight:600;
}

/* Inline note under suburb grid */
.ep-lp-note{
	margin-top:24px;
	color:var(--muted, #786F66);
	font-size:0.92rem;
}
.ep-inline-link{
	background:none;
	border:none;
	padding:0;
	color:var(--coral, #E94B35);
	font-weight:600;
	cursor:pointer;
	font:inherit;
	text-decoration:underline;
}

/* Pricing table — matches theme pattern, added here for completeness */
.ep-lp-pricing{
	background:#ffffff;
	border:1px solid var(--line, #E1E5EB);
	border-radius:12px;
	overflow:hidden;
	box-shadow:0 6px 18px rgba(21, 17, 15, .04);
	margin-top:24px;
}
.ep-lp-pricing-head,
.ep-lp-pricing-row{
	display:grid;
	grid-template-columns:1.5fr .8fr 2fr 1fr;
	gap:16px;
	padding:14px 20px;
	align-items:center;
}
.ep-lp-pricing-head{
	background:var(--ink, #15110F);
	color:var(--yellow, #FFC93C);
	font-weight:800;
	text-transform:uppercase;
	letter-spacing:.15em;
	font-size:.72rem;
}
.ep-lp-pricing-row{
	border-top:1px solid var(--line, #E1E5EB);
	font-size:.92rem;
	color:var(--muted, #786F66);
}
.ep-lp-pricing-row .setup{
	font-weight:700;
	color:var(--ink, #15110F);
}
.ep-lp-pricing-row .price{
	color:var(--coral, #E94B35);
	font-weight:700;
	text-align:right;
	white-space:nowrap;
}
@media (max-width:640px){
	.ep-lp-pricing-head,
	.ep-lp-pricing-row{
		grid-template-columns:1.4fr 1fr;
		font-size:.85rem;
	}
	.ep-lp-pricing-head > *:nth-child(3),
	.ep-lp-pricing-row > *:nth-child(3){ grid-column:1/-1; opacity:.75; font-size:.8rem; }
	.ep-lp-pricing-head > *:nth-child(2),
	.ep-lp-pricing-row > *:nth-child(2){ display:none; }
}

/* FAQ — reuse existing .ep-lp-faq-list patterns; details/summary variant */
.ep-lp-faq-list details{
	background:#ffffff;
	border:1px solid var(--line, #E1E5EB);
	border-radius:10px;
	padding:0;
	margin-bottom:10px;
	transition:border-color .15s;
}
.ep-lp-faq-list details[open]{ border-color:var(--coral, #E94B35); }
.ep-lp-faq-list details summary{
	padding:18px 22px;
	cursor:pointer;
	font-weight:700;
	color:var(--ink, #15110F);
	font-size:1rem;
	list-style:none;
	position:relative;
}
.ep-lp-faq-list details summary::-webkit-details-marker{ display:none; }
.ep-lp-faq-list details summary::after{
	content:'+';
	position:absolute;
	right:22px;
	top:50%;
	transform:translateY(-50%);
	font-size:1.4rem;
	font-weight:400;
	color:var(--coral, #E94B35);
	line-height:1;
}
.ep-lp-faq-list details[open] summary::after{ content:'−'; }
.ep-lp-faq-list details > div{
	padding:0 22px 20px;
	color:var(--muted, #786F66);
	line-height:1.65;
	font-size:.95rem;
}


/* ═══════════════════════════════════════════════════════════════════
   Social icons (v2.0.2) — Facebook + Instagram
   ═══════════════════════════════════════════════════════════════════ */

.epph-socials{
	display:flex;
	gap:10px;
	align-items:center;
	margin-top:16px;
}
.epph-socials-inline{ display:inline-flex; margin-top:0; }

.epph-social{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width:36px;
	height:36px;
	border-radius:8px;
	background:rgba(255,255,255,.08);
	color:#fff;
	text-decoration:none;
	transition:background .15s, transform .15s, color .15s;
	border:1px solid rgba(255,255,255,.12);
}
.epph-social:hover{
	background:var(--coral);
	color:#fff;
	transform:translateY(-2px);
	border-color:var(--coral);
}

/* Dark variant — used in the footer where the surrounding bg is already dark */
.epph-socials-dark .epph-social{
	background:rgba(255,255,255,.06);
	color:#fff;
}
.epph-socials-dark .epph-social:hover{
	background:var(--coral);
	color:#fff;
}

/* Light-variant fallback (in case sockets get added to a cream section) */
.epph-socials:not(.epph-socials-dark) .epph-social{
	background:var(--cream-2);
	color:var(--ink);
	border-color:var(--line);
}
.epph-socials:not(.epph-socials-dark) .epph-social:hover{
	background:var(--coral);
	color:#fff;
	border-color:var(--coral);
}

.epph-social svg{ display:block; }


/* ═══════════════════════════════════════════════════════════════════
   Suburb profile cards (v2.1.0) — schools, employers, housing, landmarks
   ═══════════════════════════════════════════════════════════════════ */

.ep-lp-profile-grid{
	display:grid;
	grid-template-columns:repeat(2, 1fr);
	gap:20px;
	margin-top:28px;
}
.ep-lp-profile-card{
	background:#fff;
	border:1px solid var(--line);
	border-radius:14px;
	padding:28px 30px 26px;
	transition:border-color .15s, transform .15s;
}
.ep-lp-profile-card:hover{
	border-color:var(--coral);
	transform:translateY(-2px);
}
.ep-lp-profile-icon{
	width:52px;
	height:52px;
	border-radius:12px;
	background:linear-gradient(135deg, rgba(233,75,53,0.15), rgba(255,201,60,0.25));
	color:var(--coral);
	display:flex;
	align-items:center;
	justify-content:center;
	margin-bottom:18px;
	border:1px solid rgba(233,75,53,0.18);
}
.ep-lp-profile-card h3{
	font-family:var(--font-body);
	font-weight:700;
	font-size:1rem;
	margin:0 0 10px;
	color:var(--ink);
	letter-spacing:.01em;
}
.ep-lp-profile-card p{
	color:var(--ink-2, #4a4642);
	font-size:.95rem;
	line-height:1.6;
	margin:0;
}
@media (max-width: 780px){
	.ep-lp-profile-grid{ grid-template-columns:1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   Suburb card hover — kill descendant underlines (v2.1.0 fix)
   ═══════════════════════════════════════════════════════════════════ */

/* The theme's global `a:hover` inherits text-decoration:underline into
   every descendant of the suburb card. Explicitly suppress it. */
.ep-lp-suburb-card,
.ep-lp-suburb-card:hover,
.ep-lp-suburb-card:hover *,
.ep-lp-suburb-card:focus,
.ep-lp-suburb-card:focus *{
	text-decoration:none !important;
}
/* Also for profile cards and occasion cards, which are also <a>s */
.ep-lp-occasion-card,
.ep-lp-occasion-card:hover,
.ep-lp-occasion-card:hover *{
	text-decoration:none !important;
}


/* ═══════════════════════════════════════════════════════════════════
   Serviced-areas grid (v2.2.0) — occasion page → active suburb links
   ═══════════════════════════════════════════════════════════════════ */

.ep-lp-serviced-grid{
	display:grid;
	grid-template-columns:repeat(2, 1fr);
	gap:20px;
	margin:32px 0 8px;
}
.ep-lp-serviced-card{
	background:#fff;
	border:1px solid var(--line);
	border-radius:14px;
	padding:24px 28px 22px;
	transition:border-color .15s;
}
.ep-lp-serviced-card:hover{ border-color:var(--coral); }

.ep-lp-serviced-region{
	display:block;
	font-family:var(--font-body);
	font-weight:700;
	font-size:1.05rem;
	color:var(--ink);
	text-decoration:none;
	margin-bottom:8px;
	letter-spacing:.01em;
}
.ep-lp-serviced-region:hover{ color:var(--coral); text-decoration:none; }

.ep-lp-serviced-suburbs{
	color:var(--muted);
	font-size:.9rem;
	line-height:1.7;
}
.ep-lp-serviced-suburbs a{
	color:var(--coral);
	text-decoration:none;
	font-weight:500;
}
.ep-lp-serviced-suburbs a:hover{ text-decoration:underline; }

.ep-lp-serviced-sep{
	color:var(--line);
	margin:0 6px;
}
.ep-lp-serviced-more{
	color:var(--muted) !important;
	font-style:italic;
}
.ep-lp-serviced-more:hover{ color:var(--coral) !important; }

@media (max-width: 780px){
	.ep-lp-serviced-grid{ grid-template-columns:1fr; }
}


/* ═══════════════════════════════════════════════════════════════════
   Contact page (v2.2.0)
   ═══════════════════════════════════════════════════════════════════ */

.ep-lp-inner-narrow{ max-width:720px; margin:0 auto; }

.ep-lp-contact-grid{
	display:grid;
	grid-template-columns:repeat(3, 1fr);
	gap:24px;
	margin-top:32px;
}
.ep-lp-contact-card{
	background:#fff;
	border:1px solid var(--line);
	border-radius:16px;
	padding:32px 30px 30px;
	transition:border-color .15s, transform .15s;
}
.ep-lp-contact-card:hover{
	border-color:var(--coral);
	transform:translateY(-2px);
}
.ep-lp-contact-card-cta{
	background:linear-gradient(135deg, rgba(233,75,53,0.08), rgba(255,201,60,0.15));
	border-color:rgba(233,75,53,0.25);
}
.ep-lp-contact-icon{
	width:52px;
	height:52px;
	border-radius:12px;
	background:linear-gradient(135deg, rgba(233,75,53,0.15), rgba(255,201,60,0.25));
	color:var(--coral);
	display:flex;
	align-items:center;
	justify-content:center;
	margin-bottom:20px;
	border:1px solid rgba(233,75,53,0.18);
}
.ep-lp-contact-card h3{
	font-family:var(--font-body);
	font-weight:700;
	font-size:1.05rem;
	margin:0 0 12px;
	color:var(--ink);
	letter-spacing:.01em;
}

.ep-lp-contact-phone{
	display:inline-block;
	font-family:var(--font-body);
	font-weight:700;
	font-size:1.15rem;
	color:var(--coral);
	text-decoration:none;
	margin-bottom:12px;
	word-break:break-word;
}
.ep-lp-contact-phone:hover{ text-decoration:underline; }

.ep-lp-contact-address{
	font-style:normal;
	font-size:.98rem;
	line-height:1.6;
	color:var(--ink);
	margin-bottom:12px;
}
.ep-lp-contact-address strong{ display:block; margin-bottom:4px; }

.ep-lp-contact-note{
	color:var(--muted);
	font-size:.9rem;
	line-height:1.6;
	margin:0;
}

/* Hours list */
.ep-lp-hours{
	list-style:none;
	padding:0;
	margin:0 0 14px;
}
.ep-lp-hours li{
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding:10px 0;
	border-bottom:1px solid var(--line);
	font-size:.95rem;
}
.ep-lp-hours li:last-child{ border-bottom:none; }
.ep-lp-hours strong{ color:var(--ink); font-weight:700; }
.ep-lp-hours span{ color:var(--ink); font-weight:500; }
.ep-lp-hours li.is-closed span{
	color:var(--muted);
	font-style:italic;
	font-weight:400;
}

@media (max-width: 980px){
	.ep-lp-contact-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 620px){
	.ep-lp-contact-grid{ grid-template-columns:1fr; }
}


/* ═══════════════════════════════════════════════════════════════════
   Occasion cards with SVG illustrations (v2.2.0)
   Used on /occasions/ and /milestone-birthday-anniversary-hire/ hubs
   ═══════════════════════════════════════════════════════════════════ */

.ep-lp-occasions-cards{
	display:grid;
	grid-template-columns:repeat(3, 1fr);
	gap:24px;
	margin-top:32px;
}

.ep-lp-occ-card{
	display:flex;
	flex-direction:column;
	background:#fff;
	border:1px solid var(--line);
	border-radius:16px;
	overflow:hidden;
	text-decoration:none;
	color:var(--ink);
	transition:border-color .18s, transform .18s, box-shadow .18s;
	position:relative;
}
.ep-lp-occ-card:hover{
	border-color:var(--coral);
	transform:translateY(-3px);
	box-shadow:0 12px 32px rgba(233,75,53,.10);
}

/* Kill descendant underlines (theme's global a:hover leaks otherwise) */
.ep-lp-occ-card,
.ep-lp-occ-card *,
.ep-lp-occ-card:hover,
.ep-lp-occ-card:hover *{
	text-decoration:none !important;
}

/* Illustration block — soft cream backdrop, SVG centered */
.ep-lp-occ-card-illust{
	background:linear-gradient(135deg, var(--cream-2, #F4F6F9) 0%, #FFF8ED 100%);
	padding:22px 18px 16px;
	height:170px;
	display:flex;
	align-items:center;
	justify-content:center;
	border-bottom:1px solid var(--line);
	position:relative;
	overflow:hidden;
}
.ep-lp-occ-card-illust::after{
	/* subtle radial glow */
	content:"";
	position:absolute;
	top:-40%; right:-30%;
	width:70%; height:180%;
	background:radial-gradient(circle at center, rgba(255,201,60,0.22) 0%, transparent 60%);
	pointer-events:none;
}
.ep-lp-occ-card-illust svg{
	max-width:100%;
	max-height:100%;
	width:auto;
	height:100%;
	display:block;
	position:relative;
	z-index:1;
	transition:transform .35s ease;
}
.ep-lp-occ-card:hover .ep-lp-occ-card-illust svg{
	transform:scale(1.06);
}

/* Body copy block */
.ep-lp-occ-card-body{
	padding:22px 24px 24px;
	display:flex;
	flex-direction:column;
	flex:1;
}
.ep-lp-occ-card-eyebrow{
	font-family:var(--font-body);
	font-size:.72rem;
	font-weight:800;
	letter-spacing:.12em;
	text-transform:uppercase;
	color:var(--coral);
	margin-bottom:8px;
}
.ep-lp-occ-card-title{
	font-family:var(--font-display, var(--font-body));
	font-size:1.15rem;
	font-weight:700;
	line-height:1.25;
	color:var(--ink);
	margin:0 0 10px;
	letter-spacing:-.005em;
}
.ep-lp-occ-card-desc{
	color:var(--muted);
	font-size:.9rem;
	line-height:1.55;
	margin:0 0 16px;
	flex:1;
}
.ep-lp-occ-card-cta{
	color:var(--coral);
	font-weight:700;
	font-size:.9rem;
	letter-spacing:.01em;
	margin-top:auto;
}
.ep-lp-occ-card:hover .ep-lp-occ-card-cta{
	color:var(--coral-dark);
}

/* Responsive */
@media (max-width: 980px){
	.ep-lp-occasions-cards{ grid-template-columns:repeat(2, 1fr); }
	.ep-lp-occ-card-illust{ height:150px; }
}
@media (max-width: 560px){
	.ep-lp-occasions-cards{ grid-template-columns:1fr; }
	.ep-lp-occ-card-illust{ height:180px; }
}


/* ═══════════════════════════════════════════════════════════════════
   Homepage delivery-zones — linked region + suburb pills (v2.2.3)
   ═══════════════════════════════════════════════════════════════════ */

/* Region heading link */
.suburb-zone h3 a{
	color:var(--ink);
	text-decoration:none;
	transition:color .15s;
}
.suburb-zone h3 a:hover{ color:var(--coral); text-decoration:none; }

/* Suburb pills as links */
.suburb-list li a{
	display:block;
	color:var(--ink);
	text-decoration:none;
	margin:-6px -12px;         /* extend hover target to the pill boundary */
	padding:6px 12px;
	border-radius:var(--radius-full);
	transition:color .15s, background .15s;
}
.suburb-list li:hover{ background:transparent; }
.suburb-list li a:hover{
	background:var(--coral);
	color:#fff;
	text-decoration:none;
}

/* "+ N more" pill visual distinction */
.suburb-list li.suburb-list-more{
	background:transparent;
	border:1px dashed var(--line);
}
.suburb-list li.suburb-list-more a{
	color:var(--muted);
	font-style:italic;
}
.suburb-list li.suburb-list-more:hover a,
.suburb-list li.suburb-list-more a:hover{
	background:var(--ink);
	color:#fff;
}
