/* =========================================================
   AIO Salon — Main stylesheet
   Brand:
     Primary (SLC)  : #ff3f00  (accent / CTA)
     Secondary (AIO): #1a73e8  (tech / trust)
     Ink            : #0a0a0a
     Paper          : #ffffff
   ========================================================= */

:root {
	--c-primary: #2563eb;           /* trustworthy blue */
	--c-primary-600: #1d4ed8;
	--c-primary-50: #eff6ff;
	--c-accent: #f59e0b;             /* warm accent, used sparingly */
	--c-success: #059669;
	--c-ink: #1f2937;                /* calm dark gray */
	--c-ink-2: #374151;
	--c-gray-900: #111827;
	--c-gray-700: #4b5563;
	--c-gray-500: #6b7280;
	--c-gray-300: #d1d5db;
	--c-gray-200: #e5e7eb;
	--c-gray-100: #f3f4f6;
	--c-gray-50: #f9fafb;
	--c-paper: #ffffff;
	--c-bg-soft: #f9fafb;
	/* legacy aliases — keep for existing selectors */
	--c-secondary: #2563eb;
	--c-bg-dark: #f9fafb;
	--c-cream: #f9fafb;
	--c-peach: #eff6ff;

	--radius: 14px;
	--radius-lg: 22px;
	--shadow-sm: 0 2px 8px rgba(0,0,0,.06);
	--shadow-md: 0 10px 30px rgba(0,0,0,.10);
	--shadow-lg: 0 24px 60px rgba(0,0,0,.18);

	--f-sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
	--f-display: "Space Grotesk", "Noto Sans JP", sans-serif;

	--wrap: 1180px;
	--wrap-narrow: 860px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--f-sans);
	color: var(--c-ink);
	background: var(--c-paper);
	line-height: 1.75;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s, color .2s; }
a:hover { opacity: .75; }
button { font: inherit; cursor: pointer; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; line-height: 1.35; font-weight: 700; letter-spacing: .01em; }
p { margin: 0 0 1em; }

.screen-reader-text {
	clip: rect(1px,1px,1px,1px);
	position: absolute !important;
	height: 1px; width: 1px; overflow: hidden;
}
.skip-link:focus {
	clip: auto; height: auto; width: auto;
	background: #fff; color: #000; padding: 10px 16px; z-index: 9999;
	top: 8px; left: 8px; position: fixed;
}

.sp-br { display: none; }
@media (max-width: 720px) { .sp-br { display: inline; } }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--wrap-narrow); }

.section {
	padding: clamp(64px, 10vw, 120px) 0;
	position: relative;
}
.section__head { margin-bottom: 56px; }
.section__head--center { text-align: center; }
.section__eyebrow {
	font-family: var(--f-display);
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--c-primary);
	font-weight: 600;
	font-size: 12px;
	margin: 0 0 14px;
}
.section__title {
	font-family: var(--f-display), var(--f-sans);
	font-size: clamp(28px, 4.2vw, 44px);
	line-height: 1.3;
	font-weight: 900;
	letter-spacing: .01em;
	margin: 0 0 16px;
}
.section__title--light { color: #fff; }
.section__lead { color: var(--c-gray-700); font-size: 16px; margin: 0; }
.section__lead--light { color: rgba(255,255,255,.82); }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5em;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	border: 2px solid transparent;
	transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s;
	white-space: nowrap;
}
.btn--lg { padding: 18px 36px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--primary {
	background: var(--c-primary);
	color: #fff;
	box-shadow: 0 4px 12px rgba(37,99,235,.22);
}
.btn--primary:hover { background: var(--c-primary-600); opacity: 1; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(37,99,235,.28); }
.btn--ghost {
	background: transparent;
	color: var(--c-ink);
	border-color: var(--c-ink);
}
.btn--ghost:hover { background: var(--c-ink); color: #fff; opacity: 1; }
.btn--outline {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,.6);
}
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.08); opacity: 1; }

