/* ==========================================================================
   Hometown Showcase — consolidated styles
   Ported from the Astro spike's global.css + per-component scoped styles.
   Brand classNames are shared between PHP templates and Gutenberg blocks.
   ========================================================================== */

/* ----------------------------- design tokens ---------------------------- */
:root {
	--gold: #eecd88;
	--gold-light: #e9d9b8;
	--gold-pale: #f5ede2;
	--teal: #84c8cc;
	--teal-deep: #3f8286;
	--dark: #2e2b2a;
	--cream: #fffdfa;
	--white: #ffffff;
	--grad-gold: linear-gradient(90deg, #eecd88, #e9d9b8, #eecd88);
	--text-dark: #2e2b2a;
	--text-mid: #4a4644;
	--text-muted: #7a7270;
	--text-light: #a89e9a;
	--border: rgba(238, 205, 136, 0.25);
	--border-mid: rgba(238, 205, 136, 0.45);
	--border-teal: rgba(63, 130, 134, 0.4);
}

/* ------------------------------- base ----------------------------------- */
html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Jost', system-ui, sans-serif;
	background: var(--cream);
	color: var(--text-dark);
	min-height: 100vh;
	line-height: 1.5;
	margin: 0;
}
a {
	color: inherit;
}
img {
	max-width: 100%;
}

/* shared main column */
.main {
	max-width: 1100px;
	margin: 0 auto;
	padding: 2.5rem 1.5rem 5rem;
}
.main.narrow {
	max-width: 800px;
}

/* section heading (explicit-markup variant, used by PHP templates) */
.section-heading {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 2.5rem 0 1.25rem;
}
.section-heading .section-dot {
	width: 5px;
	height: 5px;
	background: var(--gold);
	transform: rotate(45deg);
	flex-shrink: 0;
}
.section-heading h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--dark);
	white-space: nowrap;
	margin: 0;
}
.section-heading .section-line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, var(--border-mid), transparent);
}
.section-subtext {
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--text-muted);
	margin: -0.85rem 0 1.25rem;
}

/* section heading (Gutenberg core/heading variant — dot + line via pseudos) */
.hbs-section-heading {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 2.5rem 0 1.25rem;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--dark);
}
.hbs-section-heading::before {
	content: '';
	width: 5px;
	height: 5px;
	background: var(--gold);
	transform: rotate(45deg);
	flex-shrink: 0;
}
.hbs-section-heading::after {
	content: '';
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, var(--border-mid), transparent);
}

/* gold pill CTA */
.btn-gold {
	display: inline-block;
	padding: 0.75rem 2.5rem;
	background: var(--grad-gold);
	color: var(--dark);
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-radius: 28px;
	text-decoration: none;
	transition: filter 0.15s, transform 0.15s;
	border: none;
	cursor: pointer;
}
.btn-gold:hover {
	filter: brightness(1.08);
	transform: translateY(-1px);
}
.btn-gold.btn-disabled {
	background: var(--border-mid, #ccc);
	color: var(--muted, #777);
	cursor: default;
	pointer-events: none;
}
.btn-gold.btn-disabled:hover {
	filter: none;
	transform: none;
}

.event-interest {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin: 1.5rem 0;
}
.event-interest-btn.is-active {
	filter: brightness(0.92);
}
.event-interest-count {
	font-size: 12px;
	color: var(--text-light);
}

.app-download-cta {
	background: var(--cream);
	border-radius: 14px;
	padding: 1.75rem 2rem;
	text-align: center;
	border: 1px solid var(--border-mid);
	margin: 2.5rem 0;
}
.app-download-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 0.35rem;
}
.app-download-sub {
	font-size: 11px;
	color: var(--text-light);
	margin: 0 0 1.25rem;
}
.app-download-badges {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	flex-wrap: wrap;
}
.app-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.65rem 1.5rem;
	border-radius: 10px;
	background: var(--white);
	border: 1px solid var(--border-mid);
	color: var(--dark);
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: default;
	user-select: none;
}

.app-download-cta.dark {
	background: var(--dark);
	border-color: rgba(245, 237, 226, 0.15);
}
.app-download-cta.dark .app-download-title {
	color: var(--gold);
}
.app-download-cta.dark .app-download-sub {
	color: rgba(245, 237, 226, 0.6);
}
.app-download-cta.dark .app-badge {
	background: rgba(245, 237, 226, 0.08);
	border-color: rgba(245, 237, 226, 0.2);
	color: rgba(245, 237, 226, 0.75);
}

/* empty states + utilities */
.empty-state {
	text-align: center;
	padding: 4rem 1rem;
}
.empty-state .empty-state-icon {
	font-size: 2rem;
	color: var(--gold);
	opacity: 0.2;
	margin-bottom: 0.75rem;
}
.empty-state p {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.2rem;
	font-style: italic;
	color: var(--text-muted);
}
.hidden {
	display: none !important;
}
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

/* ------------------------------ ticker ---------------------------------- */
.ticker {
	background: var(--dark);
	padding: 0.4rem 0;
	overflow: hidden;
	white-space: nowrap;
	border-bottom: 1px solid var(--border);
}
.ticker-inner {
	display: inline-block;
	animation: ticker 36s linear infinite;
	font-size: 10px;
	letter-spacing: 2.5px;
	color: var(--gold);
	font-weight: 500;
	text-transform: uppercase;
}
@keyframes ticker {
	0% { transform: translateX(100vw); }
	100% { transform: translateX(-100%); }
}

/* --------------------------- home login bar ------------------------------ */
.home-login-bar {
	background: var(--cream);
	text-align: right;
	padding: 0.5rem 1.25rem;
	border-bottom: 1px solid var(--border-mid);
}
.home-login-bar a {
	display: inline-block;
	background: var(--gold);
	color: var(--dark);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.3px;
	text-decoration: none;
	padding: 0.35rem 0.9rem;
	border-radius: 14px;
}
.home-login-bar a:hover { background: var(--gold-light); }

/* ------------------------------ header ---------------------------------- */
.site-header {
	background: var(--cream);
	padding: 1.5rem;
	text-align: center;
	border-bottom: 1px solid var(--border-mid);
}
.logo-link {
	text-decoration: none;
	color: inherit;
	display: inline-block;
}
.logo-img {
	display: block;
	width: 100%;
	max-width: 620px;
	height: auto;
	margin: 0 auto;
}
.header-divider {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	justify-content: center;
	margin: 1rem auto 0;
	max-width: 260px;
}
.hdl {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, #b89a4a, transparent);
}
.hdd {
	width: 5px;
	height: 5px;
	background: #b89a4a;
	transform: rotate(45deg);
	flex-shrink: 0;
}
/* Hidden site-wide (desktop and mobile) — only the logo and the divider
   line show in the header now. Rules kept in case these come back later. */
.header-sub {
	display: none;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 3.5px;
	color: rgba(46, 43, 42, 0.45);
	text-transform: uppercase;
	margin: 0;
}
.header-tagline {
	display: none;
	font-family: 'Cormorant Garamond', serif;
	font-size: 12px;
	font-style: italic;
	color: rgba(46, 43, 42, 0.5);
	letter-spacing: 1px;
	margin-top: 0.4rem;
}

/* --------------------------- founding banner ---------------------------- */
.founding-banner {
	display: block;
	background: var(--grad-gold);
	padding: 0.7rem 2rem;
	text-align: center;
	cursor: pointer;
	transition: filter 0.2s;
	text-decoration: none;
}
.founding-banner:hover {
	filter: brightness(1.06);
}
.founding-banner-text {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.5px;
	color: var(--dark);
	text-transform: uppercase;
}
.founding-banner-sub {
	display: block;
	font-size: 10px;
	color: rgba(46, 43, 42, 0.65);
	margin-top: 1px;
	letter-spacing: 0.5px;
}

/* ----------------------------- sticky nav ------------------------------- */
.sticky-nav {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	padding: 0 1.5rem;
	position: sticky;
	top: 0;
	z-index: 200;
	box-shadow: 0 2px 16px rgba(46, 43, 42, 0.08);
}
.nav-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	overflow-x: auto;
}
.tab-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	padding: 0.7rem 0.6rem;
	border-bottom: 2px solid transparent;
	background: none;
	cursor: pointer;
	transition: all 0.15s;
	flex: 1 1 0;
	text-decoration: none;
	text-align: center;
}
.tab-btn .tab-label {
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--text-light);
	white-space: nowrap;
}
.tab-btn .tab-sub {
	font-family: 'Jost', sans-serif;
	font-size: 10.5px;
	font-weight: 500;
	letter-spacing: 0.3px;
	text-transform: none;
	color: rgba(46, 43, 42, 0.72);
	white-space: normal;
	line-height: 1.3;
}
.tab-btn:hover .tab-label {
	color: var(--text-mid);
}
.tab-btn.active .tab-label {
	color: var(--dark);
	font-weight: 600;
}
.tab-btn.active {
	border-bottom-color: var(--gold);
}

