/* ==========================================================================
   Cheshire / Prospect Season Pass — design tokens
   Colors + type pulled from the Figma file's local styles/variables.
   "Glancyr" (headings) and "Neulis Sans" (button labels) are custom/paid
   fonts not available as web fonts yet — Poppins is used as a close
   geometric-sans stand-in until the real font files are supplied, then
   swap the --font-heading value below.
   ========================================================================== */
:root {
	--color-pink: #e31567;
	--color-peach: #ff9088;
	--color-accent: #e5fc54;
	--color-magenta: #ff51fe;
	--color-blue: #2985b5;
	--color-teal: #00b2ba;
	--color-dark: #202020;
	--color-black: #000000;
	--color-white: #ffffff;
	--color-gray-1: #f6f6f6;
	--color-light-blue: #a5e1ff;
	--color-stroke-blue: #2c50fe;

	--font-heading: 'Poppins', 'Segoe UI', sans-serif;
	--font-body: 'Open Sans', Arial, sans-serif;
	--font-accent: 'Jost', 'Segoe UI', sans-serif;
	--font-label: 'Hind Guntur', 'Segoe UI', sans-serif;

	--container-width: 1290px;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--color-dark);
	background: var(--color-white);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	display: block;
}

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

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1, h2, h3, h4 {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 700;
}

p {
	margin: 0 0 1em;
}

p:last-child {
	margin-bottom: 0;
}

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

.section-title {
	font-size: clamp(2rem, 3.4vw, 3.125rem);
	line-height: 1.16;
	color: var(--color-black);
}

.section-title--light {
	color: var(--color-white);
}

.section-title--center {
	text-align: center;
}

.section-title-block {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.section-title-block--center {
	align-items: center;
	text-align: center;
	max-width: 760px;
	margin: 0 auto;
	color: var(--color-white);
}

/* CTA buttons ------------------------------------------------------------ */
.cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 18px 28px;
	border-radius: 6px;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	transition: transform 0.15s ease, opacity 0.15s ease;
	cursor: pointer;
	border: none;
}

.cta-btn:hover {
	transform: translateY(-2px);
	opacity: 0.92;
}

.cta-btn--peach {
	background: var(--color-peach);
	color: var(--color-black);
}

.cta-btn--pink {
	background: var(--color-pink);
	color: var(--color-white);
}

.cta-btn--blue {
	background: var(--color-blue);
	color: var(--color-white);
}

.cta-btn--accent {
	background: var(--color-accent);
	color: var(--color-black);
}

.cta-btn--indigo {
	background: #4f63e0;
	color: var(--color-white);
}

.cta-btn--secondary {
	background: var(--color-light-blue);
	color: var(--color-white);
	font-family: var(--font-accent);
}

/* Wordmark ---------------------------------------------------------------- */
.wordmark {
	display: flex;
	flex-direction: column;
	gap: 6px;
	line-height: 1;
}

.wordmark__brand {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 1px;
	color: var(--color-pink);
	border-bottom: 3px solid var(--color-pink);
	padding-bottom: 2px;
	align-self: flex-start;
}

.wordmark__row {
	display: flex;
	align-items: flex-end;
	gap: 4px;
}

.wordmark__season {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 26px;
	letter-spacing: 1.5px;
	color: var(--color-black);
	line-height: 1;
}

.wordmark__pass {
	height: 15px;
	width: auto;
	margin-bottom: 2px;
}

.wordmark__tm {
	height: 4.5px;
	width: auto;
	margin-bottom: 8px;
}

.wordmark--card {
	align-items: center;
	text-align: center;
}

.wordmark--card .wordmark__brand {
	align-self: center;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	background: var(--color-white);
	position: relative;
	z-index: 40;
}

