/*
Theme Name: Connecting Scottsdale North Theme
Author: Custom Build
Description: Ultra-fast custom theme built for CSN via Cursor.
Version: 1.1
*/

/* -------------------------------------------------------------------------- */
/* Design tokens                                                              */
/* -------------------------------------------------------------------------- */

:root {
	--color-charcoal: #222222;
	--color-charcoal-soft: #2c2c2c;
	--color-gold: #c19a5b;
	--color-gold-hover: #ad8749;
	--color-beige: #f5f2ed;
	--color-beige-dark: #ebe6de;
	--color-olive: #8d8c7a;
	--color-white: #ffffff;
	--color-text: #1a1a1a;
	--color-text-muted: #5c5c5c;
	--color-border: #e4dfd6;

	--font-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;

	--container: 1200px;
	--radius: 4px;
	--radius-lg: 8px;
	--utility-height: 34px;
	--header-height: 120px;
	--shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.08);

	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 1.5rem;
	--space-lg: 2.5rem;
	--space-xl: 4rem;
	--space-2xl: 6rem;
}

/* -------------------------------------------------------------------------- */
/* Base                                                                       */
/* -------------------------------------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-white);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
}

h1, h2, h3, h4 {
	line-height: 1.2;
	font-weight: 700;
	margin: 0 0 0.75rem;
}

p {
	margin: 0 0 1rem;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

button,
input,
select,
textarea {
	font: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.container {
	width: min(100% - 2.5rem, var(--container));
	margin-inline: auto;
}

.section {
	padding: var(--space-2xl) 0;
}

.section--beige {
	background: var(--color-beige);
}

.section--dark {
	background: #000000;
	color: var(--color-white);
}

.eyebrow {
	display: inline-block;
	margin-bottom: var(--space-sm);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-gold);
}

/* -------------------------------------------------------------------------- */
/* Buttons & links                                                            */
/* -------------------------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.4rem;
	border-radius: var(--radius);
	border: 1px solid transparent;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
	padding: 10px 20px;
	gap: 10px;
	background: #b5924d;
	border: 1px solid #b5924d;
	border-radius: 8px;
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	color: #141008;
}

.btn--primary:hover {
	background: #a48242;
	border-color: #a48242;
	color: #141008;
}

.btn--secondary {
	box-sizing: border-box;
	padding: 10px 20px;
	gap: 10px;
	background: rgba(19, 19, 21, 0.7);
	border: 1px solid #b5924d;
	border-radius: 8px;
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	color: #b5924d;
}

.btn--secondary:hover {
	background: rgba(19, 19, 21, 0.85);
	border-color: #c4a35c;
	color: #c4a35c;
}

.btn--block {
	width: 100%;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-gold);
	text-decoration: none;
}

.text-link::after {
	content: "→";
	transition: transform 0.2s ease;
}

.text-link:hover::after {
	transform: translateX(3px);
}

/* -------------------------------------------------------------------------- */
/* Section header                                                             */
/* -------------------------------------------------------------------------- */

.section-header .eyebrow {
	display: block;
}

.section-header {
	max-width: 1100px;
	margin-bottom: var(--space-lg);
}

.section-header--center {
	margin-inline: auto;
	text-align: center;
}

.section-header__title {
	margin-bottom: 0.5rem;
	font-weight: 500;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	line-height: 1.18;
	color: #060606;
}

.section-header__subtitle {
	margin: 0;
	color: var(--color-text-muted);
	font-size: 1.05rem;
}

/* -------------------------------------------------------------------------- */
/* Header                                                                     */
/* -------------------------------------------------------------------------- */

.site-chrome {
	position: sticky;
	top: 0;
	z-index: 100;
}

.site-utility {
	height: var(--utility-height);
	overflow: hidden;
	background: #8d8c7a;
	color: #f4f4f2;
}

.site-chrome.is-scrolled .site-utility {
	height: 0;
	opacity: 0;
	pointer-events: none;
}

.site-utility__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--utility-height);
	gap: var(--space-md);
}

.site-utility__phone {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #f4f4f2;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.site-utility__phone:hover {
	color: #ffffff;
}

.site-utility__phone-icon {
	flex-shrink: 0;
	display: block;
	width: 18px;
	height: 18px;
}

.site-utility__social {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 120px;
	justify-content: space-between;
}

.site-utility__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	color: #f4f4f2;
	text-decoration: none;
}

.site-utility__social a:hover {
	color: #ffffff;
}

.site-utility__social svg {
	display: block;
	width: 18px;
	height: 18px;
}

.site-header {
	position: relative;
	height: var(--header-height);
	background: var(--color-charcoal);
	color: var(--color-white);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: var(--space-md);
}

.site-header__brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
}

.site-logo {
	display: block;
	width: auto;
	height: 102px;
	max-width: min(468px, 70vw);
}

.site-chrome.is-scrolled {
	--header-height: 64px;
}

.site-chrome.is-scrolled .site-header .site-logo {
	height: 42px;
	max-width: min(200px, 55vw);
}

.site-footer__logo .site-logo {
	height: 48px;
	max-width: min(220px, 70vw);
}

.site-header__nav {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}