/* Hamburger toggle — hidden on desktop; shown only under the mobile breakpoint below. */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 32px;
	height: 32px;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
	flex-shrink: 0;
}
.nav-toggle-bar {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--dark);
	border-radius: 1px;
	transition: transform 0.2s, opacity 0.2s;
}
.sticky-nav.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.sticky-nav.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.sticky-nav.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ------------------------------ footer ---------------------------------- */
.site-footer {
	background: var(--dark);
	padding: 2.5rem 2rem;
	text-align: center;
	border-top: 1px solid var(--border);
}
.footer-brand {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	font-style: italic;
	color: var(--gold);
	margin: 0 0 0.4rem;
}
.footer-byline {
	font-family: 'Cormorant Garamond', serif;
	font-size: 12px;
	font-style: italic;
	color: rgba(245, 237, 226, 0.45);
	margin-bottom: 0.3rem;
}
.footer-tagline {
	font-size: 10px;
	color: rgba(245, 237, 226, 0.25);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 1rem;
}
.footer-links {
	list-style: none;
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
}
.footer-link {
	font-size: 11px;
	color: rgba(245, 237, 226, 0.35);
	text-decoration: none;
	transition: color 0.15s;
}
.footer-link:hover {
	color: var(--gold);
}
.footer-copy {
	font-size: 10px;
	color: rgba(245, 237, 226, 0.15);
	margin-top: 1.25rem;
}

