/* ========================================
   CBD大学 - Premium Design
======================================== */

/* ========================================
   SWELL Theme Overrides - Full Width
======================================== */
html.home,
body.home {
	overflow-x: clip !important;
}

body.home .l-content,
body.home .l-content__inner,
body.home .l-content__main,
body.home .l-content__body,
body.home .l-mainContent,
body.home .post_content,
body.home .c-postContent,
body.home article,
body.home [class*="l-"] {
	max-width: 100% !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

body.home .l-sidebar,
body.home .l-content__side {
	display: none !important;
}

body.home .l-content__inner {
	display: block !important;
}

body.home .l-content__main {
	flex: 0 0 100% !important;
	max-width: 100% !important;
}

body.home .c-breadcrumb,
body.home .p-breadcrumb {
	display: none !important;
}

/* ========================================
   CSS Variables — Premium / Luxury
======================================== */
:root {
	--white: #ffffff;
	--cream: #faf7f2;
	--cream-dark: #f0ebe2;
	--bg-dark: #0b1a14;
	--bg-dark-alt: #122620;
	--bg-dark-card: #19302a;
	--primary: #1c3d34;
	--primary-light: #2d5a4e;
	--accent: #c4a265;
	--accent-dark: #a68a4b;
	--accent-light: rgba(196, 162, 101, 0.15);
	--gold-gradient: linear-gradient(135deg, #c4a265 0%, #e0c88a 50%, #c4a265 100%);
	--gray-100: #f1f5f9;
	--gray-200: #e2e8f0;
	--gray-300: #cbd5e1;
	--gray-400: #94a3b8;
	--gray-500: #64748b;
	--gray-600: #475569;
	--gray-700: #334155;
	--gray-800: #1e293b;
	--text-on-dark: #e8e2d8;
	--text-muted-dark: rgba(232, 226, 216, 0.6);
	--font-sans: "Noto Sans JP", "Hiragino Sans", sans-serif;
	--font-serif: "Noto Serif JP", "Georgia", serif;
	--font-display: "Cormorant Garamond", "Noto Serif JP", serif;
}

.front-page {
	width: 100vw !important;
	max-width: 100vw !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	overflow-x: clip !important;
	font-family: var(--font-sans);
	font-weight: 400;
	line-height: 1.8;
	color: var(--gray-800);
}

.front-page a { text-decoration: none; color: inherit; }
.front-page img { max-width: 100%; height: auto; }

/* ========================================
   Hero — Full Screen, Dark, Cinematic
======================================== */
.hero {
	background: var(--bg-dark);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 120px 24px;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 50% 40%, rgba(196, 162, 101, 0.06) 0%, transparent 70%),
		radial-gradient(ellipse 60% 80% at 20% 80%, rgba(26, 46, 40, 0.4) 0%, transparent 60%);
	pointer-events: none;
}

.hero::after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 80px;
	background: linear-gradient(to bottom, transparent, var(--accent));
	opacity: 0.4;
}

.hero__inner {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero__label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.2em;
	color: var(--accent);
	text-transform: uppercase;
	margin-bottom: 32px;
}

.hero__label::before,
.hero__label::after {
	content: '';
	width: 40px;
	height: 1px;
	background: var(--accent);
	opacity: 0.5;
}

.hero__title {
	font-family: var(--font-serif);
	font-size: 46px;
	font-weight: 600;
	line-height: 1.5;
	color: var(--white);
	margin-bottom: 24px;
	letter-spacing: 0.04em;
}

.hero__desc {
	font-size: 15px;
	font-weight: 300;
	line-height: 2;
	color: var(--text-muted-dark);
	margin-bottom: 48px;
	letter-spacing: 0.02em;
}

.hero__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 36px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.06em;
	border-radius: 0;
	transition: all 0.3s ease;
}

.hero__btn--primary {
	background: var(--accent);
	color: var(--bg-dark);
}

.hero__btn--primary:hover {
	background: #d4b275;
	box-shadow: 0 8px 32px rgba(196, 162, 101, 0.25);
}

.hero__btn--secondary {
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero__btn--secondary:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.5);
	color: #ffffff !important;
}

.hero__btn svg { width: 16px; height: 16px; }

.hero__features {
	display: flex;
	justify-content: center;
	gap: 48px;
	margin-top: 80px;
	padding-top: 48px;
	border-top: 1px solid rgba(196, 162, 101, 0.1);
}

.hero__feature { text-align: center; color: var(--text-muted-dark); }

.hero__feature-icon {
	width: 44px;
	height: 44px;
	margin: 0 auto 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	opacity: 0.7;
}

.hero__feature-icon svg { width: 22px; height: 22px; }
.hero__feature-text { font-size: 12px; letter-spacing: 0.04em; }