.site-header__menu {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.site-header__menu a {
	color: var(--color-white);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	white-space: nowrap;
}

.site-header__menu a:hover {
	color: var(--color-gold);
}

.site-header__cta {
	padding: 0.7rem 1.15rem;
	font-size: 0.9rem;
}

.site-header__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 8px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.site-header__toggle span {
	display: block;
	height: 2px;
	background: var(--color-white);
	border-radius: 1px;
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */

.hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: min(78vh, 640px);
	padding: var(--space-2xl) 0;
	color: var(--color-white);
	text-align: center;
	overflow: hidden;
}

.hero__media,
.hero__overlay {
	position: absolute;
	inset: 0;
}

.hero__media {
	background-size: cover;
	background-position: center;
}

.hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero__overlay {
	background: linear-gradient(rgba(20, 20, 20, 0.45), rgba(20, 20, 20, 0.55));
}

.hero__content {
	position: relative;
	z-index: 1;
	max-width: min(100%, 1100px);
}

.hero .eyebrow {
	color: var(--color-white);
}

.hero__headline {
	font-size: clamp(2.4rem, 5vw, 3.75rem);
	margin-bottom: 1rem;
}

.hero__subheadline {
	margin: 0 auto 2rem;
	max-width: none;
	font-size: clamp(1rem, 2vw, 1.2rem);
	font-weight: 400;
	line-height: 1.5;
	opacity: 0.95;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

.hero__actions .btn--primary {
	width: 247px;
	max-width: 100%;
	height: 55px;
}

.hero__actions .btn--secondary {
	width: 275px;
	max-width: 100%;
	height: 55px;
}

/* -------------------------------------------------------------------------- */
/* Intro                                                                      */
/* -------------------------------------------------------------------------- */

.intro.section {
	padding: clamp(3rem, 6vw, 5rem) 0;
	background: var(--color-white);
}

.intro--footer {
	border-top: 1px solid var(--color-border);
}

.intro__grid {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: clamp(2rem, 4vw, 3.5rem);
}

.intro__media {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex: none;
	width: 274px;
	height: 242px;
	padding: 0;
	gap: 10px;
	overflow: hidden;
}

.intro__media img {
	flex: none;
	width: auto;
	height: 100%;
	max-width: 100%;
	object-fit: contain;
	object-position: center top;
}

.intro__content {
	flex: 1 1 0;
	min-width: 0;
	padding-top: 0.15rem;
}

.intro .eyebrow {
	margin-bottom: 1rem;
}

.intro__title {
	font-size: clamp(1.75rem, 2.8vw, 2.25rem);
	font-weight: 700;
	line-height: 1.35;
	color: var(--color-text);
	margin: 0 0 1.5rem;
}

.intro__text {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--color-text-muted);
	margin: 0 0 1.75rem;
	max-width: 42em;
}

.intro__signature {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-text);
	margin: 0;
}

/* -------------------------------------------------------------------------- */
/* Image cards / service grid                                                 */
/* -------------------------------------------------------------------------- */

.service-grid__header {
	margin-bottom: 2rem;
}

.service-grid__track {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
}

.service-grid__slide .image-card {
	height: 100%;
	min-height: 548px;
}

.image-card {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	padding: 0;
	gap: 0;
	min-height: 548px;
	overflow: hidden;
	text-decoration: none;
	color: #ffffff;
}

.image-card--gold {
	background: #b5924d;
}

.image-card--olive {
	background: #8d8c7a;
}

.image-card--charcoal {
	background: #222222;
}

.image-card__media {
	flex: none;
	align-self: stretch;
	width: 100%;
	height: 260px;
	background-size: cover;
	background-position: center;
}

.image-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.875rem;
	flex: 1;
	padding: 2.5rem;
	background: transparent;
}

.image-card__title {
	margin: 0;
	font-weight: 500;
	font-size: clamp(1.5rem, 2.2vw, 2.25rem);
	line-height: 1.22;
	color: #ffffff;
}

.image-card__title strong {
	font-weight: 700;
}

.image-card__description {
	margin: 0;
	max-width: 26rem;
	font-weight: 400;
	font-size: 1.125rem;
	line-height: 1.22;
	color: #ffffff;
	opacity: 1;
}

/* -------------------------------------------------------------------------- */
/* Content grid                                                               */
/* -------------------------------------------------------------------------- */

.content-grid__header {
	max-width: 1100px;
	margin-bottom: var(--space-xl);
}

.content-grid__header .section-header__subtitle {
	color: var(--color-text);
	font-size: 1.05rem;
	line-height: 1.6;
	max-width: none;
}

.content-grid__footer {
	display: flex;
	justify-content: flex-end;
	margin-top: 1.5rem;
}

.content-grid__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 2px;
}

.content-grid__cell {
	min-height: 0;
}

.content-grid__cell--primary {
	grid-row: 1 / -1;
}

.content-grid__feature {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 100%;
	background: var(--color-beige-dark);
}

.content-grid .video-thumb--grid {
	border-radius: 0;
	flex: 0 0 auto;
	width: 100%;
	min-height: 280px;
	aspect-ratio: 16 / 9;
}

.content-grid .video-thumb--grid .video-thumb__play {
	width: 88px;
	height: 88px;
	background: rgba(193, 154, 91, 0.8);
	box-shadow: none;
}

.content-grid__feature-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 2rem 2.25rem;
}

.content-grid__insight-category {
	margin-bottom: 0.65rem;
}

.content-grid__insight-title {
	font-size: 1.35rem;
	line-height: 1.3;
	margin-bottom: 0.5rem;
}

.content-grid__insight-title a {
	color: inherit;
	text-decoration: none;
}

.content-grid__insight-title a:hover {
	color: var(--color-gold);
}

.content-grid__insight-meta {
	margin: 0 0 1.5rem;
	font-size: 0.9rem;
	color: var(--color-text);
}

.content-grid .article-teaser__title {
	font-size: 1.35rem;
	line-height: 1.3;
}

.article-teaser--beige,
.article-teaser--grey {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 2rem 2.25rem;
	border-radius: 0;
}

.article-teaser--beige {
	background: var(--color-beige);
}

.article-teaser--grey {
	background: #f3f1ee;
}

.article-teaser--beige .article-teaser__excerpt,
.article-teaser--grey .article-teaser__excerpt {
	flex-grow: 1;
	margin-bottom: 1.25rem;
	color: var(--color-text);
}