/* --------------------------- showcase / directory ----------------------- */
.intro {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.1rem;
	font-style: italic;
	color: var(--text-muted);
	margin-bottom: 0.5rem;
}
.hint {
	font-size: 11.5px;
	color: var(--text-light);
	margin-bottom: 2rem;
}
.star-party-signup {
	margin: 1.25rem 0;
	padding: 1rem 1.25rem;
	background: var(--cream);
	border: 1px solid var(--border-mid);
	border-radius: 10px;
}
.star-party-note {
	font-size: 13px;
	color: var(--text-muted);
	margin: 0;
}
.star-party-signup form { margin: 0; }
.search-bar-wrap {
	position: relative;
	max-width: 500px;
	margin-bottom: 1.5rem;
}
.search-bar-wrap .search-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-light);
	font-size: 15px;
	pointer-events: none;
}
.search-input {
	width: 100%;
	padding: 0.65rem 1rem 0.65rem 2.4rem;
	border: 1.5px solid var(--border-mid);
	border-radius: 28px;
	font-family: 'Jost', sans-serif;
	font-size: 13px;
	color: var(--text-dark);
	background: var(--white);
	outline: none;
	transition: border-color 0.2s;
}
.search-input:focus {
	border-color: var(--teal);
	box-shadow: 0 0 0 3px rgba(132, 200, 204, 0.15);
}
.search-input::placeholder {
	color: var(--text-light);
}
.star-industry-group {
	margin-bottom: 2.5rem;
}
.star-industry-heading {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.85rem;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--dark);
}
.star-industry-dot {
	width: 6px;
	height: 6px;
	background: var(--gold);
	transform: rotate(45deg);
	flex-shrink: 0;
}
.star-industry-line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, var(--border-mid), transparent);
}
.star-row {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.9rem 1.1rem;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.15s;
	border: 1px solid var(--border);
	margin-bottom: 6px;
	background: var(--white);
	box-shadow: 0 1px 4px rgba(46, 43, 42, 0.04);
	text-decoration: none;
	color: inherit;
}
.star-row:not(.placeholder-row):hover {
	box-shadow: 0 3px 14px rgba(46, 43, 42, 0.1);
	transform: translateX(4px);
}
.star-row.placeholder-row {
	opacity: 0.6;
}
.star-row.placeholder-row .star-name,
.star-row.placeholder-row .star-biz {
	color: var(--text-light);
	font-style: italic;
}
.star-industry-group[data-tag-color='teal'] .star-row { border-left: 4px solid #84c8cc; }
.star-industry-group[data-tag-color='green'] .star-row { border-left: 4px solid #a8c4a2; }
.star-industry-group[data-tag-color='gold'] .star-row { border-left: 4px solid #eecd88; }
.star-industry-group[data-tag-color='coral'] .star-row { border-left: 4px solid #e8a87c; }
.star-industry-group[data-tag-color='blue'] .star-row { border-left: 4px solid #9bc4cb; }
.star-industry-group[data-tag-color='purple'] .star-row { border-left: 4px solid #c4a8d4; }
.star-industry-group[data-tag-color='sand'] .star-row { border-left: 4px solid #c4b8a8; }
.star-glyph {
	font-size: 10px;
	color: var(--gold);
	flex-shrink: 0;
}
.star-name {
	font-size: 14px;
	font-weight: 600;
	color: var(--dark);
	min-width: 170px;
}
.star-biz {
	font-size: 13px;
	color: var(--text-muted);
	font-style: italic;
	font-family: 'Cormorant Garamond', serif;
}
.star-right {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-left: auto;
}
.row-badges {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.3rem;
}
.star-tag {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.8px;
	padding: 3px 12px;
	border-radius: 12px;
	flex-shrink: 0;
	text-transform: uppercase;
}
.star-arrow {
	font-size: 14px;
	color: var(--text-light);
	flex-shrink: 0;
	transition: all 0.15s;
}
.star-row:not(.placeholder-row):hover .star-arrow {
	color: var(--teal);
	transform: translateX(3px);
}

/* shared industry tag colors (showcase pills + detail tags) */
.star-tag.teal, .tag.teal { background: rgba(132, 200, 204, 0.15); color: #1a5c5e; border: 1px solid rgba(132, 200, 204, 0.4); }
.star-tag.gold, .tag.gold { background: rgba(238, 205, 136, 0.18); color: #6a4c0e; border: 1px solid rgba(238, 205, 136, 0.5); }
.star-tag.green, .tag.green { background: rgba(168, 196, 162, 0.18); color: #3a5e35; border: 1px solid rgba(168, 196, 162, 0.5); }
.star-tag.coral, .tag.coral { background: rgba(232, 168, 124, 0.15); color: #7a3e1a; border: 1px solid rgba(232, 168, 124, 0.4); }
.star-tag.purple, .tag.purple { background: rgba(196, 168, 212, 0.15); color: #5a3a6e; border: 1px solid rgba(196, 168, 212, 0.4); }
.star-tag.blue, .tag.blue { background: rgba(155, 196, 203, 0.15); color: #1e4e5e; border: 1px solid rgba(155, 196, 203, 0.4); }
.star-tag.sand, .tag.sand { background: rgba(196, 184, 168, 0.15); color: #5e4e3a; border: 1px solid rgba(196, 184, 168, 0.4); }

/* ----------------------------- business detail -------------------------- */
.back-link {
	display: inline-block;
	font-size: 11px;
	color: var(--text-light);
	text-decoration: none;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 1rem;
}
.back-link:hover {
	color: var(--teal);
}
.biz-card {
	background: var(--white);
	border: 1px solid var(--border-mid);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(46, 43, 42, 0.07);
}
.hero-photo {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 1200 / 750;
	object-fit: cover;
}
.hero-placeholder {
	aspect-ratio: 1200 / 750;
	background: linear-gradient(135deg, #2e2b2a, #1a3a3c);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Cormorant Garamond', serif;
	font-size: 4rem;
	color: rgba(238, 205, 136, 0.25);
}
.card-body {
	padding: 1.5rem 1.75rem 2rem;
}
.card-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.75rem;
}
.card-head h1 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0;
}
.owner {
	font-size: 12px;
	color: var(--text-muted);
	font-style: italic;
}
.blurb {
	font-size: 14px;
	color: var(--text-mid);
	line-height: 1.6;
	margin-bottom: 0.75rem;
}
.badges {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
	margin-bottom: 0.5rem;
}
.badge {
	display: inline-block;
	font-size: 10px;
	padding: 2px 8px;
	border-radius: 10px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
.badge.gold { background: var(--gold); color: var(--dark); }
.badge.teal { background: var(--teal); color: var(--white); }
.badge.subtle { background: var(--gold-pale); color: var(--text-mid); }
.badge.special { background: var(--dark); color: var(--gold); border: 1px solid var(--gold); }
.chips {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem;
	margin: 0.5rem 0 1rem;
	padding: 0;
}
.chip {
	display: inline-block;
	border: 1px solid var(--border-mid);
	border-radius: 18px;
	padding: 2px 10px;
	font-size: 10px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.biz-card .body {
	margin: 1rem 0 1.5rem;
	color: var(--text-mid);
	line-height: 1.7;
	font-size: 14px;
}
.biz-card .body p { margin-bottom: 1rem; }
.biz-card .body p:last-child { margin-bottom: 0; }
.links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}
.biz-link {
	padding: 0.32rem 0.85rem;
	border-radius: 14px;
	font-size: 11px;
	border: 1px solid var(--border-mid);
	color: #2e6b6e;
	background: rgba(132, 200, 204, 0.08);
	text-decoration: none;
}
.biz-link:hover {
	background: var(--teal);
	color: var(--dark);
}
.biz-link.gold {
	color: #7a5a1a;
	background: rgba(238, 205, 136, 0.12);
	border-color: rgba(238, 205, 136, 0.5);
}
.biz-link.gold:hover {
	background: var(--gold);
	color: var(--dark);
}
.tag {
	flex-shrink: 0;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.8px;
	padding: 3px 10px;
	border-radius: 10px;
	text-transform: uppercase;
}
.const-strip {
	margin-top: 1.5rem;
	background: var(--cream);
	border: 1px solid var(--border-mid);
	border-radius: 12px;
	padding: 1rem 1.25rem;
}
.const-eyebrow {
	font-size: 9px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--text-light);
	margin-bottom: 0.35rem;
}
.const-link {
	text-decoration: none;
	font-size: 13px;
	color: var(--text-mid);
	display: inline-block;
}
.const-link strong {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
	color: var(--dark);
	font-size: 1.1rem;
}
.const-link .arrow {
	margin-left: 0.4rem;
	color: var(--teal);
}

/* --------------------------- constellation index ------------------------ */
.const-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}
.const-card {
	background: var(--white);
	border: 1px solid var(--border-mid);
	border-radius: 14px;
	overflow: hidden;
	transition: transform 0.18s, box-shadow 0.18s;
	box-shadow: 0 2px 12px rgba(46, 43, 42, 0.07);
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	display: block;
}
.const-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(46, 43, 42, 0.14);
}
.const-card.accent-teal { border-top: 3px solid var(--teal); }
.const-card.accent-gold { border-top: 3px solid var(--gold); }
.const-card.accent-dark { border-top: 3px solid var(--dark); }
.const-card-image {
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.const-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #2e2b2a, #1a3a3c);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.placeholder-stars span {
	position: absolute;
	width: 4px;
	height: 4px;
	background: var(--gold);
	border-radius: 50%;
}
.placeholder-name {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: 1.4rem;
	font-weight: 600;
	color: rgba(238, 205, 136, 0.85);
	z-index: 1;
	text-align: center;
	padding: 0 1rem;
}
.const-card-body { padding: 1.25rem; }
.const-card-name {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 0.25rem;
}
.const-card-count {
	font-size: 11px;
	letter-spacing: 0.5px;
	color: var(--text-muted);
	text-transform: uppercase;
	margin-bottom: 0.85rem;
}
.const-card-members {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin-bottom: 1rem;
}
.const-member-tag {
	font-size: 10px;
	padding: 3px 9px;
	border-radius: 10px;
	background: rgba(132, 200, 204, 0.12);
	color: #1a5c5e;
	border: 1px solid rgba(132, 200, 204, 0.3);
}
.const-explore-btn {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--teal);
}
.const-card:hover .const-explore-btn { color: #1a5c5e; }
.cta-wrap { margin-top: 2rem; }

/* -------------------------- constellation detail ------------------------ */
.hero {
	text-align: center;
	margin-bottom: 2.5rem;
}
.hero .back-link {
	margin-bottom: 1.25rem;
}
.hero-image {
	max-width: 480px;
	margin: 0 auto 1.25rem;
	border: 8px solid var(--dark);
	border-radius: 14px;
	overflow: hidden;
}
.hero-image img {
	width: 100%;
	height: auto;
	display: block;
}
.hero h1 {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: 2.2rem;
	color: var(--dark);
	font-weight: 600;
	margin: 0;
}
.hero .tagline {
	font-size: 13px;
	color: var(--text-mid);
	line-height: 1.7;
	max-width: 580px;
	margin: 0.5rem auto;
}
.members .body,
article.body {
	background: var(--white);
	border: 1px solid var(--border-mid);
	border-radius: 14px;
	padding: 1.5rem 1.75rem;
	color: var(--text-mid);
	line-height: 1.7;
	margin-bottom: 2.5rem;
}
article.body p { margin-bottom: 1rem; }
article.body p:last-child { margin-bottom: 0; }
.member-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}
@media (min-width: 700px) {
	.member-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
.member-card {
	background: var(--white);
	border: 1px solid var(--border-mid);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(46, 43, 42, 0.07);
	transition: transform 0.18s, box-shadow 0.18s;
	text-decoration: none;
	color: inherit;
	display: block;
}
.member-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 28px rgba(46, 43, 42, 0.13);
}
.member-photo {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 1200 / 750;
	object-fit: cover;
}
.photo-placeholder {
	width: 100%;
	aspect-ratio: 1200 / 750;
	background: linear-gradient(135deg, #2e2b2a, #1a3a3c);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Cormorant Garamond', serif;
	font-size: 3rem;
	font-weight: 600;
	color: rgba(238, 205, 136, 0.25);
}
.member-body { padding: 1rem; }
.member-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}
.member-name {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--dark);
}
.member-biz {
	font-size: 11px;
	color: var(--text-muted);
	font-style: italic;
	margin-bottom: 0.1rem;
}
.member-blurb {
	font-size: 11.5px;
	color: var(--text-muted);
	line-height: 1.55;
}
.member-links {
	margin-top: 0.6rem;
}
.member-photo.is-zoomable,
.ss-portfolio-img.is-zoomable {
	cursor: zoom-in;
}
.photo-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(46, 43, 42, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	z-index: 1000;
	opacity: 0;
	transition: opacity 0.2s ease;
	cursor: zoom-out;
}
.photo-lightbox.is-open {
	opacity: 1;
}
.photo-lightbox img {
	max-width: 90vw;
	max-height: 90vh;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	transform: scale(0.92);
	transition: transform 0.2s ease;
}
.photo-lightbox.is-open img {
	transform: scale(1);
}

/* ----------------------------- shooting stars --------------------------- */
.carousel-wrap {
	max-width: 1100px;
	margin: 0 auto;
	padding: 1.5rem 1.5rem 0;
}
.ss-spotlight {
	position: relative;
	margin-bottom: 2.5rem;
	overflow: clip;
	width: 100%;
	max-width: 100%;
}
.ss-spotlight-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.25rem;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.ss-spotlight-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--dark);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.ss-spotlight-title .star-flash {
	color: var(--gold);
	animation: flash 2s ease-in-out infinite;
}
@keyframes flash {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(0.85); }
}
.ss-swiper {
	border-radius: 14px;
	overflow: hidden;
}
.ss-swiper .swiper-pagination-bullet { background: var(--border-mid); opacity: 1; width: 7px; height: 7px; }
.ss-swiper .swiper-pagination-bullet-active { background: var(--gold); transform: scale(1.3); }
.ss-swiper .swiper-pagination { bottom: 12px; }
.ss-card {
	background: var(--dark);
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--border-mid);
	position: relative;
}
.ss-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
	animation: shimmer 2.5s linear infinite;
	background-size: 200% 100%;
}
@keyframes shimmer {
	0% { background-position: -200% 0; }
	100% { background-position: 200% 0; }
}
.ss-card-img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}
.ss-card-body {
	padding: 1.25rem 1.25rem 1rem;
	color: var(--cream);
}
.ss-card-body h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	color: var(--gold);
	font-weight: 600;
	margin-bottom: 0.25rem;
}
.ss-biz {
	font-size: 11px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(245, 237, 226, 0.45);
	margin-bottom: 1rem;
}
.ss-card-links {
	display: flex;
	gap: 0.45rem;
	flex-wrap: wrap;
}
.ss-link {
	padding: 0.32rem 0.85rem;
	border-radius: 14px;
	font-size: 10.5px;
	font-weight: 500;
	letter-spacing: 0.3px;
	border: 1px solid rgba(238, 205, 136, 0.3);
	background: rgba(132, 200, 204, 0.08);
	color: rgba(245, 237, 226, 0.85);
	text-decoration: none;
}
.ss-link:hover { background: rgba(132, 200, 204, 0.2); }
.ss-link.gold { background: rgba(238, 205, 136, 0.18); color: var(--gold); }
.ss-link.gold:hover { background: var(--gold); color: var(--dark); }

/* Portfolio grid — everything past the carousel's cap. Deliberately smaller
   and quieter than .ss-card (no shimmer bar, portrait crop) so the carousel
   stays the thing that draws the eye. */
.ss-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
	gap: 1rem;
	margin-bottom: 2.5rem;
}
.ss-portfolio-card {
	background: var(--dark);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--border-mid);
}
.ss-portfolio-img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}
.ss-portfolio-body {
	padding: 0.85rem 0.9rem 1rem;
	color: var(--cream);
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}
.ss-empty {
	background: var(--dark);
	border-radius: 14px;
	padding: 3rem 2rem;
	text-align: center;
	color: rgba(245, 237, 226, 0.55);
	border: 1px solid var(--border-mid);
}
.ss-empty span {
	font-size: 2rem;
	color: var(--gold);
	opacity: 0.4;
	display: block;
	margin-bottom: 0.5rem;
	animation: flash 2s ease-in-out infinite;
}
.ss-empty p {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.2rem;
	font-style: italic;
	margin-bottom: 1.25rem;
}
.promo-options {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1rem;
	margin-bottom: 2rem;
}
.promo-option-card {
	background: var(--white);
	border: 1px solid var(--border-mid);
	border-radius: 12px;
	padding: 1.5rem;
	text-align: center;
	box-shadow: 0 2px 10px rgba(46, 43, 42, 0.06);
	position: relative;
	overflow: hidden;
	transition: border-color 0.15s, transform 0.15s;
}
.promo-option-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--grad-gold);
}
.promo-option-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.promo-option-card.featured-tier { border: 1.5px solid var(--gold); }
.promo-option-card.gold-soft { border-color: rgba(238, 205, 136, 0.5); background: rgba(238, 205, 136, 0.03); }
.promo-option-card.teal-soft { border-color: rgba(132, 200, 204, 0.5); background: rgba(132, 200, 204, 0.03); }
.promo-icon { font-size: 1.6rem; margin-bottom: 0.75rem; color: var(--gold); }
.promo-icon.teal-icon { color: var(--teal); }
.promo-option-card h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 0.4rem;
}
.promo-option-card p {
	font-size: 12px;
	color: var(--text-muted);
	line-height: 1.55;
	margin-bottom: 1rem;
}
.promo-popular {
	display: inline-block;
	padding: 2px 10px;
	background: rgba(238, 205, 136, 0.12);
	border: 1px solid var(--border-mid);
	border-radius: 10px;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #7a5a1a;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}
.promo-price { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; margin: 0.5rem 0; }
.promo-price.gold-price { color: #7a5a1a; }
.promo-price.teal-price { color: #1a5c5e; }
.promo-inquire {
	display: inline-block;
	margin-top: 0.5rem;
	padding: 0.28rem 0.75rem;
	border-radius: 14px;
	font-size: 10.5px;
	font-weight: 500;
	letter-spacing: 0.3px;
	border: 1px solid var(--border-mid);
	color: #2e6b6e;
	background: rgba(132, 200, 204, 0.08);
	text-decoration: none;
}
.promo-inquire.gold { color: #7a5a1a; background: rgba(238, 205, 136, 0.1); }
.brand-lead { font-size: 12.5px; color: var(--text-muted); margin-bottom: 1.25rem; }
.closing {
	background: rgba(46, 43, 42, 0.04);
	border: 1px solid var(--border-mid);
	border-radius: 12px;
	padding: 1.5rem;
	text-align: center;
	margin-top: 1rem;
}
.closing-quote {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.15rem;
	font-style: italic;
	color: var(--dark);
	margin-bottom: 0.5rem;
}
.closing-note { font-size: 11px; color: var(--text-light); margin-bottom: 1rem; }

/* ======================== marketing block patterns ====================== */

/* hero */
.method-hero {
	background: var(--cream);
	border: 1px solid var(--border-mid);
	border-radius: 16px;
	padding: 2rem 2rem 1.75rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin-bottom: 2.5rem;
}
.method-hero::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--grad-gold);
}
.method-eyebrow {
	font-size: 10px;
	letter-spacing: 3px;
	color: var(--teal);
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 0.75rem;
}
.method-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 600;
	color: var(--dark);
	line-height: 1.1;
	margin-bottom: 0.5rem;
}
.method-sub {
	font-size: 13px;
	color: var(--text-muted);
	max-width: 580px;
	margin: 0.75rem auto 0;
	line-height: 1.7;
}
.home-hero.has-image {
	background: none;
	padding: 0;
	overflow: hidden;
}
.home-hero-img-link {
	display: block;
}
.home-hero-img {
	display: block;
	width: 100%;
	height: auto;
}
.method-byline {
	font-family: 'Cormorant Garamond', serif;
	font-size: 13px;
	font-style: italic;
	color: var(--text-light);
	margin-top: 0.5rem;
	letter-spacing: 0.5px;
}

/* method cards (built on core/columns) */
.method-grid { margin-bottom: 2.5rem; gap: 1.25rem; align-items: stretch; }
.method-card {
	background: var(--white);
	border: 1px solid var(--border-mid);
	border-radius: 14px;
	padding: 1.75rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(46, 43, 42, 0.06);
	height: 100%;
}
.method-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
}
.method-card.gold-top::before { background: var(--grad-gold); }
.method-card.teal-top::before { background: linear-gradient(90deg, var(--teal), #b0e0e3); }
.method-card.teal-deep-top::before { background: linear-gradient(90deg, var(--teal-deep), var(--teal)); }
.method-card-icon { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--gold); }
.method-card h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 0.5rem;
}
.method-card p {
	font-size: 12.5px;
	color: var(--text-muted);
	line-height: 1.6;
}

