/* Reverie Studio — design system */

:root {
	--color-ink: #0B0C10;
	--color-surface: #1B1D22;
	--color-accent: #6E7F5A;
	--color-accent-dark: #4F613A;
	--color-white: #FFFFFF;
	--color-muted: #9EA2B2;
	--color-body: #4A4D55;
	--color-border: #E5E6EA;
	--font-display: 'DM Serif Display', serif;
	--font-body: 'DM Sans', sans-serif;
	--container-width: 1180px;
	--container-width-narrow: 1080px;
	--gutter: 64px;
	--header-height: 88px;

	/* Slower, more deliberate motion than the library's defaults. The library's
	   own easing curve front-loads most of the visible movement into the first
	   fraction of a second (then coasts through a long, barely-visible tail),
	   so a longer duration alone barely reads as slower — the curve and the
	   travel distance both need to open up too. */
	--motion-duration: 1.6s;
	--motion-distance: 48px;
	--motion-ease: cubic-bezier(0.4, 0, 0.2, 1);
	--motion-stagger: 0.22s;
}

* {
	box-sizing: border-box;
}

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

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 400;
	color: var(--color-ink);
	margin: 0;
	line-height: 1.15;
}

p {
	margin: 0;
}

a {
	color: var(--color-accent);
	text-decoration: none;
}

a:hover {
	color: var(--color-accent-dark);
}

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

.container {
	max-width: var(--container-width);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.container--narrow {
	max-width: var(--container-width-narrow);
}

@media (max-width: 780px) {
	:root {
		--gutter: 24px;
	}
}

/* Eyebrow / kicker label */
.kicker {
	font-size: 11px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--color-accent);
	font-weight: 600;
}

/* Rotated side label used inside light/dark sections */
.side-label {
	position: absolute;
	top: 64px;
	left: 30px;
	writing-mode: vertical-rl;
	text-orientation: sideways;
	transform: rotate(180deg);
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(22px, 2.5vw, 35px);
	letter-spacing: 0.04em;
	color: var(--color-ink);
}

.side-label--invert {
	color: var(--color-white);
}

@media (max-width: 780px) {
	.side-label {
		display: none;
	}
}

/* Buttons */
.btn {
	display: inline-block;
	background: var(--color-accent);
	color: var(--color-white);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.5px;
	padding: 14px 28px;
	border-radius: 3px;
	border: none;
	cursor: pointer;
	font-family: var(--font-body);
}

.btn:hover {
	background: var(--color-accent-dark);
	color: var(--color-white);
}

/* Site header — transparent over the hero, solid once scrolled or opened */
.site-header {
	background: transparent;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
	background: var(--color-ink);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.site-header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: var(--header-height);
	padding-block: 26px;
}

.site-main {
	display: block;
	padding-top: var(--header-height);
}

.site-main > .hero:first-child,
.site-main > .home-hero:first-child {
	margin-top: calc( -1 * var(--header-height) );
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 10px;
}

.site-branding__mark {
	width: 10px;
	height: 10px;
	background: var(--color-accent);
	transform: rotate(45deg);
	flex-shrink: 0;
}

.site-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--color-white);
	letter-spacing: 0.4px;
	font-family: var(--font-body);
}

.primary-nav__list {
	display: flex;
	gap: 36px;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-nav__list a {
	font-size: 12px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--color-muted);
	padding-bottom: 3px;
}

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

.primary-nav__list .current-menu-item > a,
.primary-nav__list .current_page_item > a {
	color: var(--color-white);
	border-bottom: 1px solid var(--color-accent);
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--color-white);
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
}

@media (max-width: 780px) {
	.nav-toggle {
		display: block;
	}

	.primary-nav {
		display: none;
		width: 100%;
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
		padding-block: 20px 26px;
	}

	.site-header__inner {
		flex-wrap: wrap;
	}
}

/* Hero */
.hero {
	background: var(--color-ink);
	position: relative;
	text-align: center;
	padding: 96px var(--gutter) 120px;
}

.hero--photo {
	background-size: cover;
	background-position: center;
	min-height: 90vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero--photo::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(11, 12, 16, 0.55);
}

.hero--photo > * {
	position: relative;
}

/* Project story (single project: title/credits + intro/description) */
.project-story {
	background: var(--color-ink);
	padding-block: 110px 55px;
}

.project-story__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
}