.article-teaser--beige .text-link,
.article-teaser--grey .text-link {
	margin-top: auto;
}

.content-list--outlined {
	margin-top: 0;
	gap: 1.15rem;
}

.content-list--outlined .content-list__icon {
	background: transparent;
	border: 1px solid var(--color-gold);
	color: var(--color-gold);
	font-weight: 600;
}

.video-thumb {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	border-radius: var(--radius-lg);
	overflow: hidden;
	text-decoration: none;
}

.video-thumb__media {
	display: block;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.3s ease;
}

.video-thumb:hover .video-thumb__media {
	transform: scale(1.03);
}

.video-thumb__play {
	position: absolute;
	top: 50%;
	left: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--color-gold);
	color: var(--color-white);
	transform: translate(-50%, -50%);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.content-list {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.content-list__item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	font-size: 1rem;
	font-weight: 500;
}

.content-list__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--color-gold);
	color: var(--color-white);
	font-size: 0.8rem;
	font-weight: 700;
}

.article-teaser {
	padding: 1.5rem;
	background: var(--color-beige);
	border-radius: var(--radius-lg);
}

.article-teaser__category,
.post-card__category {
	display: inline-block;
	margin-bottom: 0.65rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-gold);
}

.article-teaser__title,
.post-card__title {
	font-size: 1.2rem;
	margin-bottom: 0.65rem;
}

.article-teaser__title a,
.post-card__title a {
	text-decoration: none;
}

.article-teaser__title a:hover,
.post-card__title a:hover {
	color: var(--color-gold);
}

.article-teaser__excerpt,
.post-card__excerpt {
	color: var(--color-text-muted);
	margin-bottom: 1rem;
}

/* -------------------------------------------------------------------------- */
/* Featured carousel                                                          */
/* -------------------------------------------------------------------------- */

.featured-carousel__header {
	margin-bottom: var(--space-xl);
}

.featured-carousel .featured-carousel__section-header {
	max-width: 1100px;
	margin-bottom: 0;
}

.featured-carousel .featured-carousel__section-header .section-header__title {
	margin-bottom: 0.85rem;
}

.featured-carousel .featured-carousel__section-header .section-header__subtitle {
	color: var(--color-text);
	font-size: 1.05rem;
	line-height: 1.6;
	max-width: none;
}

.carousel-controls {
	display: flex;
	gap: 0.75rem;
	flex-shrink: 0;
}

.carousel-controls__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--color-charcoal);
	border-radius: 50%;
	background: transparent;
	color: var(--color-charcoal);
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.carousel-controls__btn:hover {
	background: var(--color-charcoal);
	color: var(--color-white);
}

.carousel-controls--minimal .carousel-controls__btn {
	width: auto;
	height: auto;
	padding: 0.25rem;
	border: 0;
	border-radius: 0;
	color: var(--color-gold);
}

.carousel-controls--minimal .carousel-controls__btn:hover {
	background: transparent;
	color: var(--color-gold-hover);
}

.featured-carousel__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 384px;
	gap: 0.75rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding-bottom: 0.25rem;
}

.featured-carousel__track::-webkit-scrollbar {
	display: none;
}

.featured-carousel__slide {
	scroll-snap-align: start;
}

.featured-carousel__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 2rem;
}

.carousel-dots {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.carousel-dots__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #c8c4bc;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.carousel-dots__dot.is-active {
	background: var(--color-gold);
	transform: scale(1.15);
}

.post-card {
	height: 100%;
	background: var(--color-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
}

.post-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	text-decoration: none;
}

.post-card__media-image {
	display: block;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.3s ease;
}

.post-card__media:hover .post-card__media-image {
	transform: scale(1.03);
}

.post-card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--color-gold);
	color: var(--color-white);
	transform: translate(-50%, -50%);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.post-card__body {
	display: flex;
	flex-direction: column;
	padding: 1.35rem 1.5rem 1.6rem;
}

.post-card--spotlight {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	width: 384px;
	max-width: 100%;
	padding: 0 0 20px;
	background: #ffffff;
	border-radius: 0;
	box-shadow: none;
	overflow: hidden;
}

#lifestyle-experiences {
	background: var(--color-beige-dark);
}

.post-card--spotlight .post-card__media {
	flex: none;
	align-self: stretch;
	width: 100%;
	height: 194px;
	aspect-ratio: auto;
	border-radius: 0;
	overflow: hidden;
}

.post-card--spotlight .post-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	width: 100%;
	padding: 0;
}

.post-card--spotlight .post-card__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 17px;
	width: 100%;
	padding: 0 20px;
}

.post-card--spotlight .post-card__categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: flex-start;
	width: 100%;
}

.post-card--spotlight .post-card__category {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	box-sizing: border-box;
	margin-bottom: 0;
	padding: 0 20px;
	width: auto;
	min-height: 35px;
	background: #ffffff;
	border: 1px solid #b5924d;
	border-radius: 1000px;
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: 0;
	text-align: center;
	text-transform: none;
	color: #b5924d;
}

.post-card--spotlight .post-card__title {
	display: flex;
	align-items: center;
	align-self: stretch;
	margin: 0;
	font-weight: 600;
	font-size: 24px;
	line-height: 29px;
	color: #060606;
}

.post-card--spotlight .post-card__title a {
	color: inherit;
	text-decoration: none;
}

.post-card--spotlight .post-card__title a:hover {
	color: #b5924d;
}

.post-card--spotlight .post-card__excerpt {
	flex: none;
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #060606;
}

.post-card--spotlight .post-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 0;
	padding: 0 20px;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: #b5924d;
	text-decoration: none;
}

.post-card--spotlight .post-card__cta:hover {
	color: #9a7d41;
}