/* method steps (numbered, connected sequence — Aurora Method) */
.method-steps {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	margin: 0 0 2.5rem;
}
.method-steps::before {
	content: '';
	position: absolute;
	top: 26px;
	left: 52px;
	right: 52px;
	height: 1px;
	background: linear-gradient(90deg, var(--gold), var(--teal), var(--teal-deep));
	opacity: 0.55;
}
.method-step {
	position: relative;
	flex: 1;
	text-align: center;
	padding: 0 0.75rem;
}
.method-step-num {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--cream);
	border: 1.5px solid var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0.75rem;
	position: relative;
	z-index: 1;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--dark);
}
.method-step.teal .method-step-num { border-color: var(--teal); }
.method-step.teal-deep .method-step-num { border-color: var(--teal-deep); }
.method-step-tier {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #7a5a1a;
	margin: 0 0 0.6rem;
}
.method-step.teal .method-step-tier { color: var(--teal); }
.method-step.teal-deep .method-step-tier { color: var(--teal-deep); }
.method-step h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 0.5rem;
}
.method-step-body {
	font-size: 12.5px;
	color: var(--text-muted);
	line-height: 1.6;
	margin: 0;
}
@media (max-width: 640px) {
	.method-steps { flex-direction: column; gap: 2rem; }
	.method-steps::before { display: none; }
	.method-step { text-align: left; padding: 0; display: flex; gap: 1rem; align-items: flex-start; }
	.method-step-num { margin: 0; flex-shrink: 0; }
}