@media (max-width: 900px) {
	.hero { min-height: auto; padding: 100px 24px; }
	.hero__title { font-size: 32px; }
	.hero__features { gap: 24px; flex-wrap: wrap; }
}

@media (max-width: 600px) {
	.hero { padding: 80px 20px; }
	.hero__title { font-size: 26px; }
	.hero__btns { flex-direction: column; }
	.hero__btn { justify-content: center; }
	.hero__features { gap: 20px; }
}

/* ========================================
   Section Common — Premium
======================================== */
.section { padding: 100px 24px; }

.section--cream { background: var(--cream); }

.section--dark {
	background: var(--bg-dark);
	color: var(--text-on-dark);
}

.section--dark-alt {
	background: var(--bg-dark-alt);
	color: var(--text-on-dark);
}

.section__inner { max-width: 1100px; margin: 0 auto; }
.section__header { margin-bottom: 56px; }
.section__header--center { text-align: center; }

.section__label {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 400;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	margin-bottom: 12px;
}

.section--dark .section__label,
.section--dark-alt .section__label { color: var(--accent); }

.section__title {
	font-family: var(--font-serif);
	font-size: 30px;
	font-weight: 600;
	color: var(--gray-800);
	margin-bottom: 12px;
	letter-spacing: 0.04em;
}

.section--dark .section__title,
.section--dark-alt .section__title { color: var(--white); }

.section__subtitle {
	font-size: 14px;
	font-weight: 300;
	color: var(--gray-500);
	letter-spacing: 0.02em;
}

.section--dark .section__subtitle,
.section--dark-alt .section__subtitle { color: rgba(255, 255, 255, 0.85); }

.section__divider {
	width: 40px;
	height: 1px;
	background: var(--accent);
	margin: 16px auto 0;
}

@media (max-width: 600px) {
	.section { padding: 72px 20px; }
	.section__title { font-size: 24px; }
}

/* ========================================
   Intro Numbers — Dark
======================================== */
.intro__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(196, 162, 101, 0.1);
	border: 1px solid rgba(196, 162, 101, 0.1);
}

.intro__item {
	text-align: center;
	padding: 40px 20px;
	background: var(--bg-dark);
}

.intro__icon {
	width: 40px;
	height: 40px;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	opacity: 0.6;
}

.intro__icon svg { width: 22px; height: 22px; }

.intro__num {
	font-family: var(--font-display);
	font-size: 40px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 4px;
	letter-spacing: 0.02em;
}

.intro__text {
	font-size: 12px;
	color: var(--text-muted-dark);
	font-weight: 400;
	letter-spacing: 0.06em;
}

@media (max-width: 900px) { .intro__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .intro__item { padding: 28px 12px; } .intro__num { font-size: 32px; } }

/* ========================================
   Ranking — Premium Cards
======================================== */
.ranking__list { display: flex; flex-direction: column; gap: 20px; }

.ranking__item {
	background: var(--white);
	border: 1px solid var(--gray-200);
	padding: 32px 36px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 28px;
	align-items: center;
	transition: all 0.3s ease;
}

.ranking__item:hover {
	border-color: var(--accent);
	box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.ranking__item--featured {
	border: 1px solid var(--accent);
	background: linear-gradient(135deg, #ffffff 0%, #fdfaf5 100%);
	position: relative;
}

.ranking__item--featured::before {
	content: 'RECOMMENDED';
	position: absolute;
	top: -12px;
	left: 32px;
	background: var(--accent);
	color: var(--bg-dark);
	font-family: var(--font-display);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.15em;
	padding: 4px 16px;
}

.ranking__rank {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 600;
}

.ranking__rank--1 { color: var(--accent); border: 2px solid var(--accent); }
.ranking__rank--2 { color: var(--gray-400); border: 2px solid var(--gray-300); }
.ranking__rank--3 { color: #b8805a; border: 2px solid #d4a574; }
.ranking__rank--4,
.ranking__rank--5 { color: var(--gray-400); border: 1px solid var(--gray-200); }

.ranking__info { min-width: 0; }

.ranking__badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.06em;
	padding: 4px 12px;
	background: var(--accent-light);
	color: var(--accent-dark);
	margin-bottom: 8px;
}

.ranking__name {
	font-family: var(--font-serif);
	font-size: 20px;
	font-weight: 600;
	color: var(--gray-800);
	margin-bottom: 6px;
}

.ranking__desc { font-size: 13px; color: var(--gray-500); margin-bottom: 14px; font-weight: 300; }
.ranking__features { display: flex; gap: 20px; flex-wrap: wrap; }

.ranking__feature {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--gray-600);
	letter-spacing: 0.02em;
}

.ranking__feature svg { width: 14px; height: 14px; color: var(--accent); }

.ranking__actions { display: flex; flex-direction: column; gap: 8px; }

.ranking__action {
	display: block;
	padding: 14px 32px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	white-space: nowrap;
	transition: all 0.3s ease;
	text-align: center;
	text-decoration: none !important;
}

.ranking__action--detail {
	background: var(--bg-dark) !important;
	color: var(--text-on-dark) !important;
}

.ranking__action--detail:hover {
	background: var(--primary) !important;
}

.ranking__action--official {
	background: var(--accent) !important;
	color: var(--bg-dark) !important;
}

.ranking__action--official:hover {
	background: #d4b275 !important;
}

.ranking__more { text-align: center; margin-top: 48px; }

.ranking__more-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 36px;
	border: 1px solid var(--gray-300);
	color: var(--gray-600);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	transition: all 0.3s ease;
}