.post-card--spotlight .post-card__cta--video .post-card__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 0;
	color: #b5924d;
}

.post-card--spotlight .post-card__cta--video .post-card__cta-icon svg {
	display: block;
	width: 36px;
	height: 36px;
}

.post-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin-top: auto;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-gold);
	text-decoration: none;
}

.post-card__cta:hover {
	color: var(--color-gold-hover);
}

.post-card__cta--video .post-card__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border: 1px solid var(--color-gold);
	border-radius: 50%;
	color: var(--color-gold);
}

/* -------------------------------------------------------------------------- */
/* Podcast grid                                                               */
/* -------------------------------------------------------------------------- */

.podcast-grid .section-header {
	max-width: 1100px;
	margin-bottom: var(--space-xl);
}

.podcast-grid .section-header__title {
	margin-bottom: 0.75rem;
}

.podcast-grid .section-header__subtitle {
	color: var(--color-text);
	font-size: 1.1rem;
	line-height: 1.55;
}

.podcast-grid__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2px;
	background: var(--color-white);
}

.podcast-grid__viewport {
	position: relative;
}

.podcast-grid__page[hidden] {
	display: none;
}

.podcast-card {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 2.25rem 2rem;
	background: #e5e5e5;
	color: var(--color-text);
	transition: background-color 0.25s ease, color 0.25s ease;
}

.podcast-card--featured {
	grid-column: 1 / -1;
	padding: 2.5rem 2.25rem;
}

.podcast-card--featured .podcast-card__title {
	font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.podcast-card--featured .podcast-card__description {
	max-width: 42rem;
}

.podcast-card:hover,
.podcast-card:focus-within {
	background: #2d2e32;
	color: var(--color-white);
}

.podcast-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--color-gold);
	color: var(--color-white);
}

.podcast-card__body {
	min-width: 0;
}

.podcast-card__episode {
	margin: 0 0 0.65rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-gold);
}

.podcast-card__title {
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	line-height: 1.3;
	margin-bottom: 0.65rem;
}

.podcast-card__guests {
	margin: 0 0 0.85rem;
	font-size: 0.9rem;
	line-height: 1.45;
	color: var(--color-text-muted);
	transition: color 0.25s ease;
}

.podcast-card__guests-label {
	display: inline-block;
	margin-right: 0.35rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-gold);
}

.podcast-card:hover .podcast-card__guests,
.podcast-card:focus-within .podcast-card__guests {
	color: rgba(255, 255, 255, 0.82);
}

.podcast-card__description {
	margin: 0 0 1.25rem;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--color-text-muted);
	transition: color 0.25s ease;
}

.podcast-card:hover .podcast-card__description,
.podcast-card:focus-within .podcast-card__description {
	color: rgba(255, 255, 255, 0.82);
}

.podcast-card__link {
	margin-top: auto;
}

.podcast-grid__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}

.podcast-grid__footer-actions {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-left: auto;
	flex-wrap: wrap;
}

.podcast-grid__status {
	margin: 0;
	font-size: 0.9rem;
	color: var(--color-text-muted);
}

.podcast-grid__footer .carousel-controls__btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.podcast-archive .section-header {
	max-width: 1100px;
	margin-bottom: var(--space-xl);
}

.podcast-archive__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2px;
	background: var(--color-white);
}

/* -------------------------------------------------------------------------- */
/* Lead form                                                                  */
/* -------------------------------------------------------------------------- */

.lead-form__header {
	width: 100%;
	margin-bottom: var(--space-lg);
}

.lead-form__title {
	width: 100%;
	max-width: none;
	margin: 0;
	font-size: clamp(1.85rem, 3.5vw, 2.5rem);
	line-height: 1.15;
	color: var(--color-charcoal);
}

.lead-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

.lead-form__media {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.lead-form__media img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 14px;
}

.lead-form__options {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
	align-items: start;
	width: 100%;
}

.lead-form__check {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	min-width: 0;
	cursor: pointer;
	color: var(--color-text-muted);
	font-size: 0.9rem;
	line-height: 1.4;
}

.lead-form__check-label {
	flex: 1;
	min-width: 0;
}

.lead-form__check input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	pointer-events: none;
}