/* comparison table */
.comparison { margin-bottom: 2.5rem; }
.comparison .lead { font-size: 12.5px; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.6; }
.compare-wrap {
	background: var(--white);
	border: 1px solid var(--border-mid);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(46, 43, 42, 0.06);
}
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
	background: var(--dark);
	color: var(--gold);
	font-family: 'Jost', sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 0.85rem 1rem;
	text-align: left;
}
.compare-table th.lc-th { background: #1a5c52; color: var(--gold); }
.compare-table td {
	padding: 0.75rem 1rem;
	font-size: 12.5px;
	color: var(--text-mid);
	border-bottom: 1px solid var(--border);
	vertical-align: top;
	line-height: 1.5;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: rgba(248, 246, 242, 0.6); }
.compare-table .lc-row td { background: rgba(132, 200, 204, 0.08); font-weight: 500; color: var(--dark); }
.compare-table .lc-row td:last-child { color: #1a5c52; font-weight: 700; }
.compare-table .check { color: #1a7a6e; font-weight: 600; }
.compare-table .cross { color: #c0392b; }
.compare-table td.highlight { color: #1a5c52; font-weight: 600; }
.footnote { font-size: 10px; color: var(--text-muted); margin-top: 0.75rem; line-height: 1.6; font-style: italic; }
.compare-mobile { display: none; }
.ad-card-m {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 1rem;
	margin-bottom: 0.75rem;
	box-shadow: 0 1px 6px rgba(46, 43, 42, 0.06);
}
.ad-card-m.lc-m { border: 2px solid var(--teal); background: rgba(132, 200, 204, 0.04); }
.lc-badge-m {
	display: inline-block;
	font-size: 11px;
	padding: 2px 10px;
	border-radius: 12px;
	background: rgba(132, 200, 204, 0.15);
	color: #1a5c5e;
	border: 1px solid rgba(132, 200, 204, 0.4);
	margin-bottom: 6px;
	font-weight: 600;
}
.ad-name-m { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.ad-price-m { font-size: 17px; font-weight: 500; color: var(--dark); margin-bottom: 8px; }
.ad-tags-m { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 8px; }
.tag-m { font-size: 10px; padding: 2px 8px; border-radius: 10px; font-weight: 500; }
.tag-m.some { background: rgba(238, 205, 136, 0.15); color: #7a5a1a; border: 1px solid rgba(238, 205, 136, 0.4); }
.tag-m.no { background: rgba(200, 80, 80, 0.08); color: #8b2020; border: 1px solid rgba(200, 80, 80, 0.2); }
.tag-m.star { background: rgba(132, 200, 204, 0.15); color: #0a4a3a; border: 1px solid rgba(132, 200, 204, 0.4); }
.ad-desc-m { font-size: 12px; color: var(--text-muted); line-height: 1.55; }

/* pricing (built on core/columns) */
.pricing-sub { font-size: 12.5px; color: var(--text-muted); margin-bottom: 1.25rem; }
.pricing-grid { margin-bottom: 2.5rem; gap: 1rem; align-items: stretch; }
.price-card {
	background: var(--white);
	border: 2px solid var(--teal-deep);
	border-radius: 14px;
	padding: 1.5rem;
	text-align: center;
	box-shadow: 0 2px 10px rgba(46, 43, 42, 0.06);
	position: relative;
	overflow: hidden;
	transition: transform 0.15s;
	height: 100%;
}
.price-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal-deep), var(--teal));
}
.price-card:hover { transform: translateY(-2px); }
.price-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 2px 10px;
	background: rgba(238, 205, 136, 0.15);
	border: 1px solid var(--border-mid);
	border-radius: 10px;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #7a5a1a;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}
.price-card h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 0.25rem;
}
.price-amount {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.8rem;
	font-weight: 600;
	color: var(--dark);
	line-height: 1;
	margin: 0.5rem 0 0.85rem;
}
.price-options {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.6rem;
	margin: 0.5rem 0 0.85rem;
}
.price-option {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.7rem;
	font-weight: 600;
	color: var(--dark);
	line-height: 1;
}
.price-divider-vert {
	font-size: 1.2rem;
	font-weight: 300;
	color: var(--border-teal);
}
.price-terms-split {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0.75rem;
	margin: 0 0 0.5rem;
}
.price-term-col {
	flex: 1;
	max-width: 140px;
	text-align: center;
}
.price-term-label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #7a5a1a;
	margin-bottom: 2px;
}
.price-term-text {
	font-size: 11px;
	color: var(--text-muted);
	line-height: 1.4;
}
.price-terms {
	font-size: 11px;
	color: var(--text-muted);
	margin: -0.5rem 0 0.5rem;
}
.price-divider {
	border-bottom: 1px solid var(--border-teal);
	margin: 0 0 1rem;
}
.price-card ul {
	list-style: none;
	text-align: left;
	padding: 0;
	margin-bottom: 1rem;
}
.price-card ul li {
	font-size: 11.5px;
	color: var(--text-muted);
	padding: 0.22rem 0 0.22rem 1.1rem;
	position: relative;
	line-height: 1.4;
}
.price-card ul li::before {
	content: '✦';
	position: absolute;
	left: 0;
	font-size: 7px;
	color: var(--teal-deep);
	top: 5px;
}

/* quote CTA */
.dark-quote {
	background: var(--dark);
	border-radius: 14px;
	padding: 1.75rem 2rem;
	text-align: center;
	border: 1px solid var(--border-mid);
	position: relative;
	overflow: hidden;
	margin-bottom: 2.5rem;
}
.dark-quote::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--grad-gold);
}
.dark-quote .quote {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	font-style: italic;
	color: var(--white);
	margin-bottom: 0.75rem;
}
.dark-quote .attr {
	font-size: 11px;
	color: rgba(245, 237, 226, 0.4);
	margin-bottom: 1.25rem;
}

/* CTA banner */
.cta-banner {
	border-radius: 14px;
	padding: 2rem;
	text-align: center;
	margin: 1rem 0 2.5rem;
	position: relative;
	overflow: hidden;
	border: 1.5px solid var(--teal-deep);
}
.cta-banner::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal-deep), var(--teal));
}
.cta-banner.gold { background: var(--white); }
.cta-banner.dark { background: var(--dark); }
.cta-banner .cta-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 0.4rem;
	color: var(--dark);
}
.cta-banner.dark .cta-text { color: var(--gold); }
.cta-banner .cta-sub { font-size: 11px; color: var(--text-light); margin-bottom: 1.25rem; }
.cta-banner.dark .cta-sub { color: rgba(245, 237, 226, 0.5); }
.cta-banner .cta-buttons {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0;
}

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 10px;
	overflow: hidden;
}
.faq-q {
	padding: 1rem 1.25rem;
	font-size: 13px;
	font-weight: 500;
	color: var(--dark);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.15s;
	list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { background: rgba(132, 200, 204, 0.05); }
.faq-q::after {
	content: '+';
	font-size: 18px;
	color: var(--gold);
	font-weight: 300;
	flex-shrink: 0;
	transition: transform 0.2s;
	margin-left: 1rem;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
	padding: 0.85rem 1.25rem 1rem;
	font-size: 12.5px;
	color: var(--text-muted);
	line-height: 1.65;
	border-top: 1px solid var(--border);
}
.faq-a p { margin-bottom: 0.5rem; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a a { color: #2e6b6e; }

/* generic prose (rich-text + fallback) */
.prose { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.prose p { margin-bottom: 1rem; }
.prose p:last-child { margin-bottom: 0; }
.prose a { color: #2e6b6e; }
.page-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2rem;
	color: var(--dark);
	margin-bottom: 1rem;
}

/* --------------------- Events Manager: compact list card ----------------
   Selectors carry !important throughout — the plugin's own stylesheet
   (events-manager.css) uses long, highly-specific selector chains (e.g.
   `.em.em-list .em-item .em-item-info h3.em-item-title`) that outrank
   anything we can write here on specificity alone. */
.em-events-list .em-item {
	display: flex !important;
	align-items: flex-start !important;
	gap: 0.75rem !important;
	padding: 0.85rem !important;
	margin-bottom: 0.75rem !important;
	background: var(--white) !important;
	border: 1px solid var(--border) !important;
	border-radius: 6px !important;
}
.em-events-list .em-item-image {
	flex: 0 0 44px !important;
	width: 44px !important;
	min-width: 44px !important;
	height: 44px !important;
}
.em-events-list .em-item-image-placeholder {
	width: 44px !important;
	max-width: 44px !important;
	height: 44px !important;
	min-width: 44px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: none !important;
	aspect-ratio: unset !important;
}
.em-events-list .em-item-image-placeholder .date {
	text-align: center !important;
}
.em-events-list .em-item-image-placeholder .date span.day {
	display: block !important;
	font-size: 1.1rem !important;
	font-weight: 600 !important;
	line-height: 1.1 !important;
	color: var(--text-dark) !important;
}
.em-events-list .em-item-image-placeholder .date span.month {
	font-size: 9px !important;
	text-transform: uppercase !important;
	letter-spacing: 0.05em !important;
	color: var(--text-muted) !important;
}
.em-events-list .em-item-info {
	flex: 1 1 auto !important;
	min-width: 0 !important;
	padding: 0 0 0 0.6rem !important;
	border-left: 3px solid var(--default-border, var(--gold)) !important;
}
.em-events-list .em-item-info h3.em-item-title {
	margin: 0 0 0.25rem !important;
	font-size: 0.95rem !important;
	line-height: 1.3 !important;
}
.em-events-list .em-item-info h3.em-item-title a {
	color: var(--text-dark) !important;
	text-decoration: none !important;
}
.em-events-list .em-item-info h3.em-item-title a:hover {
	color: var(--gold) !important;
}
.em-events-list .em-event-meta {
	margin-bottom: 0.35rem !important;
}
.em-events-list .em-item-meta .em-item-meta-line {
	display: flex !important;
	align-items: center !important;
	gap: 0.3rem !important;
	margin-bottom: 0.2rem !important;
	font-size: 10.5px !important;
	color: var(--text-muted) !important;
}
.em-events-list .em-item-info .em-item-desc {
	margin-bottom: 0.4rem !important;
	font-size: 11.5px !important;
	color: var(--text-mid) !important;
}
.em-events-list .em-item-actions .em-item-read-more.button {
	display: inline-block !important;
	padding: 0.35rem 0.7rem !important;
	font-size: 10px !important;
	color: var(--text-dark) !important;
	background: transparent !important;
	border: 1px solid var(--border-mid) !important;
	border-radius: 4px !important;
	text-decoration: none !important;
}
.em-events-list .em-item-actions .em-item-read-more.button:hover {
	background: var(--gold-pale) !important;
}

/* --------------------------- header CTA + subtle tab --------------------- */
.sticky-nav {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.tab-btn-subtle {
	opacity: 0.55;
}
.tab-btn-subtle .tab-label {
	font-size: 10px;
}
/* --------------------------- home hero CTAs -------------------------------- */
.hero-secondary-cta {
	display: inline-block;
	margin-top: 0.5rem;
	font-size: 11.5px;
	color: var(--text-muted);
	text-decoration: none;
	border-bottom: 1px solid var(--border-mid);
	padding-bottom: 1px;
}
.hero-secondary-cta:hover {
	color: var(--dark);
}

/* --------------------------- North Star signup form ----------------------- */
.north-star-form-wrap {
	width: 100%;
}
.north-star-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.45rem;
}
.ns-fields {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}
.ns-field {
	flex: 1;
	min-width: 180px;
}
.ns-email-input,
.ns-phone-input {
	width: 100%;
	box-sizing: border-box;
	padding: 0.55rem 1rem;
	border: 1.5px solid var(--border-mid);
	border-radius: 28px;
	font-family: 'Jost', sans-serif;
	font-size: 13px;
	color: var(--text-dark);
	background: var(--white);
	outline: none;
	transition: border-color 0.2s;
}
.ns-email-input:focus,
.ns-phone-input:focus {
	border-color: var(--teal);
	box-shadow: 0 0 0 3px rgba(132, 200, 204, 0.15);
}
.ns-consent {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	max-width: 380px;
	text-align: left;
	font-size: 10.5px;
	color: var(--text-light);
	cursor: pointer;
}
.north-star-section .ns-consent {
	color: rgba(245, 237, 226, 0.55);
}
.ns-consent input[type="checkbox"] {
	margin-top: 2px;
	flex-shrink: 0;
}
.ns-submit {
	flex-shrink: 0;
	padding: 0.6rem 1.5rem;
	font-size: 10.5px;
}
.ns-trust {
	font-size: 10px;
	color: var(--text-light);
	margin-top: 0.5rem;
}
.ns-message {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.05rem;
	font-style: italic;
	padding: 0.6rem 0;
}
.ns-message.ns-success { color: #3f7d5c; }
.ns-message.ns-error { color: #b5533f; }
.hbs-hp {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

/* North Star section (dark, like the Shooting Stars treatment) */
.north-star-section {
	background: var(--dark);
	border-radius: 16px;
	padding: 1.5rem 1.75rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin-bottom: 2rem;
}
.north-star-section::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--grad-gold);
}
.north-star-cols {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4.5rem;
	text-align: left;
}
.north-star-col {
	flex: 0 1 auto;
	min-width: 0;
}
.north-star-col-right {
	text-align: center;
}
@media (max-width: 640px) {
	.north-star-cols {
		flex-direction: column;
		text-align: center;
		gap: 1.25rem;
	}
}
.north-star-kicker {
	font-size: 10px;
	letter-spacing: 3px;
	color: var(--teal);
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 1rem;
	text-align: center;
}
.north-star-section h1,
.north-star-section h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1.25rem, 2.8vw, 1.6rem);
	font-weight: 600;
	color: var(--gold);
	margin-bottom: 0.4rem;
}
.north-star-badge {
	margin-bottom: 0.65rem;
}
.north-star-sub {
	font-size: 11.5px;
	color: rgba(245, 237, 226, 0.65);
	max-width: 480px;
	margin: 0 auto 0.65rem;
	line-height: 1.6;
}
.north-star-section .wp-block-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
	padding: 0;
	margin: 0;
}
@media (max-width: 640px) {
	.north-star-section .wp-block-list {
		align-items: center;
	}
}
.north-star-section .wp-block-list li {
	font-size: 14px;
	color: rgba(245, 237, 226, 0.85);
}
.north-star-section .wp-block-list li::before {
	content: '✦ ';
	color: var(--gold);
}
.north-star-cadence {
	font-family: 'Cormorant Garamond', serif;
	font-size: 11px;
	font-style: italic;
	color: rgba(245, 237, 226, 0.45);
	margin-bottom: 0.85rem;
}
.north-star-section .north-star-form-wrap {
	max-width: 420px;
	margin: 0 auto;
}
.north-star-section .ns-trust {
	color: rgba(245, 237, 226, 0.35);
}
.north-star-archive-link {
	display: inline-block;
	margin-top: 0.85rem;
	font-size: 11.5px;
	color: rgba(245, 237, 226, 0.55);
	text-decoration: none;
	border-bottom: 1px solid rgba(245, 237, 226, 0.25);
	padding-bottom: 1px;
}
.north-star-archive-link:hover {
	color: var(--gold);
}

/* --------------------------- events banner (Stargazing) -------------------- */
.events-banner {
	display: block;
	background: var(--grad-gold);
	border-radius: 14px;
	padding: 1.5rem 2rem;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: filter 0.2s, transform 0.2s;
	margin-bottom: 2rem;
}
a.events-banner:hover {
	filter: brightness(1.06);
	transform: translateY(-1px);
}
.events-banner-text {
	display: block;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dark);
}
.events-banner-sub {
	display: block;
	font-size: 11px;
	color: rgba(46, 43, 42, 0.65);
	margin-top: 0.3rem;
	letter-spacing: 0.5px;
}
.events-banner.has-image {
	background: none;
	padding: 0;
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(46, 43, 42, 0.08);
}
.events-banner-img {
	display: block;
	width: 100%;
	height: auto;
}
.events-banner.has-image.has-auto {
	position: relative;
}
.events-banner.has-auto .events-banner-img {
	max-height: 360px;
	object-fit: cover;
}
.events-banner-auto-overlay {
	position: absolute;
	inset: auto 0 0 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2.5rem 1.5rem 1.5rem;
	background: linear-gradient(to top, rgba(46, 43, 42, 0.88), rgba(46, 43, 42, 0));
}
.events-banner-auto-eyebrow {
	font-size: 10px;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--gold);
	margin-bottom: 0.4rem;
}
.events-banner-auto-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--white);
}
.events-banner-auto-when {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 0.3rem;
}
.events-banner.has-auto:not(.has-image) {
	background: linear-gradient(90deg, var(--teal-deep), var(--teal));
}
.events-banner.has-auto:not(.has-image) .events-banner-auto-eyebrow {
	color: var(--gold);
}
.events-banner.has-auto:not(.has-image) .events-banner-text {
	color: var(--white);
}
.events-banner.has-auto:not(.has-image) .events-banner-sub {
	color: rgba(255, 255, 255, 0.85);
}