.ranking__more-btn:hover { border-color: var(--accent); color: var(--accent); }
.ranking__more-btn svg { width: 16px; height: 16px; }

@media (max-width: 768px) {
	.ranking__item { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
	.ranking__rank { width: 40px; height: 40px; font-size: 20px; }
	.ranking__actions { flex-direction: row; width: 100%; }
	.ranking__action { flex: 1; padding: 12px 16px; }
}

/* ========================================
   Use Cases — White Background
======================================== */
.usecases__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.usecase__card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	padding: 36px 28px;
	text-align: center;
	transition: all 0.3s ease;
}

.usecase__card:hover {
	border-color: var(--accent);
	box-shadow: 0 12px 40px rgba(0,0,0,0.06);
	transform: translateY(-4px);
}

.usecase__icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
}

.usecase__icon svg { width: 28px; height: 28px; }

.usecase__title {
	font-family: var(--font-serif);
	font-size: 16px;
	font-weight: 600;
	color: var(--gray-800);
	margin-bottom: 10px;
	letter-spacing: 0.04em;
}

.usecase__text { font-size: 13px; color: var(--gray-500); line-height: 1.7; font-weight: 300; }

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

/* ========================================
   Categories — Dark
======================================== */
.categories__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(196, 162, 101, 0.1);
}

.category__card {
	background: var(--bg-dark-alt);
	padding: 28px 24px;
	display: flex;
	align-items: center;
	gap: 16px;
	transition: all 0.3s ease;
}

.category__card:hover { background: var(--bg-dark-card); }

.category__icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	opacity: 0.7;
	flex-shrink: 0;
}

.category__icon svg { width: 22px; height: 22px; }
.category__body { flex: 1; min-width: 0; }

.category__name {
	font-family: var(--font-serif);
	font-size: 15px;
	font-weight: 500;
	color: var(--text-on-dark);
	margin-bottom: 2px;
}

.category__count { font-size: 11px; color: var(--text-muted-dark); letter-spacing: 0.04em; }

.category__arrow { color: rgba(196, 162, 101, 0.3); transition: all 0.3s ease; }
.category__card:hover .category__arrow { color: var(--accent); transform: translateX(4px); }
.category__arrow svg { width: 18px; height: 18px; }

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

/* ========================================
   Knowledge — Dark Alt
======================================== */
.knowledge__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	position: relative;
}

.knowledge__grid::before {
	content: '';
	position: absolute;
	top: 28px;
	left: 80px;
	right: 80px;
	height: 1px;
	background: var(--accent);
	opacity: 0.15;
	z-index: 0;
}

.knowledge__item { text-align: center; position: relative; z-index: 1; }

.knowledge__num {
	width: 56px;
	height: 56px;
	border: 1px solid var(--accent);
	color: var(--accent);
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	background: var(--bg-dark-alt);
}

.knowledge__title {
	font-family: var(--font-serif);
	font-size: 16px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 12px;
	letter-spacing: 0.04em;
}

.knowledge__text { font-size: 13px; color: var(--text-muted-dark); line-height: 1.7; font-weight: 400; }

@media (max-width: 900px) { .knowledge__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; } .knowledge__grid::before { display: none; } }
@media (max-width: 600px) { .knowledge__grid { grid-template-columns: 1fr; } }

/* ========================================
   Popular Articles — Dark
======================================== */
.popular__grid { width: 100%; }

.popular__cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(196, 162, 101, 0.08);
}

.popular__card {
	background: var(--bg-dark-alt);
	overflow: hidden;
	transition: all 0.3s ease;
	position: relative;
	display: block;
}

.popular__card:hover { background: var(--bg-dark-card); }

.popular__card-rank {
	position: absolute;
	top: 12px;
	left: 12px;
	width: 28px;
	height: 28px;
	background: var(--bg-dark);
	border: 1px solid rgba(196, 162, 101, 0.3);
	color: var(--accent);
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.popular__card:nth-child(1) .popular__card-rank { border-color: var(--accent); }

.popular__card-thumb {
	aspect-ratio: 16/10;
	background: var(--bg-dark);
	position: relative;
	overflow: hidden;
}

.popular__card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
}