.lead-form__check-box {
	flex: 0 0 auto;
	width: 1.35rem;
	height: 1.35rem;
	margin-top: 0.1rem;
	border: 1.5px solid #c8c4bc;
	border-radius: 3px;
	background: var(--color-white);
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.lead-form__check input:focus-visible + .lead-form__check-box {
	outline: 2px solid var(--color-gold);
	outline-offset: 2px;
}

.lead-form__check input:checked + .lead-form__check-box {
	border-color: var(--color-gold);
	background: var(--color-gold);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 0.85rem;
}

.form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.form--lead {
	gap: 1.1rem;
}

.form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.form__field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.form__field label:not(.screen-reader-text) {
	font-size: 0.85rem;
	font-weight: 600;
}

.form__field--icon {
	position: relative;
}

.form__icon {
	position: absolute;
	top: 50%;
	left: 1rem;
	display: inline-flex;
	color: #8a8680;
	transform: translateY(-50%);
	pointer-events: none;
}

.form__field--textarea .form__icon {
	top: 1.1rem;
	transform: none;
}

.form__chevron {
	position: absolute;
	top: 50%;
	right: 1rem;
	display: inline-flex;
	color: #8a8680;
	transform: translateY(-50%);
	pointer-events: none;
}

.form__field input,
.form__field select,
.form__field textarea,
.newsletter-form input {
	width: 100%;
	padding: 0.95rem 1rem;
	border: 1px solid #d8d4cc;
	border-radius: 10px;
	background: var(--color-white);
	color: var(--color-text);
}

.form__field--icon input,
.form__field--icon select,
.form__field--icon textarea {
	padding-left: 3rem;
}

.form__field--select select {
	padding-right: 2.75rem;
	appearance: none;
	cursor: pointer;
}

.form__field--select select:invalid,
.form__field input::placeholder,
.form__field textarea::placeholder {
	color: #9a9590;
}

.form__field textarea {
	min-height: 8rem;
	resize: vertical;
	line-height: 1.5;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus,
.newsletter-form input:focus {
	outline: 2px solid var(--color-gold);
	outline-offset: 1px;
}

.btn--send {
	margin-top: 0.25rem;
	padding: 1rem 1.4rem;
	border-radius: 10px;
	color: var(--color-charcoal);
	font-size: 1.05rem;
	font-weight: 700;
}

.btn--send:hover {
	color: var(--color-charcoal);
}

/* Fluent Forms — match lead form design */
.lead-form__fields .fluentform .ff-el-form-control,
.lead-form__fields .fluentform textarea.ff-el-form-control {
	width: 100%;
	padding: 0.95rem 1rem;
	border: 1px solid #d8d4cc;
	border-radius: 10px;
	background: var(--color-white);
	color: var(--color-text);
	box-shadow: none;
	min-height: 0;
	line-height: 1.5;
}

.lead-form__fields .fluentform textarea.ff-el-form-control {
	min-height: 8rem;
	resize: vertical;
}

.lead-form__fields .fluentform .ff-el-form-control:focus {
	outline: 2px solid var(--color-gold);
	outline-offset: 1px;
	border-color: #d8d4cc;
	box-shadow: none;
}

.lead-form__fields .fluentform .ff-el-input--label,
.lead-form__fields .fluentform .ff-el-input--label label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.lead-form__fields .fluentform fieldset {
	display: flex;
	flex-direction: column;
	gap: 1.35rem;
	min-inline-size: 100%;
}

.lead-form__fields .fluentform .ff-el-group {
	margin: 0 !important;
}

.lead-form__fields .fluentform .ff-el-form-check {
	display: block;
	margin: 0;
}

.lead-form__fields .fluentform .ff-el-form-check-label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	min-width: 0;
	cursor: pointer;
	color: var(--color-text-muted);
	font-size: 0.9rem;
	line-height: 1.4;
}

.lead-form__fields .fluentform .ff-el-form-check-label span {
	flex: 1;
	min-width: 0;
}

.lead-form__fields .fluentform .ff-el-form-check-input {
	position: static;
	flex: 0 0 auto;
	width: 1.35rem;
	height: 1.35rem;
	margin: 0.1rem 0 0;
	opacity: 1;
	pointer-events: auto;
	cursor: pointer;
	accent-color: var(--color-gold);
}

.lead-form__fields .fluentform .csn-ff-options + .csn-ff-options {
	margin-top: -0.35rem;
}

.lead-form__fields .fluentform .ff-btn-submit,
.lead-form__fields .fluentform button.ff-btn-submit {
	width: 100%;
	margin-top: 0.25rem;
	padding: 1rem 1.4rem;
	border: 0;
	border-radius: 10px;
	background: var(--color-gold) !important;
	color: var(--color-charcoal) !important;
	font-size: 1.05rem;
	font-weight: 700;
	cursor: pointer;
}

.lead-form__fields .fluentform .ff-btn-submit:hover,
.lead-form__fields .fluentform button.ff-btn-submit:hover {
	filter: brightness(0.97);
	color: var(--color-charcoal) !important;
}

.lead-form__fields .fluentform .ff-message-success {
	padding: 1rem 1.15rem;
	border-radius: 10px;
	background: rgba(197, 165, 114, 0.15);
	color: var(--color-charcoal);
}

.lead-form__fields .frm-fluent-form {
	display: block;
}

.lead-form__fields .fluentform legend.ff_screen_reader_title {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	border: 0 !important;
	text-indent: -9999px !important;
}

/* Constant Contact form — match lead form design */
.lead-form__fields .ctct-form-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	width: 100%;
}

.lead-form__fields .ctct-form-wrapper .ctct-form-field {
	margin: 0;
}

.lead-form__fields .ctct-form-wrapper label:not(.ctct-label-checkbox):not(.ctct-label-text) {
	font-size: 0.85rem;
	font-weight: 600;
}

.lead-form__fields .ctct-form-wrapper input[type="text"],
.lead-form__fields .ctct-form-wrapper input[type="email"],
.lead-form__fields .ctct-form-wrapper input[type="tel"],
.lead-form__fields .ctct-form-wrapper input[type="url"],
.lead-form__fields .ctct-form-wrapper input[type="number"],
.lead-form__fields .ctct-form-wrapper select,
.lead-form__fields .ctct-form-wrapper textarea {
	width: 100%;
	padding: 0.95rem 1rem;
	border: 1px solid #d8d4cc;
	border-radius: 10px;
	background: var(--color-white);
	color: var(--color-text);
	box-shadow: none;
	line-height: 1.5;
}

.lead-form__fields .ctct-form-wrapper textarea {
	min-height: 8rem;
	resize: vertical;
}

.lead-form__fields .ctct-form-wrapper input:focus,
.lead-form__fields .ctct-form-wrapper select:focus,
.lead-form__fields .ctct-form-wrapper textarea:focus {
	outline: 2px solid var(--color-gold);
	outline-offset: 1px;
	border-color: #d8d4cc;
	box-shadow: none;
}

.lead-form__fields .ctct-form-wrapper .ctct-submit,
.lead-form__fields .ctct-form-wrapper .ctct-button,
.lead-form__fields .ctct-form-wrapper input[type="submit"],
.lead-form__fields .ctct-form-wrapper button[type="submit"] {
	width: 100%;
	margin-top: 0.25rem;
	padding: 1rem 1.4rem;
	border: 0;
	border-radius: 10px;
	background: var(--color-gold) !important;
	color: var(--color-charcoal) !important;
	font-size: 1.05rem;
	font-weight: 700;
	cursor: pointer;
}