.site-header__inner {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 24px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-header__panel {
	display: flex;
	align-items: center;
	gap: 35px;
	flex: 1;
	justify-content: flex-end;
}

.primary-nav__list {
	display: flex;
	align-items: center;
	gap: 35px;
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 16px;
}

.primary-nav__list a:hover {
	color: var(--color-pink);
}

.header-auth {
	display: flex;
	align-items: stretch;
	gap: 12px;
}

.header-auth__signup,
.header-auth__login {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 0.15s ease, opacity 0.15s ease, color 0.15s ease;
}

.header-auth__signup {
	background: #01bb3c;
	color: var(--color-black);
	border-color: #01bb3c;
}

.header-auth__signup:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

.header-auth__login {
	background: transparent;
	color: var(--color-black);
}

.header-auth__login:hover {
	color: var(--color-pink);
	border-color: var(--color-pink);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	flex-shrink: 0;
}

.nav-toggle span {
	width: 26px;
	height: 3px;
	background: var(--color-black);
	display: block;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	position: relative;
	background: var(--color-black);
	padding: 110px 32px;
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 1;
}

.hero__inner {
	position: relative;
	z-index: 2;
	max-width: 1280px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	text-align: center;
}

.hero__title {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: clamp(2.5rem, 6.5vw, 6.25rem);
	line-height: 1.05;
	letter-spacing: 1px;
	color: var(--color-accent);
	text-transform: uppercase;
	overflow-wrap: break-word;
	word-break: break-word;
	max-width: 100%;
}

.hero__subtitle {
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: clamp(1.05rem, 1.6vw, 1.375rem);
	color: var(--color-white);
	line-height: 1.4;
}

/* ==========================================================================
   Partner strip
   ========================================================================== */
.partner-strip {
	background: var(--color-pink);
	padding: 30px 32px;
}

.partner-strip__inner {
	max-width: var(--container-width);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.partner-strip__label {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(1.5rem, 3vw, 3.125rem);
	color: var(--color-white);
	margin: 0;
}

.partner-strip__logo {
	height: 90px;
	width: auto;
}

/* ==========================================================================
   About
   ========================================================================== */
.about {
	background: var(--color-white);
}

.about__inner {
	max-width: 1440px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
}

.about__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 30px;
	padding: 80px 60px;
	max-width: 560px;
	margin: 0 auto;
}

.about__text {
	font-size: 16px;
	color: var(--color-dark);
}

.about__panel {
	background: var(--color-peach);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 40px;
}

/* Pass preview card -------------------------------------------------------- */
.pass-card {
	background: var(--color-black);
	border-radius: 6px;
	width: 100%;
	max-width: 460px;
	padding: 38px 40px 40px;
	position: relative;
	overflow: hidden;
}

.pass-card__hero {
	background: linear-gradient(180deg, #e31567 0%, #b00e4f 100%);
	border-radius: 6px 6px 0 0;
	overflow: hidden;
	position: relative;
}

.pass-card__hero-image {
	width: 100%;
	display: block;
}

.pass-card__cta {
	background: var(--color-white);
	border-radius: 0 0 6px 6px;
	padding: 45px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.pass-card__cta h3 {
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 22px;
	margin-bottom: 12px;
}

.pass-card__cta ul {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 16px;
	list-style: disc;
	padding-left: 22px;
}

.pass-card__cta li {
	display: list-item;
}

/* ==========================================================================
   Featured businesses
   ========================================================================== */
.businesses {
	background: var(--color-black);
	padding: 100px 32px;
}

.businesses__inner {
	max-width: var(--container-width);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

.section-title-block--center p {
	font-size: 16px;
	color: var(--color-white);
	max-width: 720px;
}

.business-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	width: 100%;
}

.business-card {
	display: flex;
	flex-direction: column;
	border: 3px solid var(--color-peach);
	border-radius: 6px;
	overflow: hidden;
	color: inherit;
	text-decoration: none;
}

.business-card__image {
	height: 220px;
	overflow: hidden;
}

.business-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.business-card__body {
	background: var(--color-black);
	padding: 32px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.business-card__body h3 {
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 22px;
	color: var(--color-accent);
}

.business-card__body ul {
	list-style: disc;
	padding-left: 20px;
	color: var(--color-white);
	font-size: 15px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.business-card__body li {
	display: list-item;
}

.businesses__toggle {
	margin-top: 10px;
}

/* ==========================================================================
   Preview (wordmark card + banner)
   ========================================================================== */
.preview {
	background: var(--color-white);
	padding: 110px 32px 0;
	text-align: center;
	position: relative;
}

.preview__inner {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.preview__text {
	font-size: 16px;
	color: var(--color-dark);
}

.preview__card {
	background: var(--color-white);
	border: 1px solid #e5e7eb;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
	border-radius: 12px;
	overflow: hidden;
	width: 100%;
	max-width: 408px;
	margin-top: 40px;
	text-align: left;
}

.preview__card-body {
	padding: 24px;
}

.preview__card-caption {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 16px;
	margin: 0;
}

.preview__card-divider {
	border: none;
	border-top: 1px solid #e5e7eb;
	margin: 16px 0;
}

.preview__card-cta {
	display: flex;
	width: 100%;
}

.how-it-works {
	width: 100%;
	max-width: var(--container-width);
	margin: 90px auto 0;
	padding-bottom: 100px;
	text-align: left;
}

.how-it-works__title {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 20px;
	color: var(--color-black);
	margin: 0 0 30px;
}

.how-it-works__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
}

.how-it-works__step p {
	font-family: var(--font-body);
	font-size: 14px;
	color: #6b7280;
	line-height: 1.6;
}

.how-it-works__icon {
	display: block;
	width: 56px;
	height: 56px;
	margin-bottom: 14px;
	color: #4b5563;
}

.how-it-works__icon svg {
	width: 100%;
	height: 100%;
}

.how-it-works__step-title {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 15px;
	color: var(--color-black);
	margin: 0 0 10px;
}

.preview__card-photo {
	position: relative;
	width: 100%;
	aspect-ratio: 408 / 300;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px 8px 0 0;
	background: var(--color-gray-1);
}

.preview__card-wordmark {
	gap: 3px;
}

.preview__card-wordmark .wordmark__brand {
	font-size: 16px;
	letter-spacing: 1px;
}

.preview__card-wordmark .wordmark__season {
	font-size: 30px;
	letter-spacing: 1.5px;
}

.preview__card-wordmark .wordmark__pass {
	height: 17px;
}

.preview__card-wordmark .wordmark__tm {
	height: 5px;
	margin-bottom: 9px;
}

/* ==========================================================================
   Split panels (diagonal color sections)
   ========================================================================== */
.split-panel {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	aspect-ratio: 1440 / 515;
	max-height: 750px;
}

.split-panel--magenta {
	background: linear-gradient(160deg, #e88569 0%, #d96b53 100%);
}

.split-panel--accent {
	background: linear-gradient(160deg, #a3134f 0%, #8c0f44 100%);
}

.split-panel--reverse {
	grid-template-columns: 1fr 1fr;
}

.split-panel--reverse .split-panel__media {
	order: 3;
}

.split-panel--reverse .split-panel__content {
	order: 1;
}

.split-panel--reverse .split-panel__decor {
	order: 2;
}

.split-panel__media {
	position: relative;
	height: 100%;
	min-height: 0;
	min-width: 0;
}

.split-panel__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.split-panel__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 28px;
	padding: 70px 90px;
	color: var(--color-white);
	position: relative;
	z-index: 2;
	height: 100%;
	box-sizing: border-box;
}

.split-panel__content .section-title {
	color: var(--color-white);
}

.split-panel__text {
	font-family: var(--font-accent);
	font-size: 16px;
	max-width: 435px;
}

.split-panel__decor {
	position: absolute;
	grid-column: 1 / -1;
	grid-row: 1 / -1;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	overflow: hidden;
}

.split-panel__decor img {
	position: absolute;
	opacity: 1;
}

img.split-panel__decor-vector {
	left: 50%;
	right: auto;
	top: -8%;
	bottom: auto;
	width: 18%;
	transform: translateX(-50%);
	opacity: 1;
}

img.split-panel__decor-ellipse {
	right: -3%;
	bottom: -8%;
	top: auto;
	width: 15%;
	opacity: 1;
}

.split-panel--reverse img.split-panel__decor-ellipse {
	left: -3%;
	right: auto;
	top: -4%;
	bottom: auto;
	width: 13%;
	opacity: 1;
}

.split-panel--reverse img.split-panel__decor-vector {
	left: auto;
	right: 50%;
	top: auto;
	bottom: 0;
	width: 17%;
	transform: none;
	opacity: 1;
}

img.split-panel__decor-diamond {
	left: 50%;
	top: 58%;
	bottom: auto;
	width: 8%;
	transform: translate(-50%, -50%);
	opacity: 1;
}

/* ==========================================================================
   News & Notes page
   ========================================================================== */
.cta-btn--green {
	background: #01bb3c;
	color: var(--color-black);
}

.nn-hero {
	background-size: cover;
	background-position: center;
	padding: 140px 32px;
	display: flex;
	justify-content: center;
}

.nn-hero__inner {
	max-width: 1280px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	text-align: center;
}

.nn-hero__title {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: clamp(2.5rem, 5.5vw, 5.5rem);
	line-height: 1.05;
	letter-spacing: 1px;
	color: var(--color-accent);
	text-transform: uppercase;
	overflow-wrap: break-word;
}

.nn-hero__subtitle {
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 22px;
	color: var(--color-white);
}

.nn-weekly {
	background-size: cover;
	background-position: center;
	padding: 100px 135px;
}

.nn-weekly__inner {
	max-width: var(--container-width);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 50px;
}

.nn-feature {
	display: flex;
	width: 100%;
	max-width: 1170px;
	border-radius: 6px;
	overflow: hidden;
	border: 3px solid var(--color-pink);
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.nn-feature__media {
	flex: 1 1 50%;
	position: relative;
}

.nn-feature__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 300px;
}

.nn-feature__body {
	flex: 1 1 50%;
	background: var(--color-black);
	color: var(--color-white);
	padding: 56px 60px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: center;
}

.nn-feature__body h3 {
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 26px;
	color: var(--color-accent);
}

.nn-feature__body p {
	font-family: var(--font-accent);
	font-size: 16px;
}

.nn-watch-link {
	font-family: var(--font-accent);
	font-weight: 700;
	font-size: 16px;
	color: #23ce6b;
	text-decoration: underline;
	width: fit-content;
}

.nn-news {
	padding: 100px 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 45px;
}

.nn-news__title {
	color: var(--color-black);
	max-width: 900px;
}

.nn-news__title p {
	color: var(--color-black);
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	width: 100%;
	max-width: var(--container-width);
}

.news-card {
	display: flex;
	flex-direction: column;
	border: 3px solid var(--color-pink);
	border-radius: 6px;
	overflow: hidden;
}

.news-card__image {
	height: 220px;
	overflow: hidden;
	background: var(--color-black);
}

.news-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-card__body {
	background: var(--color-black);
	padding: 32px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.news-card__eyebrow {
	font-family: var(--font-accent);
	font-weight: 700;
	font-size: 16px;
	color: var(--color-white);
	margin: 0;
}

.news-card__body h3 {
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 22px;
	color: var(--color-accent);
}

.news-card__excerpt {
	font-family: var(--font-accent);
	font-size: 16px;
	color: var(--color-white);
}

.news-card__excerpt p {
	margin: 0;
}

.news-card__watch {
	font-family: var(--font-accent);
	font-weight: 700;
	font-size: 16px;
	color: #23ce6b;
	width: fit-content;
}

.nn-media {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 806px;
}

.nn-media__content {
	background: var(--color-black);
	color: var(--color-white);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 28px;
	padding: 70px 90px;
	position: relative;
	overflow: hidden;
}

.nn-media__content p {
	font-family: var(--font-accent);
	font-size: 16px;
	max-width: 460px;
}

.nn-media__form-wrap {
	position: relative;
	background: linear-gradient(160deg, #dd5252 0%, #ff9088 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 70px;
	overflow: hidden;
}

.nn-media__decor {
	position: absolute;
	right: 0;
	top: 0;
	left: auto;
	width: 36%;
	aspect-ratio: 1;
	background: #01bb3c;
	border-radius: 0 0 0 100%;
	opacity: 1;
	pointer-events: none;
}

.nn-form {
	position: relative;
	z-index: 1;
	background: var(--color-black);
	border-radius: 6px;
	padding: 40px;
	width: 100%;
	max-width: 460px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.nn-form h3 {
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 32px;
	color: var(--color-accent);
	margin: 0;
}

.nn-form__required {
	font-family: var(--font-accent);
	font-size: 16px;
	color: var(--color-white);
	margin: -16px 0 0;
}

.nn-form__notice {
	font-family: var(--font-accent);
	font-size: 15px;
	padding: 12px 16px;
	border-radius: 6px;
	margin: 0;
}

.nn-form__notice--success {
	background: rgba(1, 187, 60, 0.15);
	color: #23ce6b;
}

.nn-form__notice--error {
	background: rgba(227, 21, 103, 0.15);
	color: var(--color-peach);
}

.nn-form__row {
	display: flex;
	gap: 20px;
}

.nn-form__field {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.nn-form__field--full {
	width: 100%;
}

.nn-form__field span {
	font-family: var(--font-accent);
	font-weight: 500;
	font-size: 16px;
	color: var(--color-white);
}

.nn-form__field input {
	background: var(--color-black);
	border: 1px solid var(--color-accent);
	border-radius: 6px;
	padding: 12px 16px;
	font-family: var(--font-accent);
	font-size: 16px;
	color: var(--color-white);
}

.nn-form__field input:focus {
	outline: 2px solid var(--color-accent);
	outline-offset: 1px;
}

.nn-form__submit {
	width: 100%;
	text-transform: uppercase;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	background: var(--color-black);
	color: var(--color-white);
	padding: 80px 32px 75px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 50px;
	text-align: center;
}

.site-footer__top {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	max-width: 848px;
}

.site-footer__badge {
	width: 150px;
	height: auto;
}

.eyebrow {
	font-family: var(--font-label);
	font-weight: 300;
	font-size: 13.6px;
	margin: 0 0 6px;
}

.site-footer__logo {
	display: flex;
	align-items: flex-end;
	gap: 6px;
	margin: 0 auto 10px;
}

.site-footer__logo img:first-child {
	height: 20px;
	width: auto;
}

.site-footer__logo img:last-child {
	height: 14px;
	width: auto;
}

.site-footer__address {
	font-family: var(--font-accent);
	font-weight: 300;
	font-size: 12px;
	margin: 0;
}

.site-footer__partner-logo {
	width: 84px;
	height: auto;
	margin: 0 auto;
}

.site-footer__bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.site-footer__social img {
	width: 33px;
	height: 33px;
}

.site-footer__legal,
.site-footer__copyright {
	font-family: var(--font-accent);
	font-weight: 400;
	font-size: 12px;
	margin: 0;
}

.site-footer__legal a {
	text-decoration: underline;
}

/* FAQ ----------------------------------------------------------------------- */
.faq-hero {
	background: var(--color-pink);
	padding: 110px 32px 90px;
	display: flex;
	justify-content: center;
}

.faq-hero__inner {
	max-width: var(--container-width);
	width: 100%;
}

.faq-hero__title {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: clamp(2.5rem, 5.5vw, 4.5rem);
	line-height: 1.05;
	letter-spacing: 1px;
	color: var(--color-accent);
	text-transform: uppercase;
	margin: 0;
}

.faq-section {
	background: var(--color-black);
	padding: 90px 32px 110px;
}

.faq-section__inner {
	max-width: 900px;
	margin: 0 auto;
}

.faq-category {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: clamp(1.5rem, 2.6vw, 2.25rem);
	color: var(--color-white);
	margin: 48px 0 20px;
}

.faq-category:first-child {
	margin-top: 0;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 4px;
	background: var(--color-black);
}

.faq-item__heading {
	margin: 0;
}

.faq-item__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	background: none;
	border: none;
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
}

.faq-item__icon {
	position: relative;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--color-accent);
}

.faq-item__icon::before,
.faq-item__icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background: var(--color-black);
	transform: translate(-50%, -50%);
}

.faq-item__icon::before {
	width: 12px;
	height: 2px;
}

.faq-item__icon::after {
	width: 2px;
	height: 12px;
	transition: opacity 0.15s ease;
}

.faq-item.is-open .faq-item__icon::after {
	opacity: 0;
}

.faq-item__answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 24px;
	transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-item.is-open .faq-item__answer {
	max-height: 480px;
	padding: 0 24px 22px;
}

.faq-item__answer p {
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.7;
}

@media (max-width: 780px) {
	.faq-hero {
		padding: 80px 24px 64px;
	}

	.faq-section {
		padding: 64px 24px 80px;
	}

	.faq-item__question {
		padding: 16px 18px;
		font-size: 15px;
	}

	.faq-item.is-open .faq-item__answer {
		padding: 0 18px 18px;
	}
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.about__inner {
		grid-template-columns: 1fr;
	}

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

	.split-panel,
	.split-panel--reverse {
		grid-template-columns: 1fr;
		aspect-ratio: auto;
		height: auto;
	}

	.split-panel__media {
		height: 320px;
	}

	.split-panel--reverse .split-panel__media,
	.split-panel--reverse .split-panel__content,
	.split-panel--reverse .split-panel__decor {
		order: initial;
	}

	.split-panel__decor {
		display: none;
	}
}

@media (max-width: 780px) {
	.site-header__inner {
		flex-wrap: wrap;
	}

	.nav-toggle {
		display: flex;
	}

	.site-header__panel {
		flex-basis: 100%;
		display: none;
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
		justify-content: flex-start;
	}

	.site-header__panel.is-open {
		display: flex;
	}

	.primary-nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		padding: 12px 0 0;
	}

	.header-auth__signup,
	.header-auth__login {
		padding: 12px 18px;
		font-size: 14px;
	}

	.hero__title {
		font-size: clamp(1.6rem, 9.5vw, 6.25rem);
	}

	.business-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		padding: 80px 24px;
	}

	.partner-strip__inner {
		justify-content: center;
		text-align: center;
	}

	.split-panel__content {
		padding: 50px 32px;
	}
}

/* ==========================================================================
   News & Notes page — responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.nn-feature {
		flex-direction: column;
	}

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

	.nn-media {
		grid-template-columns: 1fr;
	}

	.nn-form {
		max-width: 100%;
	}
}

@media (max-width: 780px) {
	.nn-hero {
		padding: 90px 24px;
	}

	.nn-weekly {
		padding: 70px 24px;
	}

	.nn-feature__body {
		padding: 36px 32px;
	}

	.nn-news {
		padding: 70px 24px;
	}

	.news-grid {
		grid-template-columns: 1fr;
	}

	.nn-media__content,
	.nn-media__form-wrap {
		padding: 50px 32px;
	}

	.nn-form {
		padding: 28px;
	}

	.nn-form__row {
		flex-direction: column;
	}
}