.project-story__title {
	font-family: var(--font-body);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	font-size: 18px;
	color: var(--color-white);
	margin-bottom: 10px;
}

.project-story__location {
	font-family: var(--font-body);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	font-size: 14px;
	color: var(--color-muted);
	margin-bottom: 40px;
}

.project-story__credits,
.project-story__body {
	font-size: 14px;
	line-height: 1.8;
	color: var(--color-muted);
}

.project-story__credits p,
.project-story__body p {
	margin: 0 0 14px;
}

.project-story__credits p:last-child,
.project-story__body p:last-child {
	margin-bottom: 0;
}

.project-story__credits strong,
.project-story__body strong {
	color: var(--color-white);
	font-weight: 600;
}

.project-story__body h1,
.project-story__body h2,
.project-story__body h3,
.project-story__body h4 {
	font-family: var(--font-body);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	font-size: 22px;
	line-height: 1.45;
	color: var(--color-white);
	margin-bottom: 20px;
}

@media (max-width: 780px) {
	.project-story__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

/* Full-width project photo gallery (1-4 optional images) */
.project-gallery-full-section {
	background: var(--color-ink);
	padding-block: 40px 80px;
}

.project-gallery-full {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.project-gallery-full__item {
	width: 100%;
	height: auto;
	display: block;
}

.hero__kicker {
	margin-bottom: 24px;
}

.hero__title {
	font-size: 58px;
	line-height: 1.15;
	color: var(--color-white);
	text-wrap: pretty;
	max-width: 820px;
	margin-inline: auto;
}

.hero__subtitle {
	font-size: 16px;
	line-height: 1.7;
	color: var(--color-muted);
	max-width: 560px;
	margin: 24px auto 0;
}

@media (max-width: 780px) {
	.hero__title {
		font-size: 38px;
	}
}

/* Sections */
.section {
	position: relative;
	padding: 110px var(--gutter);
}

.section--tight {
	padding-top: 40px;
}

.section--flush-top {
	padding-top: 0;
}

.section--dark {
	background: var(--color-ink);
}

.section--surface {
	background: var(--color-surface);
}

/* Bleeds content to the right edge of the viewport (sliders/galleries) */
.section--bleed {
	padding-right: 0;
	overflow: hidden;
}

.section__head {
	text-align: center;
	margin-bottom: 64px;
}

.section__head h2 {
	font-size: 42px;
}

.section__head p {
	font-size: 15px;
	color: var(--color-muted);
	margin-top: 12px;
}

.section--dark .section__head h2 {
	color: var(--color-white);
}

@media (max-width: 780px) {
	.section {
		padding: 64px var(--gutter);
	}
}

/* Numbered divider rows (Values / Services lists) */
.numbered-row {
	display: grid;
	grid-template-columns: 90px 1fr 1.6fr;
	gap: 48px;
	padding: 44px 0;
	border-top: 1px solid var(--color-border);
}

.numbered-row:last-child {
	border-bottom: 1px solid var(--color-border);
}

.numbered-row--services {
	grid-template-columns: 90px 1.4fr 1fr;
	padding: 52px 0;
}

.numbered-row__index {
	font-family: var(--font-display);
	font-size: 22px;
	color: var(--color-muted);
}

.numbered-row__title {
	font-size: 26px;
}

.numbered-row--services .numbered-row__title {
	font-size: 30px;
	margin-bottom: 14px;
}

.numbered-row__body {
	font-size: 15px;
	line-height: 1.75;
	color: var(--color-body);
	text-wrap: pretty;
}

.numbered-row__includes {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-top: 8px;
	font-size: 14px;
	color: var(--color-body);
}

@media (max-width: 780px) {
	.numbered-row,
	.numbered-row--services {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}

/* Image placeholder frame */
.image-frame {
	position: relative;
	background: var(--color-surface);
	overflow: hidden;
}

.image-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Project rows */
.project-list {
	display: flex;
	flex-direction: column;
	gap: 110px;
}

.project-row {
	display: flex;
	gap: 72px;
	align-items: center;
}

.project-row--reverse {
	flex-direction: row-reverse;
}

.project-row__media {
	flex: 1.1;
	min-width: 0;
	height: 460px;
}

.project-row--featured .project-row__media {
	flex: 1.2;
	height: 520px;
}

.project-row__body {
	flex: 0.9;
	min-width: 0;
}

.project-row--featured .project-row__body {
	flex: 0.8;
}

.project-row__eyebrow {
	display: flex;
	align-items: baseline;
	gap: 16px;
	margin-bottom: 16px;
}

.project-row__index {
	font-family: var(--font-display);
	font-size: 15px;
	color: var(--color-muted);
}

.project-row__title {
	font-size: 36px;
	margin-bottom: 18px;
}

.project-row--featured .project-row__title {
	font-size: 40px;
	color: var(--color-white);
}

.project-row__desc {
	font-size: 15px;
	line-height: 1.75;
	color: var(--color-body);
	text-wrap: pretty;
}

.project-row--featured .project-row__desc {
	color: var(--color-muted);
}

.project-row__meta {
	border-top: 1px solid var(--color-border);
	margin-top: 26px;
	padding-top: 14px;
	font-size: 13px;
	color: var(--color-muted);
}

.project-row--featured .project-row__meta {
	border-top-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
	.project-row,
	.project-row--reverse {
		flex-direction: column;
	}

	.project-list {
		gap: 56px;
	}
}

/* Cards (engagement models, studio info) */
.card-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.card-dark {
	background: var(--color-surface);
	padding: 48px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.card-dark--featured {
	border-top: 3px solid var(--color-accent);
}

.card-dark__title {
	font-size: 28px;
	color: var(--color-white);
}

.card-dark__body {
	font-size: 14px;
	line-height: 1.75;
	color: var(--color-muted);
	text-wrap: pretty;
}

.card-dark__price {
	font-size: 13px;
	color: var(--color-muted);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 16px;
	margin-top: 6px;
}

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

/* Step columns (Process / What happens next) */
.step-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 56px;
	border-top: 1px solid var(--color-border);
	padding-top: 44px;
}

.step-grid__index {
	font-family: var(--font-display);
	font-size: 22px;
	color: var(--color-muted);
	margin-bottom: 12px;
}

.step-grid__title {
	font-size: 22px;
	margin-bottom: 10px;
}

.step-grid__body {
	font-size: 14px;
	line-height: 1.7;
	color: var(--color-body);
	text-wrap: pretty;
}

@media (max-width: 780px) {
	.step-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* Contact form */
.contact-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 56px;
	align-items: start;
}

.contact-form {
	border: 1px solid var(--color-border);
	padding: 52px;
}

.contact-form__title {
	font-size: 30px;
	margin-bottom: 8px;
}

.contact-form__intro {
	font-size: 14px;
	color: var(--color-muted);
	margin-bottom: 36px;
}

.contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}

.field-input,
.field-textarea {
	border: none;
	border-bottom: 1px solid var(--color-border);
	padding: 12px 2px;
	font-size: 14px;
	font-family: var(--font-body);
	color: var(--color-ink);
	outline: none;
	background: transparent;
	width: 100%;
}

.field-textarea {
	resize: vertical;
	margin-top: 22px;
}

.contact-form__actions {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 36px;
}

.contact-form__note {
	font-size: 13px;
	color: var(--color-muted);
}

.contact-form__status {
	font-size: 14px;
	padding: 14px 18px;
	margin-bottom: 24px;
}

.contact-form__status--success {
	background: rgba(110, 127, 90, 0.12);
	color: var(--color-accent-dark);
}

.contact-form__status--error {
	background: rgba(200, 60, 60, 0.08);
	color: #a83232;
}

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

.studio-info {
	display: flex;
	flex-direction: column;
}

.studio-info__main {
	background: var(--color-ink);
	padding: 44px 40px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.studio-info__title {
	font-size: 26px;
	color: var(--color-white);
}

.studio-info__item {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.studio-info__item .kicker {
	font-size: 11px;
}

.studio-info__item div,
.studio-info__item a {
	font-size: 14px;
	line-height: 1.7;
	color: var(--color-muted);
}

.studio-info__item a {
	color: var(--color-white);
}

.studio-info__item a:hover {
	color: var(--color-muted);
}

.studio-info__social {
	background: var(--color-surface);
	padding: 28px 40px;
	display: flex;
	gap: 12px;
	align-items: center;
}

.studio-info__social .kicker {
	margin-right: auto;
	color: var(--color-muted);
}

/* Social icons */
.social-row {
	display: flex;
	gap: 12px;
}

.social-icon {
	width: 30px;
	height: 30px;
	display: block;
}

/* CTA banner */
.cta-banner {
	background: var(--color-surface);
	padding: 180px var(--gutter);
	text-align: center;
}

.cta-banner__title {
	font-size: 40px;
	color: var(--color-white);
	margin-bottom: 16px;
}

.cta-banner__body {
	font-size: 15px;
	line-height: 1.7;
	color: var(--color-muted);
	max-width: 480px;
	margin: 0 auto 32px;
}

/* Quote */
.quote-banner {
	background: var(--color-ink);
	padding: 130px var(--gutter);
	text-align: center;
}

.quote-banner__text {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 40px;
	line-height: 1.35;
	color: var(--color-white);
	max-width: 820px;
	margin: 0 auto;
	text-wrap: pretty;
}

.quote-banner__attr {
	font-size: 12px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--color-accent);
	font-weight: 600;
	margin-top: 28px;
}

@media (max-width: 780px) {
	.quote-banner__text {
		font-size: 26px;
	}
}

/* Site footer */
.site-footer {
	background: var(--color-ink);
	padding: 64px var(--gutter) 36px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-nav__list {
	display: flex;
	justify-content: center;
	gap: 44px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.footer-nav__list a {
	font-size: 12px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--color-muted);
}

.footer-nav__list a:hover {
	color: var(--color-white);
}

.footer-nav__list .current-menu-item > a,
.footer-nav__list .current_page_item > a {
	color: var(--color-white);
}

.site-footer__bottom {
	max-width: var(--container-width);
	margin: 52px auto 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.site-footer__copy {
	font-size: 12px;
	color: var(--color-muted);
	margin: 0;
}

.footer-widgets {
	max-width: var(--container-width);
	margin: 0 auto;
	padding-top: 32px;
}

/* Home hero (photo background + quote-request card) */
.home-hero {
	position: relative;
	background: var(--color-ink);
	background-size: cover;
	background-position: center;
	color: var(--color-white);
}

.home-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(11, 12, 16, 0.82) 0%, rgba(11, 12, 16, 0.55) 55%, rgba(11, 12, 16, 0.35) 100%);
}

.home-hero__inner {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 48px;
	min-height: calc( 100vh - var(--header-height) );
	padding-block: calc( var(--header-height) + 32px ) 64px;
}

.home-hero__content {
	max-width: 560px;
}

.home-hero__title {
	font-size: clamp(44px, 6vw, 80px);
	line-height: 1.15;
	color: var(--color-white);
	text-wrap: pretty;
}

.home-hero__subtitle {
	font-size: 16px;
	line-height: 1.7;
	color: var(--color-muted);
	margin-top: 18px;
	max-width: 480px;
}

.home-hero-form {
	position: relative;
	background: var(--color-white);
	color: var(--color-ink);
	width: 340px;
	flex-shrink: 0;
	padding: 36px 32px;
}

.home-hero-form__title {
	font-size: 20px;
	margin-bottom: 6px;
}

.home-hero-form__intro {
	font-size: 13px;
	color: var(--color-muted);
	margin-bottom: 22px;
}

.home-hero-form .field-input,
.home-hero-form .field-textarea {
	margin-bottom: 16px;
}

.home-hero-form .btn {
	width: 100%;
	text-align: center;
}

@media (max-width: 900px) {
	.home-hero__inner {
		flex-direction: column;
		align-items: stretch;
		min-height: 0;
	}

	.home-hero-form {
		width: 100%;
		margin-top: 32px;
	}
}

/* Teaser rows (Home / What We Do) */
.teaser-row {
	display: flex;
	gap: 72px;
	align-items: center;
}

.teaser-row--reverse {
	flex-direction: row-reverse;
}

.teaser-row__media {
	flex: 1;
	min-width: 0;
	height: 420px;
}

.teaser-row__body {
	flex: 1;
	min-width: 0;
}

.teaser-row__title {
	font-size: 30px;
	margin: 8px 0 18px;
}

.teaser-row__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 14px;
	color: var(--color-body);
	margin: 0 0 28px;
}

@media (max-width: 900px) {
	.teaser-row,
	.teaser-row--reverse {
		flex-direction: column;
	}
}

/* Home projects gallery (horizontal scroll) */
.project-gallery-wrap {
	position: relative;
}

.project-gallery {
	width: 100%;
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
	padding-bottom: 4px;
}

.project-gallery::-webkit-scrollbar {
	display: none;
}

.project-gallery__item {
	flex: 0 0 260px;
	scroll-snap-align: start;
	color: inherit;
}

.project-gallery__item:hover {
	color: inherit;
}

/* Related projects (single project page): same cards, plain 3-column grid */
.related-projects__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

@media (max-width: 780px) {
	.related-projects__grid {
		grid-template-columns: 1fr;
	}
}

.project-gallery__media {
	height: 340px;
	position: relative;
}

.project-gallery__media img:not(.project-gallery__icon) {
	transition: filter 0.3s ease;
}

.project-gallery__item:hover .project-gallery__media img:not(.project-gallery__icon) {
	filter: brightness(0.7);
}

.project-gallery__media .project-gallery__icon {
	position: absolute;
	right: 14px;
	bottom: 14px;
	width: 34px;
	height: 34px;
	transition: transform 0.3s ease;
}

.project-gallery__item:hover .project-gallery__media .project-gallery__icon {
	transform: translateY(-20px);
}

.project-gallery__caption {
	margin-top: 14px;
	font-size: 14px;
	color: var(--color-white);
}

.project-gallery__btn {
	position: absolute;
	top: 50%;
	width: 60px;
	height: 60px;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	display: block;
	z-index: 2;
}

.project-gallery__btn--prev {
	left: 0;
	transform: translate(-50%, -50%);
}

.project-gallery__btn--next {
	right: 0;
	transform: translate(50%, -50%);
}

.project-gallery__btn img {
	width: 100%;
	height: 100%;
	display: block;
}

@media (max-width: 780px) {
	.project-gallery__item {
		flex-basis: 200px;
	}

	.project-gallery__media {
		height: 260px;
	}

	.project-gallery__btn {
		width: 44px;
		height: 44px;
	}
}

/* Testimonials */
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
}

.testimonial {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.testimonial__quote {
	font-size: 15px;
	line-height: 1.75;
	color: var(--color-body);
	text-wrap: pretty;
}

.testimonial__author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.testimonial__avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--color-ink);
	color: var(--color-white);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 600;
}