.lead-form__fields .ctct-form-wrapper .ctct-submit:hover,
.lead-form__fields .ctct-form-wrapper .ctct-button:hover,
.lead-form__fields .ctct-form-wrapper input[type="submit"]:hover,
.lead-form__fields .ctct-form-wrapper button[type="submit"]:hover {
	filter: brightness(0.97);
	color: var(--color-charcoal) !important;
}

.lead-form__fields .ctct-form-wrapper .ctct-message.ctct-success {
	padding: 1rem 1.15rem;
	border-radius: 10px;
	background: rgba(197, 165, 114, 0.15);
	border-color: var(--color-gold);
	color: var(--color-charcoal);
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */

.site-footer {
	background: var(--color-charcoal);
	color: var(--color-white);
	padding-top: var(--space-xl);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1.2fr;
	gap: 2.5rem;
	padding-bottom: var(--space-xl);
}

.site-footer__logo {
	display: inline-flex;
	align-items: center;
	margin-bottom: 1.25rem;
	text-decoration: none;
}

.site-footer__address,
.site-footer__phone {
	margin: 0 0 0.35rem;
	color: rgba(255, 255, 255, 0.8);
}

.site-footer__phone a {
	color: inherit;
	text-decoration: none;
}

.site-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.25rem;
}

.site-footer__social a,
.site-footer__links a,
.site-footer__legal a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 0.95rem;
}

.site-footer__social a:hover,
.site-footer__links a:hover,
.site-footer__legal a:hover {
	color: var(--color-gold);
}

.site-footer__heading {
	font-size: 1rem;
	margin-bottom: 1rem;
}

.site-footer__links ul {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.site-footer__newsletter p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 1rem;
}

.newsletter-form {
	display: block;
}

.newsletter-form .fluentform,
.newsletter-form .frm-fluent-form,
.newsletter-form .fluentform fieldset {
	width: 100%;
}

.newsletter-form .fluentform fieldset {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	border: 0;
	min-inline-size: 0;
}

.newsletter-form .fluentform .ff-el-group {
	margin: 0 !important;
	flex: 1;
	min-width: 0;
}

.newsletter-form .fluentform .ff-el-input--label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.newsletter-form .fluentform .ff-el-form-control {
	width: 100%;
	height: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--color-white);
	box-shadow: none;
}

.newsletter-form .fluentform .ff-el-form-control::placeholder {
	color: rgba(255, 255, 255, 0.55);
}

.newsletter-form .fluentform .ff-el-form-control:focus {
	outline: 2px solid var(--color-gold);
	outline-offset: 1px;
	border-color: rgba(255, 255, 255, 0.35);
}

.newsletter-form .fluentform .ff-t-container,
.newsletter-form .fluentform .ff-btn-submit,
.newsletter-form .fluentform button.ff-btn-submit {
	flex: 0 0 auto;
	width: auto !important;
	margin: 0;
	padding: 0.85rem 1.25rem;
	border: 0;
	border-radius: 10px;
	background: var(--color-gold) !important;
	color: var(--color-charcoal) !important;
	font-weight: 700;
	white-space: nowrap;
	cursor: pointer;
}

.newsletter-form .fluentform legend.ff_screen_reader_title {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	border: 0 !important;
	text-indent: -9999px !important;
}

.newsletter-form .fluentform .ff-message-success {
	margin-top: 0.75rem;
	padding: 0.75rem 0.9rem;
	border-radius: 8px;
	background: rgba(197, 165, 114, 0.2);
	color: var(--color-white);
	font-size: 0.9rem;
}

.newsletter-form input {
	flex: 1;
	min-width: 0;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 1.1rem 0;
}

.site-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.site-footer__bottom p {
	margin: 0;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.65);
}

.site-footer__legal {
	display: flex;
	gap: 1.25rem;
}

.site-footer__legal a {
	font-size: 0.85rem;
}

/* -------------------------------------------------------------------------- */
/* Post / podcast singles                                                     */
/* -------------------------------------------------------------------------- */

.post-hero {
	padding: var(--space-xl) 0 var(--space-lg);
	background: var(--color-beige);
}

.post-hero--image {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: min(42vh, 420px);
	padding: var(--space-xl) 0;
	color: var(--color-white);
	overflow: hidden;
}

.post-hero__media,
.post-hero__overlay {
	position: absolute;
	inset: 0;
}

.post-hero__media {
	background-size: cover;
	background-position: center;
}

.post-hero__overlay {
	background: linear-gradient(180deg, rgba(20, 20, 20, 0.15) 0%, rgba(20, 20, 20, 0.72) 100%);
}

.post-hero__content {
	position: relative;
	z-index: 1;
	max-width: 760px;
}

.post-hero__category {
	display: inline-flex;
	align-items: center;
	margin-bottom: 0.85rem;
	padding: 0 1rem;
	min-height: 32px;
	border: 1px solid var(--color-gold);
	border-radius: 1000px;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--color-gold);
}

.post-hero--image .post-hero__category {
	border-color: rgba(255, 255, 255, 0.65);
	color: var(--color-white);
}

.post-hero__title {
	margin: 0 0 0.75rem;
	font-size: clamp(2rem, 4vw, 2.75rem);
}

.post-hero__guests {
	margin: 0 0 0.75rem;
	font-size: 1.05rem;
	line-height: 1.45;
	color: var(--color-text-muted);
}

.post-hero--image .post-hero__guests {
	color: rgba(255, 255, 255, 0.9);
}