/* ---------- Announcement bar ---------- */
.announce-bar {
	background: var(--c-primary-50);
	color: var(--c-ink);
	font-size: 13px;
	border-bottom: 1px solid #dbeafe;
}
.announce-bar__inner {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	text-align: center;
}
.announce-bar__tag {
	background: var(--c-primary);
	color: #fff;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: .08em;
	padding: 3px 10px;
	border-radius: 4px;
}
.announce-bar__text strong { color: var(--c-primary); font-size: 14px; }
.announce-bar__link { color: var(--c-primary); text-decoration: underline; font-weight: 600; }
@media (max-width: 600px) {
	.announce-bar__inner { gap: 8px; padding: 8px 14px; font-size: 12px; }
	.announce-bar__text strong { font-size: 14px; }
}

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255,255,255,.86);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid rgba(0,0,0,.06);
}
.site-header__inner {
	position: relative;
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	gap: 24px;
}
.site-branding { flex: 0 0 auto; }
.site-title {
	font-family: var(--f-display);
	font-weight: 700;
	font-size: 22px;
	letter-spacing: .01em;
	display: inline-flex;
	align-items: baseline;
}
.site-title__mark { color: var(--c-primary); }
.site-title__sub { color: var(--c-ink); }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.site-nav__list { display: flex; gap: 26px; align-items: center; }
.site-nav__list a { font-weight: 500; font-size: 14px; }
.site-nav__cta { padding: 10px 20px; font-size: 14px; }

.nav-toggle {
	display: none;
	margin-left: auto;
	background: transparent;
	border: 0;
	width: 40px; height: 40px;
	padding: 0;
	position: relative;
}
.nav-toggle span {
	display: block;
	width: 24px; height: 2px;
	background: var(--c-ink);
	margin: 5px auto;
	transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
	.nav-toggle { display: block; order: 2; }
	/* ヘッダー右上のCTAボタンは完全に非表示 */
	.site-nav__cta--desktop { display: none !important; }

	/* モバイルナビは既定で完全非表示 */
	.site-nav {
		display: none;
		position: absolute;
		top: 100%; left: 0; right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: #fff;
		padding: 12px 20px 20px;
		border-bottom: 1px solid rgba(0,0,0,.08);
		box-shadow: 0 8px 16px rgba(0,0,0,.06);
	}
	/* ハンバーガータップ時のみ展開 */
	.site-nav.is-open {
		display: flex;
	}
	.site-nav__list { flex-direction: column; gap: 0; }
	.site-nav__list li { border-bottom: 1px solid rgba(0,0,0,.06); }
	.site-nav__list a { display: block; padding: 14px 4px; font-size: 16px; }
	.site-nav__cta {
		margin-top: 16px;
		display: block;
		text-align: center;
	}
}

/* ---------- Hero (background video) ---------- */
.hero {
	position: relative;
	padding: clamp(80px, 14vw, 140px) 0 clamp(72px, 11vw, 112px);
	color: #fff;
	overflow: hidden;
	/* Gradient fallback: 動画が読めない/アップ漏れ時もブルーグラデで安全表示 */
	background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #0ea5e9 100%);
	min-height: 620px;
	display: flex;
	align-items: center;
}
.hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}
.hero__bg-video {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}
.hero__bg-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(17,24,39,.55) 0%, rgba(17,24,39,.35) 45%, rgba(37,99,235,.55) 100%);
	z-index: 1;
}
.hero__inner { position: relative; z-index: 2; text-align: center; width: 100%; }

/* (consolidated into .hero__inner above) */