/* --------------------------- events preview teaser ------------------------ */
.events-preview { margin-bottom: 2.5rem; }
.events-preview-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1rem;
	margin-bottom: 1.25rem;
}
.event-preview-card {
	display: flex;
	gap: 0.9rem;
	background: var(--white);
	border: 1px solid var(--border-mid);
	border-radius: 12px;
	padding: 1rem;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 2px 10px rgba(46, 43, 42, 0.05);
	transition: box-shadow 0.15s, transform 0.15s;
}
.event-preview-card:hover {
	box-shadow: 0 4px 16px rgba(46, 43, 42, 0.1);
	transform: translateY(-2px);
}
.event-preview-date {
	flex-shrink: 0;
	width: 46px;
	text-align: center;
}
.event-preview-date .epd-month {
	display: block;
	font-size: 9.5px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--teal);
	font-weight: 600;
}
.event-preview-date .epd-day {
	display: block;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--dark);
	line-height: 1.1;
}
.event-preview-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 0.2rem;
}
.event-preview-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 10.5px;
	color: var(--text-muted);
	margin-bottom: 0.3rem;
}
.event-preview-tag {
	padding: 1px 8px;
	border-radius: 10px;
	background: var(--gold-pale);
	color: var(--dark);
	font-size: 9.5px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.event-preview-desc {
	font-size: 11.5px;
	color: var(--text-mid);
	line-height: 1.5;
}
.events-preview-cta,
.category-grid-cta,
.deals-strip-cta {
	display: inline-block;
	font-size: 11.5px;
	color: var(--text-mid);
	text-decoration: none;
	border-bottom: 1px solid var(--border-mid);
	padding-bottom: 1px;
}
.events-preview-cta:hover,
.category-grid-cta:hover,
.deals-strip-cta:hover {
	color: var(--dark);
}

/* --------------------------- homepage spotlight ---------------------------- */
.homepage-spotlight { margin-bottom: 2.5rem; }
.spotlight-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.25rem;
}
.spotlight-swiper {
	padding-bottom: 28px;
	/* Grid items size to their content by default, and a Swiper instance's
	   inner wrapper is exactly as wide as every slide combined (it slides
	   via transform, not by actually resizing) — min-width: 0 alone wasn't
	   enough to stop that from pushing this grid item wider than its track,
	   so pin it to the track's own width explicitly. */
	width: 100%;
	min-width: 0;
}
.spotlight-swiper .swiper-pagination-bullet { background: var(--border-mid); opacity: 1; width: 7px; height: 7px; }
.spotlight-swiper .swiper-pagination-bullet-active { background: var(--gold); transform: scale(1.3); }
.spotlight-swiper .swiper-pagination { bottom: 0; }
.spotlight-card {
	display: block;
	background: var(--white);
	border: 1px solid var(--border-mid);
	border-radius: 14px;
	padding: 1.5rem;
	text-decoration: none;
	color: inherit;
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(46, 43, 42, 0.06);
}
.spotlight-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--grad-gold);
}
.spotlight-kicker {
	display: block;
	font-size: 10px;
	letter-spacing: 2.5px;
	color: var(--teal);
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 0.75rem;
}
.spotlight-photo {
	display: block;
	width: 100%;
	height: auto;
	max-height: 340px;
	object-fit: contain;
	border-radius: 10px;
	margin-bottom: 0.85rem;
	background: var(--gold-pale);
}
.spotlight-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 0.35rem;
}
.spotlight-tag {
	display: inline-block;
	font-size: 9.5px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 0.5rem;
}
.spotlight-note {
	font-size: 12.5px;
	color: var(--text-mid);
	line-height: 1.6;
	margin-bottom: 0.85rem;
}
.spotlight-member-thumbs {
	display: flex;
	gap: 0.4rem;
	margin-bottom: 0.85rem;
	flex-wrap: wrap;
}
.spotlight-thumb {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid var(--border-mid);
}
.spotlight-thumb-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gold-pale);
	color: var(--dark);
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
	font-size: 13px;
}
.spotlight-link {
	font-size: 11px;
	color: var(--text-mid);
	font-weight: 500;
}
.spotlight-card:hover .spotlight-link {
	color: var(--dark);
}

.home-faq-links {
	text-align: center;
	font-size: 1rem;
	color: var(--text-mid);
	margin: 2.5rem 0;
	padding: 1.75rem 2rem;
	border-radius: 14px;
	border: 1px solid var(--border-mid);
	background: var(--cream);
}
.home-faq-links a {
	color: var(--dark);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.home-faq-links a:hover {
	color: var(--gold);
}

/* --------------------------- category browse grid -------------------------- */
.category-grid-section { margin-bottom: 2.5rem; }
.category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 0.85rem;
	margin-bottom: 1.25rem;
}
.category-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.3rem;
	background: var(--white);
	border: 1px solid var(--border-mid);
	border-radius: 12px;
	padding: 1.25rem 0.75rem;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.15s, transform 0.15s;
}
.category-tile:hover {
	box-shadow: 0 4px 14px rgba(46, 43, 42, 0.08);
	transform: translateY(-2px);
}
.category-tile-icon {
	font-size: 1.6rem;
	margin-bottom: 0.2rem;
}
.category-tile-name {
	font-size: 12px;
	font-weight: 500;
	color: var(--dark);
}
.category-tile-count {
	font-size: 10px;
	color: var(--text-light);
}