.post-hero__guests-label {
	display: inline-block;
	margin-right: 0.4rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-gold);
}

.post-hero--image .post-hero__guests-label {
	color: var(--color-gold);
}

.post-hero__meta {
	margin: 0;
	font-size: 0.95rem;
	color: var(--color-text-muted);
}

.post-hero--image .post-hero__meta {
	color: rgba(255, 255, 255, 0.85);
}

.post-single__content {
	max-width: 760px;
	font-size: 1.05rem;
	line-height: 1.7;
}

.podcast-single__layout {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	max-width: none;
	width: 100%;
}

.podcast-single__description {
	max-width: none;
	width: 100%;
	font-size: 1.05rem;
	line-height: 1.7;
}

.podcast-single__video-link {
	margin: 0;
}

.podcast-single__heading {
	margin: 0 0 1rem;
	font-size: 1.5rem;
}

.podcast-single__copy {
	width: 100%;
	color: var(--color-text);
	font-size: 1.05rem;
	line-height: 1.7;
}

.podcast-single__copy p:last-child {
	margin-bottom: 0;
}

.podcast-single .post-hero--image {
	align-items: flex-start;
	min-height: min(62vh, 640px);
	padding: clamp(2.5rem, 8vh, 5rem) 0 var(--space-xl);
}

.podcast-single .post-hero__media {
	background-position: center bottom;
}

.podcast-single .post-hero__content {
	max-width: 570px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.podcast-single .post-hero__category {
	justify-content: center;
}

.audio-player {
	padding: 1.5rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	background: var(--color-beige);
}

.audio-player.is-waveform {
	background: #1f1f1f;
	border-color: #2c2c2c;
	color: var(--color-white);
}

.audio-player__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.audio-player__actions {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.audio-player__youtube {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: #ff6b6b;
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.audio-player__youtube:hover {
	color: #ff8a8a;
}

.audio-player.is-waveform .audio-player__youtube {
	color: #ff6b6b;
}

.audio-player__youtube-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.audio-player__label {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--color-charcoal);
}

.audio-player.is-waveform .audio-player__label {
	color: rgba(255, 255, 255, 0.92);
}

.audio-player__toolbar {
	display: none;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.85rem;
}

.audio-player.is-waveform .audio-player__toolbar {
	display: flex;
}

.audio-player__play {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--color-gold);
	color: var(--color-white);
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.audio-player__play:hover {
	background: var(--color-gold-hover);
}

.audio-player__icon[hidden] {
	display: none;
}

.audio-player.is-playing .audio-player__icon--play {
	display: none;
}

.audio-player.is-playing .audio-player__icon--pause {
	display: block;
}

.audio-player__time {
	font-variant-numeric: tabular-nums;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.72);
}

.audio-player__time-sep {
	margin: 0 0.25rem;
	opacity: 0.6;
}

.audio-player__waveform {
	display: none;
	min-height: 112px;
	padding: 0.65rem 0.75rem;
	border-radius: var(--radius);
	background: linear-gradient(180deg, #151515 0%, #262626 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.audio-player.is-waveform .audio-player__waveform {
	display: block;
}

.audio-player__waveform wave,
.audio-player__waveform canvas {
	width: 100% !important;
}

.audio-player__control,
.audio-player__fallback {
	display: block;
	width: 100%;
	margin: 0;
	accent-color: var(--color-gold);
}

.audio-player.is-waveform .audio-player__fallback {
	display: none;
}

.audio-player__download,
.audio-player__download-link {
	margin: 0;
}

.audio-player.is-waveform .audio-player__download-link {
	color: var(--color-gold);
}

.audio-player:not(.is-waveform) .audio-player__actions {
	width: 100%;
	justify-content: flex-end;
}

/* -------------------------------------------------------------------------- */
/* Community Spotlights                                                       */
/* -------------------------------------------------------------------------- */

.spotlight-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: min(52vh, 520px);
	padding: var(--space-2xl) 0 var(--space-xl);
	color: var(--color-white);
	overflow: hidden;
}

.spotlight-hero__media,
.spotlight-hero__overlay {
	position: absolute;
	inset: 0;
}

.spotlight-hero__media {
	background-size: cover;
	background-position: center;
}

.spotlight-hero__overlay {
	background: linear-gradient(180deg, rgba(20, 20, 20, 0.2) 0%, rgba(20, 20, 20, 0.72) 100%);
}

.spotlight-hero__content {
	position: relative;
	z-index: 1;
	max-width: 760px;
}

.spotlight-hero__categories {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.spotlight-hero__categories .spotlight-hero__category {
	margin-bottom: 0;
}

.spotlight-hero__category {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	padding: 0 1.25rem;
	min-height: 35px;
	border: 1px solid var(--color-gold);
	border-radius: 1000px;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--color-gold);
}

.spotlight-hero__title {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3rem);
}

.spotlight-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
	gap: 2.5rem;
	align-items: start;
}

.spotlight-single__layout--full {
	grid-template-columns: 1fr;
	max-width: 820px;
}