.testimonial__name {
	font-size: 14px;
	color: var(--color-ink);
	font-weight: 600;
	font-family: var(--font-body);
}

.testimonial__role {
	font-size: 12px;
	color: var(--color-muted);
}

@media (max-width: 780px) {
	.testimonial-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}

/* FAQ */
.faq-list {
	max-width: var(--container-width-narrow);
	margin: 0 auto;
}

.faq-item {
	border-top: 1px solid var(--color-border);
	padding: 28px 0;
}

.faq-item:last-child {
	border-bottom: 1px solid var(--color-border);
}

.faq-item__q {
	font-size: 17px;
	color: var(--color-ink);
	font-weight: 600;
	font-family: var(--font-body);
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.faq-item__q::-webkit-details-marker {
	display: none;
}

.faq-item__q::after {
	content: '+';
	flex-shrink: 0;
	font-size: 20px;
	font-weight: 400;
	color: var(--color-accent);
}

.faq-item[open] .faq-item__q::after {
	content: '−';
}

.faq-item__a {
	font-size: 14px;
	line-height: 1.7;
	color: var(--color-body);
	margin-top: 10px;
}

.section--dark .faq-item {
	border-top-color: rgba(255, 255, 255, 0.1);
}

.section--dark .faq-item:last-child {
	border-bottom-color: rgba(255, 255, 255, 0.1);
}

.section--dark .faq-item__q {
	color: var(--color-white);
}

.section--dark .faq-item__a {
	color: var(--color-muted);
}

.section--dark .step-grid {
	border-top-color: rgba(255, 255, 255, 0.1);
}

.section--dark .step-grid__title {
	color: var(--color-white);
}

.section--dark .step-grid__body {
	color: var(--color-muted);
}

/* Generic page template (non-designed pages) */
.page-content {
	padding-block: 4rem;
}

.page-title {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

/* Post grid (blog fallback) */
.post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
}

.post-card__thumb img {
	width: 100%;
	height: auto;
}

.post-card__title {
	font-size: 1.15rem;
	margin: 0.75rem 0 0.25rem;
}

.post-card__meta {
	color: var(--color-muted);
	font-size: 0.85rem;
}