/* --------------------------- deals strip ------------------------------------ */
.deals-strip-section { margin-bottom: 2.5rem; }
.deals-strip {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1rem;
	margin-bottom: 1.25rem;
}
.deal-card {
	display: block;
	background: var(--dark);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--border-mid);
	text-decoration: none;
}
.deal-card-img {
	display: block;
	width: 100%;
	height: 110px;
	object-fit: cover;
}
.deal-card-body {
	padding: 0.85rem 1rem;
}
.deal-card-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.05rem;
	color: var(--gold);
	font-weight: 600;
	margin-bottom: 0.15rem;
}
.deal-card-biz {
	font-size: 10px;
	letter-spacing: 0.5px;
	color: rgba(245, 237, 226, 0.5);
	margin-bottom: 0.3rem;
}
.deal-card-expiry {
	font-size: 10px;
	color: rgba(245, 237, 226, 0.35);
}

/* --------------------------- footer additions -------------------------------- */
.footer-nav-recap {
	list-style: none;
	display: flex;
	gap: 1.25rem;
	justify-content: center;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 0 1.5rem;
}
.footer-nav-link {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.5px;
	color: rgba(245, 237, 226, 0.65);
	text-decoration: none;
}
.footer-nav-link:hover {
	color: var(--gold);
}
.footer-newsletter-link,
.footer-business-cta {
	display: inline-block;
	font-size: 11px;
	color: rgba(245, 237, 226, 0.45);
	text-decoration: none;
	border-bottom: 1px solid rgba(245, 237, 226, 0.2);
	padding-bottom: 1px;
	margin: 0 0.75rem 1.5rem;
}
.footer-newsletter-link:hover,
.footer-business-cta:hover {
	color: var(--gold);
}

/* --------------------------- North Star archive ---------------------------- */
.newsletter-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.5rem;
}
.newsletter-card {
	background: var(--white);
	border: 1px solid var(--border-mid);
	border-radius: 14px;
	overflow: hidden;
	transition: transform 0.18s, box-shadow 0.18s;
	box-shadow: 0 2px 12px rgba(46, 43, 42, 0.07);
	text-decoration: none;
	color: inherit;
	display: block;
}
.newsletter-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(46, 43, 42, 0.14);
}
.newsletter-card-image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--gold-pale);
}
.newsletter-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.newsletter-card-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: var(--gold);
	opacity: 0.5;
}
.newsletter-card-body { padding: 1.1rem 1.25rem; }
.newsletter-card-date {
	font-size: 10px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--teal);
	font-weight: 600;
}
.newsletter-card-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--dark);
	margin-top: 0.3rem;
}
.newsletter-issue-cover {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 14px;
	margin-bottom: 1.5rem;
	box-shadow: 0 2px 16px rgba(46, 43, 42, 0.08);
}
.newsletter-issue-nav {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin: 1.5rem 0 2.5rem;
	font-size: 12px;
}
.newsletter-issue-nav a {
	color: var(--text-mid);
	text-decoration: none;
	border-bottom: 1px solid var(--border-mid);
	padding-bottom: 1px;
}
.newsletter-issue-nav a:hover {
	color: var(--dark);
}

/* ------------------------------ responsive ------------------------------ */
@media (max-width: 680px) {
	.compare-wrap { display: none; }
	.compare-mobile { display: block; }
}
@media (max-width: 700px) {
	/* Seven tabs can't fit evenly on a narrow screen — consolidate into a
	   hamburger menu instead of squeezing each label unreadably. */
	.nav-toggle { display: flex; }
	.sticky-nav { justify-content: space-between; }
	.nav-inner {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		margin: 0;
		background: var(--white);
		flex-direction: column;
		box-shadow: 0 12px 24px rgba(46, 43, 42, 0.12);
		border-top: 1px solid var(--border);
		max-height: calc(100vh - 60px);
		overflow-y: auto;
	}
	.sticky-nav.is-open .nav-inner { display: flex; }
	.tab-btn {
		width: 100%;
		flex: none;
		flex-direction: row;
		justify-content: flex-start;
		text-align: left;
		padding: 0.85rem 1.25rem;
		border-bottom: 1px solid var(--border);
	}
	.tab-btn .tab-sub { display: none; }
}
@media (max-width: 600px) {
	.main { padding: 1.5rem 1rem 4rem; }
	.sticky-nav { padding: 0.5rem 1rem; }
	.spotlight-grid { grid-template-columns: 1fr; }
	.site-header { padding: 0.75rem 1rem; }
	.logo-img { max-width: 160px; }
	.header-divider { margin: 0.5rem auto 0; max-width: 140px; }
}
@media (max-width: 500px) {
	.star-biz { display: none; }
	.star-name { min-width: unset; flex: 1; }
}

/* --------------------------- business dashboard -------------------------- */
.dash-login-card {
	background: var(--white);
	border: 1px solid var(--border-mid);
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 2px 10px rgba(46, 43, 42, 0.06);
	margin-top: 1.5rem;
}
.dash-login-sub {
	color: var(--text-muted);
	font-size: 14px;
	margin: -0.5rem 0 1.25rem;
}
.dash-login-error {
	background: rgba(217, 95, 95, 0.08);
	border: 1px solid rgba(217, 95, 95, 0.35);
	color: #a83e3e;
	font-size: 13px;
	padding: 0.6rem 0.9rem;
	border-radius: 8px;
	margin-bottom: 1.25rem;
}
.dash-login-form {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.dash-login-form label {
	font-size: 12px;
	font-weight: 600;
	color: var(--text-mid);
	margin-top: 0.6rem;
}
.dash-login-form input {
	font: inherit;
	padding: 0.6rem 0.75rem;
	border: 1px solid var(--border-mid);
	border-radius: 8px;
	background: var(--cream);
	color: var(--text-dark);
}
.dash-login-form input:focus {
	outline: none;
	border-color: var(--gold);
}
.dash-login-form .btn-gold {
	margin-top: 1.25rem;
	border: none;
	cursor: pointer;
	width: 100%;
}
.dash-forgot-link {
	display: inline-block;
	margin-top: 1.25rem;
	font-size: 13px;
	color: var(--text-muted);
	text-decoration: underline;
}

.dash-welcome {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}
.dash-welcome h1 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2rem;
	color: var(--dark);
	margin: 0 0 0.25rem;
}
.dash-constellation {
	color: var(--text-muted);
	font-size: 13px;
	margin: 0;
}

.dash-card {
	background: var(--white);
	border: 1px solid var(--border-mid);
	border-radius: 12px;
	padding: 1.75rem;
	box-shadow: 0 2px 10px rgba(46, 43, 42, 0.06);
	margin-bottom: 1.5rem;
}
.dash-card-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.4rem;
	color: var(--dark);
	margin: 0 0 1rem;
}
.dash-card-desc {
	font-size: 13px;
	color: var(--text-muted);
	margin: -0.6rem 0 1.25rem;
}
.dash-lanes {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 2rem;
}
.dash-lane-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--text-light);
	margin: 1.25rem 0 0.5rem;
}
.dash-lane-label:first-of-type { margin-top: 0; }
@media (max-width: 600px) {
	.dash-lanes { grid-template-columns: 1fr; gap: 0; }
}
.dash-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
}
.dash-check-item {
	padding: 0.65rem 0;
	border-bottom: 1px solid var(--border);
	font-size: 14px;
	color: var(--text-dark);
}
.dash-check-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}
.dash-check-item:last-child { border-bottom: none; }
.dash-check-item.is-complete .dash-check-label { color: var(--text-muted); }
.dash-check-item.is-locked { color: var(--text-light); }
.dash-check-link {
	display: inline-block;
	margin-top: 0.35rem;
	font-size: 13px;
	font-weight: 600;
	color: var(--teal);
}
.dash-check-link:hover { text-decoration: underline; }
.dash-check-mark {
	color: var(--teal);
	font-weight: 700;
}
.dash-status {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 10px;
	font-size: 11px;
	font-weight: 600;
	white-space: nowrap;
}
.dash-status.status-in-progress { background: rgba(238, 205, 136, 0.2); color: #8a6d2f; }
.dash-status.status-action-needed { background: rgba(217, 95, 95, 0.12); color: #a83e3e; }
.dash-status.status-complete { background: rgba(132, 200, 204, 0.18); color: #1a5c5e; }
.dash-status.status-locked { background: rgba(58, 48, 40, 0.06); color: var(--text-muted); }

.dash-vault-menu {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
}
.dash-vault-menu li {
	display: flex;
	align-items: baseline;
	padding: 0.45rem 0;
	border-bottom: 1px solid var(--border-mid);
}
.dash-vault-menu li:last-child { border-bottom: none; }
.vault-menu-name { white-space: nowrap; font-weight: 600; }
.vault-menu-leader {
	flex: 1 1 auto;
	margin: 0 0.6rem 3px;
	border-bottom: 1px dotted var(--gold);
}
.vault-menu-price { white-space: nowrap; font-weight: 600; color: #8a6d2f; }
.dash-vault-confirm {
	background: rgba(132, 200, 204, 0.12);
	border: 1px solid rgba(132, 200, 204, 0.4);
	color: #1a5c5e;
	font-size: 13px;
	padding: 0.6rem 0.9rem;
	border-radius: 8px;
	margin: 0 0 1.25rem;
}
.dash-vault-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	align-items: start;
	gap: 1rem;
}
.dash-vault-card {
	background: var(--cream);
	border: 1px solid var(--border-mid);
	border-radius: 10px;
	padding: 1.25rem;
	text-align: center;
}
/* Shooting Star and Extra Event Post have enough fields to fill out that they
   go first, spanning the full section width, rather than being squeezed into
   a shared row with the smaller one-click add-ons below. align-items: start
   above keeps every other card sized to its own content instead of
   stretching to match a taller neighbor in the same row. */
.dash-vault-card-full {
	grid-column: 1 / -1;
}
.dash-vault-tier-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 1.5rem;
}
@media (max-width: 640px) {
	.dash-vault-tier-cols {
		grid-template-columns: 1fr;
	}
}
.dash-vault-field-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 0 1rem;
}
.dash-vault-icon { font-size: 1.4rem; margin-bottom: 0.5rem; }
.dash-vault-card h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.05rem;
	color: var(--dark);
	margin: 0 0 0.4rem;
}
.dash-vault-card p {
	font-size: 12px;
	color: var(--text-muted);
	line-height: 1.5;
	margin: 0 0 1rem;
}
.dash-vault-request-btn {
	font: inherit;
	font-size: 12px;
	font-weight: 600;
	background: none;
	border: 1px solid var(--border-mid);
	color: var(--text-dark);
	padding: 0.4rem 0.9rem;
	border-radius: 16px;
	cursor: pointer;
	transition: border-color 0.15s, background 0.15s;
}
.dash-vault-request-btn:hover { border-color: var(--gold); background: rgba(238, 205, 136, 0.12); }
.dash-vault-bns-form {
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.dash-vault-radio {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 12.5px;
	color: var(--text-dark);
	cursor: pointer;
}
.dash-vault-times-label {
	font-size: 11px;
	font-weight: 600;
	color: var(--text-mid);
	margin-top: 0.35rem;
}
.dash-vault-group-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--text-light);
	margin-top: 0.6rem;
}
.dash-vault-group-label:first-child { margin-top: 0; }
.dash-vault-group-desc {
	font-size: 11.5px;
	color: var(--text-muted);
	line-height: 1.4;
	margin: 0.15rem 0 0.3rem;
}
.dash-vault-bns-form input[type="text"],
.dash-vault-bns-form input[type="date"],
.dash-vault-bns-form input[type="time"],
.dash-vault-bns-form textarea {
	font: inherit;
	font-size: 13px;
	padding: 0.4rem 0.6rem;
	border: 1px solid var(--border-mid);
	border-radius: 6px;
	background: var(--white);
	color: var(--text-dark);
	resize: vertical;
}
.dash-vault-bns-form .dash-vault-request-btn {
	margin-top: 0.5rem;
	align-self: flex-start;
}