.spotlight-single__main {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.spotlight-single__heading {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.spotlight-single__copy {
	color: var(--color-text);
	font-size: 1.05rem;
	line-height: 1.7;
}

.spotlight-single__copy p:last-child {
	margin-bottom: 0;
}

.spotlight-single__additional {
	margin-top: 2.5rem;
	padding-top: 2.5rem;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Supplemental content */
.supplemental-content__inner {
	display: grid;
	gap: 2.5rem;
}

.supplemental-content__editor > :first-child {
	margin-top: 0;
}

.supplemental-content__editor > :last-child {
	margin-bottom: 0;
}

.image-gallery__title {
	margin: 0 0 1.25rem;
	font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.image-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.image-gallery__item {
	margin: 0;
}

.image-gallery__item img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.supplemental-content__editor .wp-block-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin: 0;
}

.supplemental-content__editor .wp-block-gallery .wp-block-image {
	margin: 0;
}

.supplemental-content__editor .wp-block-gallery img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

@media (max-width: 900px) {
	.image-gallery__grid,
	.supplemental-content__editor .wp-block-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.image-gallery__grid,
	.supplemental-content__editor .wp-block-gallery {
		grid-template-columns: 1fr;
	}
}

.spotlight-about-scott {
	display: inline-flex;
	align-items: center;
	margin-top: 1.25rem;
	padding: 0;
	border: 0;
	background: none;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--color-text-muted);
	text-decoration: underline;
	text-decoration-color: rgba(92, 92, 92, 0.35);
	text-underline-offset: 0.2em;
	cursor: pointer;
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.spotlight-about-scott:hover,
.spotlight-about-scott:focus-visible {
	color: var(--color-gold);
	text-decoration-color: currentColor;
}

.csn-modal[hidden] {
	display: none;
}

.csn-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.csn-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 20, 20, 0.55);
}

.csn-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 640px);
	max-height: min(80vh, 720px);
	padding: 2rem 2rem 1.75rem;
	border-radius: var(--radius-lg);
	background: var(--color-white);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
	overflow: auto;
}

.csn-modal__close {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--color-text-muted);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}

.csn-modal__close:hover,
.csn-modal__close:focus-visible {
	background: var(--color-beige);
	color: var(--color-text);
}

.csn-modal__title {
	margin: 0 2rem 1rem 0;
	font-size: 1.5rem;
}

.csn-modal__content {
	color: var(--color-text);
	font-size: 1rem;
	line-height: 1.7;
}

.csn-modal__content p:last-child {
	margin-bottom: 0;
}

body.is-modal-open {
	overflow: hidden;
}

.video-embed {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: #000;
	box-shadow: var(--shadow-soft);
}

.video-embed__frame {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.spotlight-business-card {
	padding: 1.75rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	background: var(--color-beige);
}

.spotlight-business-card__title {
	margin: 0 0 1.25rem;
	font-size: 1.25rem;
}

.spotlight-business-card__website {
	margin-bottom: 1.5rem;
}

.spotlight-business-card__pdf {
	margin-bottom: 1.5rem;
}

.spotlight-business-card__website + .spotlight-business-card__pdf {
	margin-top: -0.75rem;
}

.spotlight-business-card__details {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.spotlight-business-card__detail {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.spotlight-business-card__label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.spotlight-business-card__detail a {
	color: var(--color-gold);
	font-weight: 600;
	text-decoration: none;
}

.spotlight-business-card__detail a:hover {
	color: var(--color-gold-hover);
}

.spotlight-business-card__map {
	margin-bottom: 1.5rem;
	border-radius: var(--radius);
	overflow: hidden;
}

.spotlight-business-card__map-frame {
	display: block;
	width: 100%;
	height: 220px;
	border: 0;
}

.spotlight-business-card__social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	margin-top: 0.5rem;
}

.spotlight-business-card__social-links a {
	color: var(--color-gold);
	font-weight: 600;
	text-decoration: none;
}

.spotlight-business-card__social-links a:hover {
	color: var(--color-gold-hover);
}

.spotlight-archive__grid,
.spotlight-related__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2rem;
}

.spotlight-archive__empty {
	margin: 0;
	color: var(--color-text-muted);
}

.spotlight-archive__pagination {
	margin-top: var(--space-xl);
}

.spotlight-archive__pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

.spotlight-archive__pagination a,
.spotlight-archive__pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	padding: 0.5rem 0.85rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	text-decoration: none;
}

.spotlight-archive__pagination .current {
	background: var(--color-gold);
	border-color: var(--color-gold);
	color: var(--color-white);
}

.featured-carousel__footer-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */

@media (max-width: 960px) {
	.content-grid__layout,
	.lead-form__grid,
	.site-footer__grid {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.content-grid__cell--primary {
		grid-row: auto;
	}

	.service-grid__track {
		grid-template-columns: 1fr;
	}

	.podcast-grid__cards,
	.podcast-archive__cards {
		grid-template-columns: 1fr;
	}

	.lead-form__media {
		order: -1;
	}

	.lead-form__media img {
		aspect-ratio: 16 / 10;
	}

	.spotlight-single__layout,
	.spotlight-archive__grid,
	.spotlight-related__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	:root {
		--header-height: 96px;
	}

	.site-chrome.is-scrolled {
		--header-height: 56px;
	}

	.featured-carousel__track {
		grid-auto-columns: min(384px, 85vw);
	}

	.site-logo {
		height: 78px;
	}

	.site-chrome.is-scrolled .site-header .site-logo {
		height: 36px;
		max-width: min(160px, 50vw);
	}

	.site-utility__phone {
		font-size: 14px;
	}

	.site-utility__social {
		width: auto;
		gap: 10px;
	}

	.intro__grid {
		flex-direction: column;
	}

	.intro__media {
		width: min(274px, 70%);
		height: auto;
		max-height: 242px;
	}

	.intro__media img {
		width: auto;
		height: 100%;

	}

	.site-header__toggle {
		display: inline-flex;
	}

	.site-header__nav {
		position: absolute;
		top: var(--header-height);
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
		padding: 1.25rem 1.25rem 1.5rem;
		background: var(--color-charcoal-soft);
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.site-header.is-nav-open .site-header__nav {
		display: flex;
	}

	.site-header__menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.85rem;
	}

	.site-header__cta {
		width: 100%;
	}

	.form__row {
		grid-template-columns: 1fr;
	}

	.featured-carousel__footer {
		margin-top: 1.5rem;
	}

	.newsletter-form {
		flex-direction: column;
	}
}