.popular__card-body { padding: 20px; }

.popular__card-cat {
	display: inline-block;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.08em;
	padding: 3px 10px;
	border: 1px solid rgba(196, 162, 101, 0.25);
	color: var(--accent);
	margin-bottom: 10px;
}

.popular__card-title {
	font-family: var(--font-serif);
	font-size: 14px;
	font-weight: 500;
	color: var(--text-on-dark);
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (max-width: 900px) { .popular__cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) {
	.popular__card-body { padding: 14px; }
	.popular__card-title { font-size: 13px; }
}

/* ========================================
   Articles (Latest) — Cream
======================================== */
.articles__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }

.articles__more {
	font-size: 13px;
	font-weight: 500;
	color: var(--accent-dark);
	display: flex;
	align-items: center;
	gap: 8px;
	letter-spacing: 0.04em;
}

.articles__more svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.articles__more:hover svg { transform: translateX(4px); }

.articles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.article__card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	overflow: hidden;
	transition: all 0.3s ease;
}

.article__card:hover {
	border-color: var(--accent);
	box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.article__thumb {
	aspect-ratio: 16/9;
	background: var(--gray-200);
	position: relative;
	overflow: hidden;
}

.article__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.article__card:hover .article__thumb img {
	transform: scale(1.05);
}

.article__body { padding: 24px; }

.article__cat {
	display: inline-block;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.08em;
	padding: 4px 12px;
	background: var(--accent-light);
	color: var(--accent-dark);
	margin-bottom: 12px;
}

.article__title {
	font-family: var(--font-serif);
	font-size: 15px;
	font-weight: 600;
	color: var(--gray-800);
	line-height: 1.7;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.article__date { font-size: 12px; color: var(--gray-400); margin-top: 14px; letter-spacing: 0.04em; }

@media (max-width: 900px) { .articles__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 600px) {
	.articles__header { flex-direction: column; align-items: flex-start; gap: 12px; }
	.articles__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.article__body { padding: 16px; }
	.article__title { font-size: 13px; }
}

/* ========================================
   FAQ
======================================== */
.faq__inner { max-width: 760px; margin: 0 auto; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }

.faq__item {
	background: var(--white);
	border: 1px solid var(--gray-200);
	overflow: hidden;
	transition: border-color 0.3s ease;
}

.faq__item:hover,
.faq__item.is-open { border-color: var(--accent); }

.faq__question {
	width: 100%;
	padding: 24px 28px;
	font-family: var(--font-serif);
	font-size: 15px;
	font-weight: 600;
	color: var(--gray-800);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: transparent;
	border: none;
	text-align: left;
	letter-spacing: 0.02em;
}

.faq__icon {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
	color: var(--gray-400);
}

.faq__item.is-open .faq__icon { color: var(--accent); transform: rotate(180deg); }
.faq__icon svg { width: 18px; height: 18px; }

.faq__answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.faq__item.is-open .faq__answer { grid-template-rows: 1fr; }
.faq__answer-inner { overflow: hidden; }
.faq__answer-inner p { padding: 0 28px 24px; font-size: 14px; line-height: 1.9; color: var(--gray-600); font-weight: 300; }

/* ========================================
   CTA — Dark with Gold
======================================== */
.cta {
	background: var(--bg-dark);
	padding: 120px 24px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(196, 162, 101, 0.04) 0%, transparent 70%);
	pointer-events: none;
}

.cta__inner { max-width: 600px; margin: 0 auto; position: relative; }

.cta__label {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 13px;
	color: var(--accent);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.cta__title {
	font-family: var(--font-serif);
	font-size: 30px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 16px;
	letter-spacing: 0.04em;
}

.cta__desc {
	font-size: 14px;
	font-weight: 300;
	color: var(--text-muted-dark);
	margin-bottom: 48px;
	letter-spacing: 0.02em;
}

.cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 48px;
	background: var(--accent);
	color: var(--bg-dark);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.08em;
	transition: all 0.3s ease;
}

.cta__btn:hover {
	background: #d4b275;
	box-shadow: 0 8px 40px rgba(196, 162, 101, 0.3);
}

.cta__btn svg { width: 18px; height: 18px; }

@media (max-width: 600px) {
	.cta { padding: 80px 20px; }
	.cta__title { font-size: 24px; }
}

/* ========================================
   Scroll Animations
======================================== */
.js-reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ========================================
   Reduced Motion
======================================== */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	.js-reveal { opacity: 1; transform: none; }
}

/* ========================================
   Screen Reader Only
======================================== */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