/* Text tweaks for contrast on video */
.hero__badge {
	background: rgba(255,255,255,.95);
	border-color: rgba(255,255,255,.95);
	color: var(--c-primary);
	box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.hero__title { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero__title em { color: #ffd74a; } /* warm highlight on dark bg */
.hero__title-line--sub { color: rgba(255,255,255,.92); }
.hero__lead { color: rgba(255,255,255,.94); text-shadow: 0 1px 12px rgba(0,0,0,.35); }

.hero__stats li {
	background: rgba(255,255,255,.14);
	border: 1px solid rgba(255,255,255,.28);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.hero__stats strong { color: #ffd74a; }
.hero__stats span { color: rgba(255,255,255,.92); }

/* Ghost button tuned for dark/video background */
.btn--ghost-on-dark {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255,255,255,.85);
}
.btn--ghost-on-dark:hover {
	background: #fff;
	color: var(--c-ink);
	opacity: 1;
	border-color: #fff;
}

/* Respect users who prefer reduced motion — hide video, show gradient only */
@media (prefers-reduced-motion: reduce) {
	.hero__bg-video { display: none; }
	.hero__bg-overlay {
		background: linear-gradient(135deg, #1d4ed8, #2563eb 60%, #0ea5e9);
	}
}
/* shared hero typography (color is set above by background-video block) */
.hero__title {
	font-family: var(--f-sans);
	font-size: clamp(30px, 5.6vw, 52px);
	line-height: 1.35;
	font-weight: 700;
	letter-spacing: .01em;
	margin: 0 0 24px;
}
.hero__title-line { display: block; }
.hero__title-line--sub { font-size: .5em; font-weight: 500; margin-top: 18px; line-height: 1.7; }
.hero__lead { font-size: clamp(14px, 1.6vw, 16px); max-width: 620px; margin: 0 auto 36px; line-height: 1.9; }
.hero__ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 680px;
	margin: 0 auto;
	padding: 0;
}
.hero__stats li {
	padding: 24px 14px;
	border-radius: var(--radius);
}
.hero__stats strong {
	display: block;
	font-size: clamp(18px, 2.6vw, 22px);
	margin-bottom: 6px;
	font-weight: 700;
}
.hero__stats span { font-size: 12px; }

@media (max-width: 480px) {
	.hero { padding: 60px 0 72px; }
	.hero__badge { font-size: 11px; padding: 6px 12px; letter-spacing: .04em; }
	.hero__ctas { flex-direction: column; align-items: stretch; }
	.hero__ctas .btn { width: 100%; }
	.hero__stats { grid-template-columns: 1fr; gap: 10px; }
	.hero__stats li { padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; text-align: left; }
	.hero__stats strong { margin: 0; }
}

/* ---------- Mission / Philosophy ---------- */
.section--mission {
	background: var(--c-paper);
	text-align: center;
}
.mission__statement {
	font-size: clamp(28px, 4.4vw, 42px);
	line-height: 1.5;
}
.mission__statement em {
	font-style: normal;
	color: var(--c-primary);
	background: linear-gradient(transparent 65%, #fff3c4 65%);
	padding: 0 .1em;
}
.mission__body {
	max-width: 640px;
	margin: 0 auto;
	color: var(--c-gray-700);
	font-size: clamp(15px, 1.6vw, 16px);
	line-height: 2;
}
.mission__body p { margin: 0 0 1.2em; }
.mission__body strong { color: var(--c-primary); font-weight: 700; }

/* ---------- About / partners ---------- */
.section--about { background: var(--c-paper); }
.partners {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 24px;
	align-items: stretch;
}
.partner {
	padding: 36px 32px;
	border: 1px solid rgba(0,0,0,.08);
	border-radius: var(--radius-lg);
	background: #fff;
	box-shadow: var(--shadow-sm);
	display: flex; flex-direction: column;
}
.partner__logo {
	width: 72px; height: 72px;
	border-radius: 18px;
	display: grid; place-items: center;
	font-family: var(--f-display);
	font-weight: 700;
	font-size: 22px;
	letter-spacing: .02em;
	color: #fff;
	margin-bottom: 20px;
}
.partner__logo--slc { background: var(--c-primary); }
.partner__logo--aio { background: #0ea5e9; }
.partner__name { font-size: 22px; margin-bottom: 4px; }
.partner__role { font-size: 13px; color: var(--c-gray-500); margin: 0 0 14px; letter-spacing: .05em; }
.partner__desc { color: var(--c-gray-700); margin: 0 0 18px; flex: 1; }
.partner__link { color: var(--c-secondary); font-weight: 700; font-size: 14px; }
.partners__cross {
	font-family: var(--f-display);
	font-size: 48px;
	font-weight: 700;
	color: var(--c-gray-300);
	align-self: center;
}
@media (max-width: 820px) {
	.partners { grid-template-columns: 1fr; }
	.partners__cross { transform: rotate(90deg); margin: 0 auto; }
}

/* ---------- Features ---------- */
.section--features { background: var(--c-gray-100); }
.features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.feature {
	background: #fff;
	padding: 36px 28px 32px;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(0,0,0,.04);
	box-shadow: var(--shadow-sm);
	transition: transform .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature__num {
	font-family: var(--f-display);
	font-size: 14px;
	letter-spacing: .14em;
	color: var(--c-primary);
	font-weight: 700;
	display: inline-block;
	margin-bottom: 14px;
}
.feature__title { font-size: 20px; margin-bottom: 10px; }
.feature__desc { color: var(--c-gray-700); font-size: 15px; margin: 0; }
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }

/* ---------- Curriculum ---------- */
.section--curriculum { background: #fff; }
.curriculum {
	counter-reset: step;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.curriculum__item {
	background: #fff;
	border: 1px solid var(--c-gray-200);
	border-top: 3px solid var(--c-primary);
	border-radius: 8px;
	padding: 28px 28px 24px;
	box-shadow: var(--shadow-sm);
}
.curriculum__title { font-size: 18px; margin-bottom: 8px; font-family: var(--f-display), var(--f-sans); }
.curriculum__desc { color: var(--c-gray-700); font-size: 14px; margin: 0; }
@media (max-width: 720px) { .curriculum { grid-template-columns: 1fr; } }

/* ---------- Instructors ---------- */
.section--instructors {
	background: var(--c-gray-100);
}
.instructors {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.instructor {
	background: #fff;
	padding: 32px 28px;
	border-radius: var(--radius-lg);
	text-align: center;
	box-shadow: var(--shadow-sm);
}
.instructor__photo {
	width: 112px; height: 112px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: var(--c-primary-50);
	display: grid; place-items: center;
	overflow: hidden;
	color: var(--c-primary);
	border: 3px solid #fff;
	box-shadow: 0 0 0 1px var(--c-gray-200);
}
.instructor__photo img { width: 100%; height: 100%; object-fit: cover; }
.instructor__initial {
	font-family: var(--f-display);
	font-size: 36px;
	font-weight: 700;
}
.instructor__name { font-size: 18px; margin-bottom: 4px; }
.instructor__role { color: var(--c-primary); font-size: 13px; letter-spacing: .06em; margin: 0 0 12px; }
.instructor__bio { color: var(--c-gray-700); font-size: 14px; }
.instructor__bio p { margin: 0; }
@media (max-width: 820px) { .instructors { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

/* ---------- Pricing (single plan) ---------- */
.section--pricing { background: #fff; }
.plan-single { display: flex; justify-content: center; }
.plan-single__card {
	position: relative;
	width: 100%;
	max-width: 520px;
	background: #fff;
	border: 1px solid var(--c-gray-200);
	border-top: 4px solid var(--c-primary);
	border-radius: var(--radius-lg);
	padding: 48px 32px 36px;
	box-shadow: var(--shadow-sm);
	text-align: center;
}
.plan-single__ribbon {
	display: inline-block;
	background: var(--c-primary-50);
	color: var(--c-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	padding: 6px 14px;
	border-radius: 4px;
	white-space: nowrap;
	margin-bottom: 16px;
}
.plan-single__name {
	font-family: var(--f-display);
	font-size: 14px;
	letter-spacing: .16em;
	color: var(--c-primary);
	margin: 0 0 12px;
	font-weight: 700;
}
.plan-single__price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 8px;
	margin: 0 0 8px;
}
.plan-single__price-num {
	font-family: var(--f-display);
	font-size: clamp(42px, 7vw, 56px);
	font-weight: 700;
	color: var(--c-ink);
	letter-spacing: .01em;
}
.plan-single__price-unit {
	color: var(--c-gray-500);
	font-size: 15px;
}
.plan-single__note {
	color: var(--c-gray-500);
	font-size: 13px;
	margin: 0 0 28px;
}
.plan-single__list {
	text-align: left;
	margin: 0 0 32px;
	display: grid;
	gap: 2px;
}
.plan-single__list li {
	position: relative;
	padding: 12px 0 12px 32px;
	border-bottom: 1px dashed rgba(0,0,0,.1);
	font-size: 15px;
	color: var(--c-ink-2);
	line-height: 1.6;
}
.plan-single__list li::before {
	content: "";
	position: absolute;
	left: 0; top: 16px;
	width: 20px; height: 20px;
	background: var(--c-primary);
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M13.3 4.3 6 11.6 2.7 8.3l1.4-1.4L6 8.8l5.9-5.9z'/></svg>") center/contain no-repeat;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M13.3 4.3 6 11.6 2.7 8.3l1.4-1.4L6 8.8l5.9-5.9z'/></svg>") center/contain no-repeat;
}
.plan-single__lock {
	margin: 20px 0 0;
	padding: 14px 16px;
	background: var(--c-primary-50);
	border-left: 3px solid var(--c-primary);
	border-radius: 4px;
	font-size: 13px;
	color: var(--c-ink-2);
	text-align: left;
	line-height: 1.8;
}
.plan-single__lock strong { color: var(--c-primary); font-weight: 700; }
.plan-single__footnote {
	margin: 16px 0 0;
	font-size: 12px;
	color: var(--c-gray-500);
	text-align: left;
	line-height: 1.7;
}

/* ---------- Voices ---------- */
.section--voices { background: var(--c-gray-100); }
.voices {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.voice {
	background: #fff;
	padding: 32px 28px 28px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	position: relative;
}
.voice::before {
	content: "“";
	position: absolute;
	top: 8px; right: 24px;
	font-family: var(--f-display);
	font-size: 72px;
	color: var(--c-primary);
	opacity: .18;
	line-height: 1;
}
.voice__avatar {
	width: 64px; height: 64px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--c-primary-50);
	display: grid; place-items: center;
	color: var(--c-primary);
	margin-bottom: 14px;
	border: 2px solid #fff;
	box-shadow: 0 0 0 1px var(--c-gray-200);
}
.voice__avatar img { width: 100%; height: 100%; object-fit: cover; }
.voice__avatar-initial { font-family: var(--f-display); font-size: 24px; font-weight: 700; }
.voice__quote { font-size: 15px; color: var(--c-ink-2); margin: 0 0 16px; position: relative; z-index: 1; }
.voice__quote p { margin: 0; }
.voice__name { font-size: 13px; color: var(--c-gray-500); margin: 0; }
@media (max-width: 900px) {
	.voices { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

/* ---------- Trust strip ---------- */
.section--trust {
	padding: 36px 0;
	background: #fff;
	border-top: 1px solid rgba(255,106,43,.1);
	border-bottom: 1px solid rgba(255,106,43,.1);
}
.trust {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	text-align: center;
}
.trust__item {
	padding: 10px;
	border-right: 1px dashed rgba(0,0,0,.08);
}
.trust__item:last-child { border-right: 0; }
.trust__num {
	display: block;
	font-family: var(--f-display);
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 700;
	color: var(--c-primary);
	line-height: 1.1;
	margin-bottom: 6px;
}
.trust__label { font-size: 12px; color: var(--c-gray-700); }
@media (max-width: 720px) {
	.trust { grid-template-columns: repeat(2, 1fr); }
	.trust__item:nth-child(2) { border-right: 0; }
	.trust__item { border-bottom: 1px dashed rgba(0,0,0,.08); padding-bottom: 18px; }
	.trust__item:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 10px; }
}

/* ---------- Atmosphere / gallery ---------- */
.section--atmosphere { background: #fff; }
.gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.gallery__item {
	position: relative;
	aspect-ratio: 4/3;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--c-gray-100);
	box-shadow: var(--shadow-sm);
}
.gallery__item img, .gallery__item figure { width: 100%; height: 100%; margin: 0; }
.gallery__item img { object-fit: cover; display: block; }
.gallery__item figure { position: relative; }
.gallery__item figcaption {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	background: linear-gradient(180deg, transparent, rgba(43,33,24,.72));
	color: #fff;
	font-size: 13px;
	padding: 28px 14px 12px;
}
.gallery__placeholder {
	position: absolute; inset: 0;
	display: flex; flex-direction: column;
	align-items: center; justify-content: center;
	gap: 10px;
	background: var(--c-primary-50);
	color: var(--c-primary);
	border: 1px dashed #bfdbfe;
	border-radius: inherit;
}
.gallery__icon { opacity: .7; }
.gallery__label { font-size: 13px; font-weight: 700; color: var(--c-ink); }
.gallery__note { text-align: center; margin-top: 22px; font-size: 12px; color: var(--c-gray-500); }
@media (max-width: 720px) {
	.gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ---------- FAQ ---------- */
.section--faq { background: #fff; }
.faq { display: grid; gap: 14px; }
.faq__item { border: 1px solid rgba(0,0,0,.08); border-radius: 14px; background: #fff; overflow: hidden; }
.faq details[open] { background: #fafafa; }
.faq__q {
	list-style: none;
	cursor: pointer;
	padding: 20px 52px 20px 22px;
	font-weight: 700;
	display: flex; align-items: flex-start; gap: 14px;
	position: relative;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
	content: "+";
	position: absolute;
	right: 22px; top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	color: var(--c-primary);
	transition: transform .2s;
}
details[open] .faq__q::after { content: "−"; }
.faq__q-mark, .faq__a-mark {
	display: inline-flex; align-items: center; justify-content: center;
	width: 26px; height: 26px;
	border-radius: 6px;
	font-family: var(--f-display);
	font-size: 13px;
	flex-shrink: 0;
	margin-top: 1px;
}
.faq__q-mark { background: var(--c-primary); color: #fff; }
.faq__a-mark { background: var(--c-ink); color: #fff; }
.faq__a { padding: 0 22px 22px 22px; display: flex; gap: 14px; align-items: flex-start; color: var(--c-gray-700); }
.faq__a p { margin: 0; }

/* ---------- CTA (calm card design) ---------- */
.section--cta {
	background: var(--c-bg-soft);
	color: var(--c-ink);
	border-top: 1px solid var(--c-gray-200);
}
.section--cta .section__head { margin-bottom: 36px; }
.section--cta .section__title { font-size: clamp(24px, 3.6vw, 34px); }
/* legacy --light modifiers safety */
.section--cta .section__title--light { color: var(--c-ink); }
.section--cta .section__lead--light  { color: var(--c-gray-700); }

.cta__card {
	background: #fff;
	border: 1px solid var(--c-gray-200);
	border-radius: 16px;
	padding: clamp(28px, 4vw, 44px);
	max-width: 520px;
	margin: 0 auto;
	box-shadow: 0 12px 28px -16px rgba(31,41,55,.10), 0 4px 8px -4px rgba(31,41,55,.04);
	text-align: left;
}
.cta__divider {
	display: flex; align-items: center; gap: 14px;
	margin: 24px 0 16px;
	color: var(--c-gray-500);
	font-size: 12px;
}
.cta__divider::before, .cta__divider::after {
	content: ""; flex: 1;
	height: 1px; background: var(--c-gray-200);
}

.cta__note {
	margin: 28px auto 0;
	max-width: 520px;
	text-align: center;
	font-size: 12px;
	color: var(--c-gray-500);
}
.cta__note a { color: var(--c-primary); text-decoration: underline; font-weight: 600; }

/* hide legacy elements if still in DOM */
.cta__bg, .cta__glow { display: none !important; }

/* ---------- Contact form (in card) ---------- */
.contact-form { width: 100%; }
.contact-form__success {
	background: #ecfdf5;
	border-left: 4px solid var(--c-success);
	padding: 18px 22px;
	border-radius: 8px;
	color: #065f46;
}
.contact-form__success strong { display: block; font-size: 16px; margin-bottom: 6px; }
.contact-form__success p { margin: 0; font-size: 14px; }
.contact-form__error {
	background: #fef2f2;
	border-left: 4px solid #dc2626;
	padding: 12px 16px;
	border-radius: 8px;
	color: #991b1b;
	font-size: 14px;
	margin-bottom: 16px;
}
.contact-form__form { display: block; }
.form-row { display: block; margin-bottom: 18px; }
.form-row label {
	display: block;
	font-weight: 700;
	font-size: 14px;
	color: var(--c-ink);
	margin-bottom: 8px;
	line-height: 1.4;
}
.form-row .required {
	display: inline-block;
	margin-left: 6px;
	padding: 2px 6px;
	background: #fef2f2;
	color: #b91c1c;
	font-size: 10px;
	font-weight: 700;
	border-radius: 4px;
	letter-spacing: .04em;
	vertical-align: 1px;
}
.form-row input,
.form-row textarea {
	display: block;
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--c-gray-300);
	border-radius: 8px;
	font: inherit;
	font-size: 15px;
	line-height: 1.6;
	background: #fff;
	color: var(--c-ink);
	transition: border-color .15s, box-shadow .15s;
	box-sizing: border-box;
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row input::placeholder,
.form-row textarea::placeholder { color: #a1a7b2; font-size: 14px; }
.form-row input:focus,
.form-row textarea:focus {
	outline: 0;
	border-color: var(--c-primary);
	box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}
.contact-form__submit {
	margin-top: 8px;
	font-size: 16px;
}
.form-privacy {
	font-size: 12px;
	color: var(--c-gray-500);
	margin: 14px 0 0;
	text-align: center;
	line-height: 1.7;
}
.form-privacy a { color: var(--c-primary); text-decoration: underline; }

/* ---------- Legal pages ---------- */
.section--legal { padding: 72px 0 96px; }
.legal__body { font-size: 15px; line-height: 2; color: var(--c-ink-2); }
.legal__body h2 { font-size: 22px; margin: 36px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--c-gray-200); }
.legal__body h3 { font-size: 17px; margin: 28px 0 8px; color: var(--c-primary); }
.legal__body ul, .legal__body ol { margin: 12px 0 16px 1.5em; }
.legal__body ul li, .legal__body ol li { margin: 4px 0; }
.legal__body p { margin: 0 0 14px; }
.legal__back { margin-top: 48px; text-align: center; }
.legal__back a { color: var(--c-primary); font-weight: 600; }

/* ---------- Page / blog ---------- */
.section--page { padding: 80px 0 120px; }
.post-meta { color: var(--c-gray-500); font-size: 14px; margin-top: 8px; }
.entry-thumb { margin: 24px 0 32px; border-radius: var(--radius); overflow: hidden; }
.entry-content { font-size: 16px; }
.entry-content h2 { font-size: 24px; margin: 36px 0 16px; }
.entry-content h3 { font-size: 20px; margin: 28px 0 12px; }
.entry-content img { border-radius: 10px; margin: 16px 0; }
.entry-content a { color: var(--c-secondary); text-decoration: underline; }

.section--archive .post-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.post-card {
	background: #fff;
	border: 1px solid rgba(0,0,0,.08);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	display: flex; flex-direction: column;
}
.post-card__thumb { display: block; aspect-ratio: 16/9; overflow: hidden; }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 20px 22px 24px; }
.post-card__title { font-size: 17px; margin-bottom: 8px; }
.post-card__meta { color: var(--c-gray-500); font-size: 13px; margin-bottom: 8px; }
.post-card__excerpt { color: var(--c-gray-700); font-size: 14px; }
@media (max-width: 860px) { .section--archive .post-list { grid-template-columns: 1fr; } }

.pagination { margin-top: 40px; display: flex; justify-content: center; }
.pagination .page-numbers {
	display: inline-flex; padding: 8px 14px;
	margin: 0 4px;
	border-radius: 8px;
	border: 1px solid rgba(0,0,0,.1);
}
.pagination .current { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

/* ---------- Footer (light) ---------- */
.site-footer {
	background: #fff8f0;
	color: var(--c-gray-700);
	padding: 72px 0 0;
	border-top: 1px solid rgba(255,106,43,.15);
}
.site-footer__inner {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 24px 56px;
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 40px;
}
.site-footer .site-title { color: var(--c-ink); }
.site-footer__tagline { font-size: 14px; margin: 12px 0 18px; color: var(--c-gray-500); }
.site-footer__partners { font-size: 13px; line-height: 2; color: var(--c-gray-700); }
.site-footer__partners a { color: var(--c-ink); text-decoration: underline; font-weight: 600; }
.site-footer__partners span { margin: 0 8px; color: var(--c-gray-300); }
.site-footer__menu li { margin-bottom: 10px; }
.site-footer__menu a { color: var(--c-gray-700); font-size: 14px; }
.footer-widget__title { color: var(--c-ink); font-size: 14px; margin: 0 0 12px; letter-spacing: .08em; }
.site-footer__bottom {
	border-top: 1px solid rgba(43,33,24,.08);
	padding: 20px 24px;
	text-align: center;
	color: var(--c-gray-500);
	font-size: 12px;
}
@media (max-width: 820px) {
	.site-footer__inner { grid-template-columns: 1fr; gap: 28px; }
}