.dash-stat-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.dash-stat-tile {
	background: var(--cream);
	border: 1px solid var(--border-mid);
	border-radius: 10px;
	padding: 1.1rem 1rem;
	text-align: center;
}
.dash-stat-label {
	display: block;
	font-size: 12px;
	color: var(--text-muted);
	margin-bottom: 0.4rem;
}
.dash-stat-value {
	display: block;
	font-family: 'Jost', system-ui, sans-serif;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--dark);
}
.dash-share-label {
	font-size: 13px;
	color: var(--text-muted);
	margin: 0 0 0.4rem;
}
.dash-share-link {
	display: block;
	font-size: 12px;
	background: var(--cream);
	border: 1px solid var(--border-mid);
	border-radius: 6px;
	padding: 0.6rem 0.8rem;
	margin-bottom: 0.85rem;
	color: var(--text-dark);
	word-break: break-all;
}

.dash-preview-link {
	display: inline-block;
	font-size: 13px;
	color: #1a5c5e;
	text-decoration: underline;
	margin-bottom: 1rem;
}
.dash-listing-form {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}
.dash-listing-form label {
	font-size: 12px;
	font-weight: 600;
	color: var(--text-mid);
	margin-top: 0.7rem;
}
.dash-listing-form label:first-of-type { margin-top: 0; }
.dash-listing-form input,
.dash-listing-form textarea {
	font: inherit;
	font-size: 14px;
	padding: 0.55rem 0.7rem;
	border: 1px solid var(--border-mid);
	border-radius: 8px;
	background: var(--cream);
	color: var(--text-dark);
	resize: vertical;
}
.dash-listing-form input:focus,
.dash-listing-form textarea:focus {
	outline: none;
	border-color: var(--gold);
}
.dash-listing-form .btn-gold {
	margin-top: 1.25rem;
	border: none;
	cursor: pointer;
	align-self: flex-start;
}

.dash-roster {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.dash-roster li {
	background: var(--cream);
	border: 1px solid var(--border-mid);
	border-radius: 16px;
	padding: 0.4rem 0.9rem;
	font-size: 13px;
	color: var(--text-dark);
}

.dash-legal-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.dash-legal-links a {
	display: inline-block;
	background: var(--cream);
	border: 1px solid var(--border-mid);
	border-radius: 16px;
	padding: 0.4rem 0.9rem;
	font-size: 13px;
	color: var(--text-dark);
	text-decoration: none;
}
.dash-legal-links a:hover {
	border-color: var(--gold);
	color: var(--gold);
}

.dash-billing-line {
	font-size: 14px;
	color: var(--text-dark);
	margin: 0 0 0.4rem;
}
.dash-billing-note {
	font-size: 12px;
	color: var(--text-muted);
	margin: 0.75rem 0 0;
}
.dash-toolkit-note {
	font-size: 12px;
	color: var(--text-light);
	font-style: italic;
	margin: 0 0 1rem;
}
.dash-share-graphic-link {
	display: inline-block;
	margin-bottom: 1rem;
}
.dash-share-graphic {
	display: block;
	width: 140px;
	max-width: 100%;
	border-radius: 10px;
	border: 1px solid var(--border-mid);
}
.dash-stat-value-small { font-size: 1.1rem; }
.dash-expiring-notice {
	background: rgba(238, 205, 136, 0.15);
	border: 1px solid var(--border-mid);
	color: #8a6d2f;
	font-size: 12px;
	padding: 0.5rem 0.8rem;
	border-radius: 8px;
	margin: 0.5rem 0 0;
}

.dash-support p {
	font-size: 13px;
	color: var(--text-muted);
	margin: 0 0 1rem;
}
.dash-support .btn-gold {
	display: inline-block;
}

.dash-more-soon {
	text-align: center;
	color: var(--text-light);
	font-size: 13px;
	font-style: italic;
}
@media (max-width: 600px) {
	.dash-login-card { padding: 1.5rem; }
	.dash-card { padding: 1.25rem; }
	.dash-stat-row { grid-template-columns: 1fr; }
}

/* Dashboard-only deep-teal skin — just the page background, sets the
   dashboard apart from the public site's cream look. The cards themselves
   stay cream (unchanged, for easy reading); a deeper shadow gives them some
   lift off the teal backdrop. */
body.hbs-dashboard-page {
	background: linear-gradient(165deg, #0f5d62 0%, #0b494d 100%);
}
body.hbs-dashboard-page .dash-card,
body.hbs-dashboard-page .dash-login-card {
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}
/* The welcome header sits directly on the teal, not on a card — needs its
   own light text. (.dash-forgot-link is scoped to .dash-welcome here since
   the same class is reused for "Log out"/"Forgot password" links that sit
   on cream cards elsewhere, which should stay as they are.) */
body.hbs-dashboard-page .dash-welcome h1 {
	color: var(--gold-pale);
}
body.hbs-dashboard-page .dash-constellation {
	color: rgba(245, 237, 226, 0.75);
}
body.hbs-dashboard-page .dash-welcome .dash-forgot-link {
	color: var(--gold-pale);
}

/* --------------------------- WooCommerce cart -------------------------- */
/* The Cart block's own "remove item" button is icon-only by default (a small
   trash can, no visible label) — easy to miss. Adding a plain-text "Remove"
   next to it so it reads as a clickable action, not decoration. */
.wc-block-cart-item__remove-link {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	color: var(--text-mid);
}
.wc-block-cart-item__remove-link::after {
	content: "Remove";
	font-family: 'Jost', sans-serif;
	font-size: 12px;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.wc-block-cart-item__remove-link:hover,
.wc-block-cart-item__remove-link:hover::after {
	color: #b3492a;
}

/* -------------------------- WooCommerce checkout ------------------------ */
/* Sits right under the Total in the Order Summary card (inserted there by
   hbs_checkout_edit_cart_link() in vault-checkout.php) — a full-width,
   clearly bordered button so it's obvious at a glance, without competing
   with "Place Order" for attention the way a matching gold button would. */
.checkout-edit-cart-link {
	margin: 1rem 0 0;
}
.checkout-edit-cart-link a {
	display: block;
	text-align: center;
	padding: 0.75rem 1.5rem;
	border: 1px solid var(--border-mid);
	border-radius: 10px;
	background: var(--white);
	font-family: 'Jost', sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.3px;
	color: var(--dark);
	text-decoration: none;
	transition: background 0.15s, border-color 0.15s;
}
.checkout-edit-cart-link a:hover {
	background: var(--gold-pale);
	border-color: var(--gold);
}
