/* ============================================================
   M&A Medical – Theme Styles
   --------------------------------------------------------------
   Tokens, base, layout, components, sections.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
	--c-brand-50: #eef5fb;
	--c-brand-100: #d6e7f3;
	--c-brand-200: #aecde8;
	--c-brand-300: #7eaed8;
	--c-brand-400: #4d8ec5;
	--c-brand-500: #2c72ad;
	--c-brand-600: #1f5a8d;
	--c-brand-700: #1b4972;
	--c-brand-800: #173c5d;
	--c-brand-900: #13304a;
	--c-brand-950: #0a1d2e;

	--c-accent: #d4a44a;
	--c-accent-dark: #b8893a;
	--c-line: #06c755;

	--c-bg: #ffffff;
	--c-bg-soft: #f7faff;
	--c-bg-dim: #eef3fa;

	--c-text: #1a2433;
	--c-text-muted: #51607a;
	--c-text-dim: #7d8aa1;
	--c-border: #d8e1ee;

	--shadow-sm: 0 1px 2px rgba(15, 39, 79, 0.06);
	--shadow-md: 0 8px 24px rgba(15, 39, 79, 0.08);
	--shadow-lg: 0 24px 48px rgba(15, 39, 79, 0.12);

	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-full: 999px;

	--container: 1200px;
	--container-narrow: 880px;
	--gutter: clamp(16px, 4vw, 32px);

	--font-sans: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Hiragino Kaku Gothic ProN", sans-serif;
	--font-serif: "Noto Serif JP", "Hiragino Mincho ProN", serif;

	--ease: cubic-bezier(.2,.8,.2,1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
	-webkit-text-size-adjust: 100%;
}
body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.75;
	color: var(--c-text);
	background: var(--c-bg);
	font-feature-settings: "palt" 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--c-brand-600); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--c-brand-700); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { line-height: 1.4; margin: 0; font-weight: 700; letter-spacing: 0.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px,1px,1px,1px);
	width: 1px; height: 1px;
	overflow: hidden;
}
.skip-link {
	position: absolute;
	top: -40px;
	left: 8px;
	background: var(--c-brand-700);
	color: #fff;
	padding: 8px 12px;
	border-radius: 6px;
	z-index: 9999;
}
.skip-link:focus { top: 8px; }

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

.md-only { display: none; }
@media (min-width: 768px) {
	.md-only { display: inline; }
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: var(--radius-full);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.02em;
	border: 2px solid transparent;
	transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
	white-space: nowrap;
	line-height: 1.3;
	text-align: center;
}
.btn small {
	display: block;
	font-size: 11px;
	font-weight: 500;
	margin-top: 2px;
	opacity: 0.85;
}
.btn--lg { padding: 18px 36px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--block { display: flex; width: 100%; }
.btn__icon { display: inline-flex; }

.btn--primary {
	background: linear-gradient(135deg, var(--c-brand-600), var(--c-brand-500));
	color: #fff;
	box-shadow: 0 8px 20px rgba(31, 90, 141, 0.28);
}
.btn--primary:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(31, 90, 141, 0.36);
}

.btn--secondary {
	background: #fff;
	color: var(--c-brand-700);
	border-color: var(--c-brand-200);
	box-shadow: var(--shadow-sm);
}
.btn--secondary:hover {
	color: var(--c-brand-800);
	border-color: var(--c-brand-400);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn--ghost {
	background: transparent;
	color: var(--c-text-muted);
	border-color: var(--c-border);
}
.btn--ghost:hover {
	color: var(--c-text);
	border-color: var(--c-text-dim);
}

.btn--line {
	background: var(--c-line);
	color: #fff;
}
.btn--line:hover { color: #fff; background: #04a647; transform: translateY(-2px); }

.btn[disabled] { opacity: 0.4; cursor: not-allowed; transform: none !important; }

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255,255,255,0.96);
	backdrop-filter: saturate(160%) blur(8px);
	border-bottom: 1px solid var(--c-border);
}
.header-bar {
	background: var(--c-brand-900);
	color: #d6e7f3;
	font-size: 12px;
}
.header-bar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	gap: 16px;
}
.header-bar__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	color: #fff;
}
.header-bar__icon { color: var(--c-accent); }
.header-bar__note { color: #aecde8; }
.header-main__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 14px 0;
}
.site-branding { flex-shrink: 0; }
.site-title-link { display: block; line-height: 1.2; }
.site-title {
	display: block;
	font-family: var(--font-serif);
	font-size: 22px;
	font-weight: 900;
	color: var(--c-brand-800);
	letter-spacing: 0.05em;
}
.site-tagline {
	display: block;
	font-size: 11px;
	color: var(--c-text-muted);
	margin-top: 2px;
}

.primary-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}
.primary-nav__list {
	display: none;
	gap: 22px;
	font-size: 14px;
	font-weight: 500;
}
.primary-nav__list a {
	color: var(--c-text);
	padding: 8px 4px;
	display: inline-block;
	position: relative;
}
.primary-nav__list a:hover {
	color: var(--c-brand-600);
}
.primary-nav__list a::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: -2px;
	height: 2px;
	background: var(--c-accent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s var(--ease);
}
.primary-nav__list a:hover::after { transform: scaleX(1); }

.header-cta {
	display: flex;
	gap: 8px;
	align-items: center;
}

.nav-toggle {
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid var(--c-border);
	border-radius: 8px;
}
.nav-toggle__bar {
	width: 18px;
	height: 2px;
	background: var(--c-text);
	transition: transform 0.2s var(--ease);
}

@media (min-width: 1024px) {
	.primary-nav__list { display: flex; }
	.nav-toggle { display: none; }
}
@media (max-width: 1023px) {
	.primary-nav__list {
		position: absolute;
		top: 100%;
		left: 0; right: 0;
		flex-direction: column;
		background: #fff;
		border-bottom: 1px solid var(--c-border);
		padding: 16px var(--gutter);
		box-shadow: var(--shadow-md);
		display: none;
		gap: 0;
	}
	.primary-nav__list[data-open="true"] { display: flex; }
	.primary-nav__list a {
		padding: 12px 0;
		border-bottom: 1px solid var(--c-bg-dim);
	}
	.header-cta .btn small { display: none; }
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	overflow: hidden;
	padding: 64px 0 96px;
	background: linear-gradient(180deg, #f4f9fe 0%, #ffffff 100%);
}
.hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}
.hero__bg-grad {
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(44,114,173,0.18) 0%, transparent 70%);
	filter: blur(20px);
}
.hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: start;
}
@media (min-width: 1024px) {
	.hero__inner { grid-template-columns: 1.4fr 1fr; gap: 56px; }
}
.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--c-brand-700);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.06em;
	background: var(--c-brand-50);
	padding: 6px 16px;
	border-radius: var(--radius-full);
	margin-bottom: 20px;
}
.hero__eyebrow-mark { color: var(--c-accent); }
.hero__title {
	font-family: var(--font-serif);
	font-size: clamp(28px, 5vw, 48px);
	line-height: 1.35;
	color: var(--c-brand-900);
	margin-bottom: 24px;
	font-weight: 900;
}
.hero__title-sub {
	display: block;
	font-size: clamp(16px, 2.5vw, 22px);
	color: var(--c-text-muted);
	font-weight: 500;
	margin-bottom: 12px;
	font-family: var(--font-sans);
}
.hero__title-main { display: block; }
.hero__title-accent {
	color: var(--c-brand-600);
	background: linear-gradient(transparent 70%, rgba(212,164,74,0.35) 70%);
	padding: 0 4px;
}
.hero__lead {
	color: var(--c-text-muted);
	font-size: 16px;
	line-height: 1.9;
	margin-bottom: 32px;
}
.hero__lead strong { color: var(--c-text); font-weight: 700; }

.hero__ctas {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 32px;
}
@media (min-width: 640px) {
	.hero__ctas { flex-direction: row; flex-wrap: wrap; }
}
.hero__ctas .btn { flex-direction: column; gap: 2px; }

.hero__trust {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}
@media (min-width: 640px) {
	.hero__trust { grid-template-columns: repeat(4, 1fr); }
}
.hero__trust li {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	padding: 12px 14px;
	border-radius: var(--radius-md);
	border: 1px solid var(--c-border);
	box-shadow: var(--shadow-sm);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--c-text);
}
.hero__trust-icon {
	color: var(--c-brand-600);
	display: inline-flex;
	flex-shrink: 0;
}

.hero__card {
	position: relative;
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-xl);
	padding: 28px 26px;
	box-shadow: var(--shadow-lg);
}
.hero__card::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 6px;
	background: linear-gradient(90deg, var(--c-brand-500), var(--c-accent));
	border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.hero__card-eyebrow {
	font-size: 12px;
	font-weight: 700;
	color: var(--c-accent-dark);
	letter-spacing: 0.08em;
	margin-bottom: 8px;
}
.hero__card-title {
	font-family: var(--font-serif);
	font-size: 22px;
	color: var(--c-brand-800);
	margin-bottom: 20px;
	line-height: 1.5;
	font-weight: 900;
}
.hero__card-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
}
.hero__card-list li {
	position: relative;
	padding-left: 28px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--c-text);
}
.hero__card-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 18px;
	height: 4px;
	background: var(--c-accent);
	border-radius: 2px;
}
.hero__card-cta-text {
	font-size: 13px;
	color: var(--c-text-muted);
	margin-bottom: 12px;
	text-align: center;
}

/* Marketplace hero card variant */
.hero__card--marketplace { padding: 24px 22px; }
.hero__card-flow {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
	counter-reset: flow;
}
.hero__card-flow li {
	position: relative;
	padding-left: 36px;
	font-size: 13px;
	line-height: 1.6;
	color: var(--c-text);
	counter-increment: flow;
}
.hero__card-flow li::before {
	content: counter(flow);
	position: absolute;
	left: 0;
	top: 0;
	width: 26px;
	height: 26px;
	background: var(--c-brand-600);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 900;
	font-family: var(--font-serif);
}
.hero__card-flow li strong {
	display: block;
	color: var(--c-brand-900);
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 2px;
}
.hero__card-flow li span {
	display: block;
	color: var(--c-text-muted);
	font-size: 12px;
	line-height: 1.6;
}

.hero__sub-cta {
	margin-top: 16px;
	font-size: 13px;
}
.hero__sub-cta a {
	color: var(--c-text-muted);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.hero__sub-cta a:hover { color: var(--c-brand-600); }

.primary-nav__highlight {
	background: var(--c-accent);
	color: #fff !important;
	padding: 6px 14px !important;
	border-radius: var(--radius-full);
}
.primary-nav__highlight:hover { background: var(--c-accent-dark); color: #fff !important; }
.primary-nav__highlight::after { display: none !important; }

/* ---------- Section base ---------- */
.section {
	padding: clamp(64px, 9vw, 120px) 0;
	position: relative;
}
.section--soft { background: var(--c-bg-soft); }
.section-head { margin-bottom: 48px; max-width: 760px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head__eyebrow {
	font-size: 13px;
	letter-spacing: 0.18em;
	font-weight: 700;
	color: var(--c-accent-dark);
	margin-bottom: 12px;
}
.section-head__title {
	font-family: var(--font-serif);
	font-size: clamp(26px, 4vw, 38px);
	color: var(--c-brand-900);
	line-height: 1.45;
	margin-bottom: 16px;
	font-weight: 900;
}
.section-head__lead {
	color: var(--c-text-muted);
	font-size: 16px;
	line-height: 1.9;
}
.section-head__lead strong { color: var(--c-text); }

/* ---------- Metrics ---------- */
.metrics {
	background: var(--c-brand-900);
	padding: 28px 0;
	color: #fff;
}
.metrics__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px 12px;
	text-align: center;
}
@media (min-width: 768px) {
	.metrics__list { grid-template-columns: repeat(4, 1fr); }
}
.metrics__item { display: flex; flex-direction: column; gap: 4px; }
.metrics__num {
	font-family: var(--font-serif);
	font-size: clamp(20px, 3vw, 26px);
	font-weight: 900;
	color: var(--c-accent);
}
.metrics__num small { font-size: 12px; color: #aecde8; margin-left: 2px; }
.metrics__label { font-size: 12px; color: #aecde8; }

/* ---------- Problems ---------- */
.problems { background: var(--c-bg-soft); }
.problems__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
@media (min-width: 768px) { .problems__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .problems__grid { grid-template-columns: repeat(3, 1fr); } }
.problem-card {
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	padding: 28px;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.problem-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--c-brand-200);
}
.problem-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}
.problem-card__num {
	font-family: var(--font-serif);
	font-size: 32px;
	font-weight: 900;
	color: var(--c-brand-100);
	line-height: 1;
}
.problem-card__icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--c-brand-50);
	color: var(--c-brand-600);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.problem-card__title {
	font-family: var(--font-serif);
	font-size: 19px;
	color: var(--c-brand-900);
	margin-bottom: 10px;
	font-weight: 900;
}
.problem-card__lead {
	font-size: 14px;
	color: var(--c-text-muted);
	margin-bottom: 12px;
	line-height: 1.7;
}
.problem-card__desc {
	font-size: 14px;
	color: var(--c-text);
	line-height: 1.85;
}

/* ---------- Features ---------- */
.features__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
@media (min-width: 1024px) { .features__grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	padding: 36px 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card--accent {
	background: linear-gradient(160deg, var(--c-brand-700), var(--c-brand-900));
	color: #fff;
	border: none;
}
.feature-card--accent .feature-card__title,
.feature-card--accent .feature-card__desc { color: #fff; }
.feature-card--accent .feature-card__list li { color: #d6e7f3; }
.feature-card--accent .feature-card__list li::before { background: var(--c-accent); }
.feature-card__media {
	width: 64px; height: 64px;
}
.feature-card__title {
	font-family: var(--font-serif);
	font-size: 22px;
	color: var(--c-brand-900);
	font-weight: 900;
}
.feature-card__desc { color: var(--c-text-muted); line-height: 1.85; font-size: 14.5px; }
.feature-card__list { display: flex; flex-direction: column; gap: 8px; }
.feature-card__list li {
	position: relative;
	padding-left: 22px;
	font-size: 13px;
	line-height: 1.7;
}
.feature-card__list li::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 9px;
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--c-brand-500);
}

/* ---------- Assessment ---------- */
.assessment { background: linear-gradient(180deg, #fff 0%, var(--c-brand-50) 100%); }
.assessment__panel {
	max-width: 760px;
	margin: 0 auto;
	background: #fff;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--c-border);
	overflow: hidden;
}
.assessment__form { padding: 36px 28px 24px; }
.assessment__step { display: none; }
.assessment__step[data-active="true"] { display: block; animation: fadeIn 0.3s var(--ease); }
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}
.assessment__step-label {
	font-size: 12px;
	color: var(--c-accent-dark);
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
}
.assessment__q {
	font-family: var(--font-serif);
	font-size: 22px;
	color: var(--c-brand-900);
	margin-bottom: 22px;
	font-weight: 900;
	line-height: 1.4;
}
.assessment__options {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}
@media (min-width: 640px) { .assessment__options { grid-template-columns: repeat(2, 1fr); } }
.assessment__option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 18px;
	border: 2px solid var(--c-border);
	border-radius: var(--radius-md);
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.2s var(--ease);
	background: #fff;
}
.assessment__option:hover { border-color: var(--c-brand-300); }
.assessment__option input { accent-color: var(--c-brand-600); }
.assessment__option input:checked + span { color: var(--c-brand-700); font-weight: 700; }
.assessment__option:has(input:checked) {
	border-color: var(--c-brand-500);
	background: var(--c-brand-50);
}
.assessment__nav {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: 28px;
}
.assessment__progress {
	margin-top: 24px;
	height: 4px;
	background: var(--c-bg-dim);
	border-radius: 2px;
	overflow: hidden;
}
.assessment__progress-bar {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--c-brand-500), var(--c-accent));
	transition: width 0.3s var(--ease);
}

.assessment__result {
	padding: 40px 28px;
	background: linear-gradient(160deg, var(--c-brand-800), var(--c-brand-950));
	color: #fff;
	text-align: center;
}
.assessment__result-eyebrow {
	font-size: 13px;
	color: var(--c-accent);
	letter-spacing: 0.12em;
	font-weight: 700;
	margin-bottom: 16px;
}
.assessment__result-amount {
	font-family: var(--font-serif);
	font-size: clamp(36px, 6vw, 56px);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 24px;
	color: #fff;
	display: flex;
	align-items: baseline;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}
.assessment__result-amount small {
	font-family: var(--font-sans);
	font-size: 18px;
	font-weight: 500;
	color: #aecde8;
}
.assessment__result-tilde { color: var(--c-accent); }
.assessment__result-note {
	font-size: 13px;
	color: #d6e7f3;
	line-height: 1.85;
	margin-bottom: 24px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.assessment__result-note strong { color: #fff; }
.assessment__result-cta {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}
@media (min-width: 640px) { .assessment__result-cta { flex-direction: row; justify-content: center; } }
.assessment__result .btn--ghost { color: #aecde8; border-color: rgba(255,255,255,0.2); }
.assessment__result .btn--ghost:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* ---------- Cases ---------- */
.cases { background: var(--c-bg-soft); }
.cases__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
@media (min-width: 768px) { .cases__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .cases__grid { grid-template-columns: repeat(3, 1fr); } }
.case-card {
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.case-card__head { display: flex; flex-direction: column; gap: 8px; }
.case-card__tag {
	align-self: flex-start;
	font-size: 11px;
	font-weight: 700;
	color: var(--c-brand-700);
	background: var(--c-brand-50);
	padding: 4px 12px;
	border-radius: var(--radius-full);
	letter-spacing: 0.05em;
}
.case-card__meta { font-size: 12px; color: var(--c-text-dim); }
.case-card__title {
	font-family: var(--font-serif);
	font-size: 18px;
	color: var(--c-brand-900);
	font-weight: 900;
	line-height: 1.5;
}
.case-card__lead { font-size: 14px; color: var(--c-text-muted); line-height: 1.8; }
.case-card__details {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	background: var(--c-bg-soft);
	border-radius: var(--radius-md);
	padding: 12px;
}
.case-card__details > div { text-align: center; }
.case-card__details dt {
	font-size: 10px;
	color: var(--c-text-dim);
	margin-bottom: 4px;
	font-weight: 700;
	letter-spacing: 0.05em;
}
.case-card__details dd {
	font-family: var(--font-serif);
	font-size: 13px;
	color: var(--c-brand-800);
	font-weight: 700;
	margin: 0;
}
.case-card__voice {
	margin: 0;
	background: linear-gradient(180deg, transparent, var(--c-brand-50));
	border-left: 3px solid var(--c-accent);
	padding: 12px 14px;
	font-size: 13px;
	line-height: 1.8;
	color: var(--c-text);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.cases__cta {
	margin-top: 40px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}
.cases__cta-text { color: var(--c-text-muted); font-size: 15px; font-weight: 500; }

/* ---------- Flow ---------- */
.flow__list {
	max-width: 880px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: relative;
}
.flow__list::before {
	content: "";
	position: absolute;
	left: 28px;
	top: 24px;
	bottom: 24px;
	width: 2px;
	background: linear-gradient(180deg, var(--c-brand-300), var(--c-brand-100));
	z-index: 0;
}
.flow__item {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	position: relative;
	z-index: 1;
}
.flow__num {
	flex-shrink: 0;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--c-brand-600), var(--c-brand-500));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-serif);
	font-size: 11px;
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
	box-shadow: 0 6px 14px rgba(31, 90, 141, 0.3);
}
.flow__body {
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	padding: 20px 24px;
	flex: 1;
	box-shadow: var(--shadow-sm);
}
.flow__title {
	font-family: var(--font-serif);
	font-size: 17px;
	color: var(--c-brand-900);
	margin-bottom: 6px;
	font-weight: 900;
}
.flow__desc { font-size: 14px; color: var(--c-text-muted); line-height: 1.85; margin-bottom: 8px; }
.flow__time {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	color: var(--c-accent-dark);
	background: rgba(212,164,74,0.12);
	padding: 4px 10px;
	border-radius: var(--radius-full);
}

/* ---------- FAQ ---------- */
.faq { background: var(--c-bg-soft); }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: border-color 0.2s var(--ease);
}
.faq__item[open] { border-color: var(--c-brand-300); box-shadow: var(--shadow-sm); }
.faq__q {
	cursor: pointer;
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 18px 22px;
	font-weight: 700;
	font-size: 15px;
	color: var(--c-brand-900);
	list-style: none;
	transition: background 0.2s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { background: var(--c-brand-50); }
.faq__q-mark {
	flex-shrink: 0;
	width: 32px; height: 32px;
	border-radius: 50%;
	background: var(--c-brand-600);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-serif);
	font-size: 14px;
	font-weight: 900;
}
.faq__q-text { flex: 1; line-height: 1.6; }
.faq__q-toggle {
	flex-shrink: 0;
	width: 24px; height: 24px;
	position: relative;
}
.faq__q-toggle::before,
.faq__q-toggle::after {
	content: "";
	position: absolute;
	background: var(--c-text-muted);
	transition: transform 0.2s var(--ease);
}
.faq__q-toggle::before { top: 11px; left: 4px; right: 4px; height: 2px; }
.faq__q-toggle::after { left: 11px; top: 4px; bottom: 4px; width: 2px; }
.faq__item[open] .faq__q-toggle::after { transform: scaleY(0); }

.faq__a {
	display: flex;
	gap: 12px;
	padding: 0 22px 22px;
	border-top: 1px solid var(--c-bg-dim);
}
.faq__a-mark {
	flex-shrink: 0;
	width: 32px; height: 32px;
	border-radius: 50%;
	background: var(--c-accent);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-serif);
	font-size: 14px;
	font-weight: 900;
	margin-top: 14px;
}
.faq__a-text {
	font-size: 14.5px;
	color: var(--c-text);
	line-height: 1.95;
	padding-top: 18px;
}

/* ---------- About ---------- */
.about__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}
@media (min-width: 1024px) { .about__grid { grid-template-columns: 1.4fr 1fr; gap: 40px; } }
.about__table {
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	padding: 8px 24px;
	box-shadow: var(--shadow-sm);
	margin: 0;
}
.about__table > div {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4px;
	padding: 18px 0;
	border-bottom: 1px solid var(--c-bg-dim);
}
.about__table > div:last-child { border-bottom: none; }
@media (min-width: 640px) {
	.about__table > div { grid-template-columns: 140px 1fr; gap: 16px; align-items: baseline; }
}
.about__table dt {
	font-size: 13px;
	font-weight: 700;
	color: var(--c-brand-700);
	margin: 0;
}
.about__table dd { font-size: 14.5px; color: var(--c-text); line-height: 1.85; margin: 0; }

.about__pledge {
	background: linear-gradient(160deg, var(--c-brand-800), var(--c-brand-950));
	color: #fff;
	border-radius: var(--radius-lg);
	padding: 32px 28px;
}
.about__pledge-title {
	font-family: var(--font-serif);
	font-size: 22px;
	margin-bottom: 20px;
	color: #fff;
	font-weight: 900;
}
.about__pledge-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.about__pledge-list li {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-left: 24px;
	position: relative;
}
.about__pledge-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 14px; height: 14px;
	background: var(--c-accent);
	clip-path: polygon(0 50%, 50% 0, 100% 50%, 50% 100%);
}
.about__pledge-list strong { color: var(--c-accent); font-size: 15px; }
.about__pledge-list span { font-size: 13px; color: #d6e7f3; line-height: 1.7; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, var(--c-bg-soft) 0%, #fff 100%); }
.contact__panel {
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-xl);
	padding: 32px 28px;
	box-shadow: var(--shadow-lg);
}
.contact__channels {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin-bottom: 28px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--c-bg-dim);
}
@media (min-width: 640px) { .contact__channels { grid-template-columns: repeat(2, 1fr); } }
.contact__channel {
	display: flex;
	gap: 14px;
	padding: 16px 18px;
	border-radius: var(--radius-md);
	background: var(--c-bg-soft);
	color: var(--c-text);
	border: 1px solid var(--c-border);
	align-items: center;
	transition: all 0.2s var(--ease);
}
.contact__channel:hover { border-color: var(--c-brand-400); transform: translateY(-2px); color: var(--c-text); }
.contact__channel--line { background: rgba(6,199,85,0.08); border-color: rgba(6,199,85,0.3); }
.contact__channel--line .contact__channel-icon { color: var(--c-line); }
.contact__channel--phone .contact__channel-icon { color: var(--c-brand-600); }
.contact__channel-icon { flex-shrink: 0; }
.contact__channel strong { display: block; font-size: 16px; font-weight: 700; }
.contact__channel span { display: block; font-size: 12px; color: var(--c-text-muted); margin-top: 2px; }

.contact__form { display: flex; flex-direction: column; gap: 20px; }
.contact__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
@media (min-width: 640px) { .contact__row { grid-template-columns: repeat(2, 1fr); } }
.contact__field { display: flex; flex-direction: column; gap: 8px; }
.contact__label {
	font-size: 13px;
	font-weight: 700;
	color: var(--c-brand-800);
	display: flex;
	align-items: center;
	gap: 6px;
}
.contact__required {
	font-size: 10px;
	color: #fff;
	background: #d04545;
	padding: 2px 6px;
	border-radius: var(--radius-sm);
	font-weight: 700;
}
.contact__field input,
.contact__field select,
.contact__field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	font: inherit;
	font-size: 15px;
	color: var(--c-text);
	background: #fff;
	transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.contact__field textarea { resize: vertical; min-height: 120px; line-height: 1.7; }
.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
	outline: none;
	border-color: var(--c-brand-500);
	box-shadow: 0 0 0 3px rgba(44,114,173,0.15);
}
.contact__choices {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.contact__choice {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 18px;
	border: 2px solid var(--c-border);
	border-radius: var(--radius-full);
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	background: #fff;
	transition: all 0.2s var(--ease);
}
.contact__choice:has(input:checked) {
	border-color: var(--c-brand-500);
	background: var(--c-brand-50);
	color: var(--c-brand-700);
	font-weight: 700;
}
.contact__choice input { accent-color: var(--c-brand-600); }

.contact__honeypot { position: absolute; left: -10000px; }

.contact__notice {
	font-size: 12px;
	color: var(--c-text-dim);
	background: var(--c-bg-soft);
	padding: 12px 16px;
	border-radius: var(--radius-md);
	line-height: 1.7;
}
.contact__feedback {
	font-size: 14px;
	padding: 14px 18px;
	border-radius: var(--radius-md);
	display: none;
	line-height: 1.7;
}
.contact__feedback[data-state="success"] {
	display: block;
	background: rgba(6,199,85,0.1);
	border: 1px solid rgba(6,199,85,0.4);
	color: #04793b;
}
.contact__feedback[data-state="error"] {
	display: block;
	background: rgba(208,69,69,0.1);
	border: 1px solid rgba(208,69,69,0.4);
	color: #a32626;
}
.contact__submit-loading { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Floating CTA ---------- */
.floating-cta {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 999;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transform: translateY(110%);
	transition: transform 0.3s var(--ease);
}
.floating-cta[data-visible="true"] { transform: translateY(0); }
.floating-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 20px;
	border-radius: var(--radius-full);
	font-weight: 700;
	font-size: 14px;
	box-shadow: var(--shadow-lg);
	transition: transform 0.2s var(--ease);
}
.floating-cta__btn:hover { transform: scale(1.04); }
.floating-cta__btn--primary {
	background: linear-gradient(135deg, var(--c-brand-600), var(--c-brand-500));
	color: #fff;
}
.floating-cta__btn--primary:hover { color: #fff; }
.floating-cta__btn--line { background: var(--c-line); color: #fff; }
.floating-cta__btn--line:hover { color: #fff; }
@media (max-width: 639px) {
	.floating-cta { right: 12px; bottom: 12px; flex-direction: row; }
	.floating-cta__btn { padding: 12px 16px; font-size: 13px; }
}

/* ---------- CTA Strip ---------- */
.cta-strip {
	background: linear-gradient(135deg, var(--c-brand-700), var(--c-brand-900));
	padding: 56px 0;
	color: #fff;
}
.cta-strip__inner {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: flex-start;
	justify-content: space-between;
}
@media (min-width: 768px) { .cta-strip__inner { flex-direction: row; align-items: center; } }
.cta-strip__title {
	font-family: var(--font-serif);
	font-size: clamp(20px, 3vw, 26px);
	font-weight: 900;
	margin-bottom: 8px;
}
.cta-strip__lead { color: #d6e7f3; font-size: 14px; line-height: 1.85; }

/* ---------- Footer ---------- */
.site-footer {
	background: var(--c-brand-950);
	color: #aecde8;
	padding: 64px 0 24px;
	font-size: 14px;
}
.site-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin-bottom: 40px;
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-footer__title {
	font-family: var(--font-serif);
	font-size: 22px;
	color: #fff;
	margin-bottom: 12px;
	font-weight: 900;
}
.site-footer__lead { line-height: 1.85; margin-bottom: 20px; font-size: 13px; }
.site-footer__heading {
	color: #fff;
	font-weight: 700;
	margin-bottom: 14px;
	font-size: 14px;
}
.site-footer__list { display: flex; flex-direction: column; gap: 10px; }
.site-footer__list a { color: #aecde8; font-size: 13px; }
.site-footer__list a:hover { color: var(--c-accent); }
.site-footer__phone { font-family: var(--font-serif); font-size: 22px; color: #fff; margin-bottom: 8px; font-weight: 900; }
.site-footer__phone small { display: block; font-size: 11px; color: #aecde8; font-weight: 500; margin-top: 4px; font-family: var(--font-sans); }
.site-footer__phone a { color: #fff; }
.site-footer__contact-note { font-size: 12px; color: #aecde8; margin-bottom: 12px; }

.site-footer__bottom {
	border-top: 1px solid rgba(174,205,232,0.2);
	padding-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
}
@media (min-width: 768px) { .site-footer__bottom { flex-direction: row; } }
.site-footer__copy { font-size: 12px; color: #7d8aa1; }
.site-footer__legal { display: flex; gap: 20px; }
.site-footer__legal a { color: #aecde8; font-size: 12px; }

/* ---------- Page hero ---------- */
.page-hero {
	background: linear-gradient(180deg, var(--c-brand-50), #fff);
	padding: 64px 0 48px;
	text-align: center;
}
.page-hero__title {
	font-family: var(--font-serif);
	font-size: clamp(26px, 4vw, 38px);
	color: var(--c-brand-900);
	margin-bottom: 12px;
	font-weight: 900;
}
.page-hero__lead { color: var(--c-text-muted); font-size: 15px; line-height: 1.85; }

/* ---------- Card grid (archive) ---------- */
.archive-list { padding: 64px 0; }
.card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-bottom: 40px;
}
@media (min-width: 768px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
.card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__link { display: block; color: var(--c-text); }
.card__thumb img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.card__body { padding: 20px 22px; }
.card__date { font-size: 12px; color: var(--c-text-dim); margin-bottom: 8px; }
.card__title { font-family: var(--font-serif); font-size: 18px; color: var(--c-brand-900); margin-bottom: 8px; line-height: 1.5; font-weight: 900; }
.card__excerpt { font-size: 14px; color: var(--c-text-muted); line-height: 1.8; }

.pagination { display: flex; justify-content: center; gap: 8px; }
.pagination a, .pagination span {
	display: inline-block;
	padding: 8px 14px;
	border-radius: var(--radius-md);
	background: #fff;
	border: 1px solid var(--c-border);
	font-size: 14px;
}
.pagination .current { background: var(--c-brand-600); color: #fff; border-color: var(--c-brand-600); }

/* ---------- Single post / prose ---------- */
.single-article { padding: 48px 0 64px; }
.single-article__header { margin-bottom: 32px; }
.single-article__meta { font-size: 13px; color: var(--c-text-dim); margin-bottom: 12px; text-align: center; }
.single-article__title { font-family: var(--font-serif); font-size: clamp(24px, 4vw, 36px); color: var(--c-brand-900); text-align: center; margin-bottom: 32px; line-height: 1.45; font-weight: 900; }
.single-article__thumb { margin-bottom: 32px; }
.single-article__thumb img { border-radius: var(--radius-lg); }

.prose { font-size: 16px; line-height: 1.95; color: var(--c-text); }
.prose h2 { font-family: var(--font-serif); font-size: 24px; color: var(--c-brand-900); margin: 48px 0 16px; padding-bottom: 12px; border-bottom: 2px solid var(--c-brand-200); font-weight: 900; }
.prose h3 { font-family: var(--font-serif); font-size: 19px; color: var(--c-brand-800); margin: 32px 0 12px; font-weight: 900; }
.prose p { margin-bottom: 20px; }
.prose ul, .prose ol { margin-bottom: 20px; padding-left: 24px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 6px; }
.prose blockquote {
	border-left: 4px solid var(--c-brand-300);
	background: var(--c-bg-soft);
	padding: 16px 20px;
	margin: 24px 0;
	color: var(--c-text-muted);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.prose img { border-radius: var(--radius-md); margin: 24px auto; }
.prose a { color: var(--c-brand-600); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Search form ---------- */
.search-form { display: flex; gap: 8px; }
.search-form__input { flex: 1; padding: 10px 14px; border: 1px solid var(--c-border); border-radius: var(--radius-md); font: inherit; }
.search-form__submit { padding: 10px 18px; border-radius: var(--radius-md); background: var(--c-brand-600); color: #fff; border: none; }

/* ---------- Page body wrapper ---------- */
.page-body { padding: 48px 0 64px; }

/* ---------- News list ---------- */
.news-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 880px;
	margin: 0 auto 40px;
}
.news-list__item {
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.news-list__item:hover { border-color: var(--c-brand-300); box-shadow: var(--shadow-sm); }
.news-list__link {
	display: block;
	padding: 20px 24px;
	color: var(--c-text);
}
.news-list__link:hover { color: var(--c-text); }
.news-list__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	color: var(--c-text-dim);
	margin-bottom: 8px;
}
.news-list__source {
	background: var(--c-brand-50);
	color: var(--c-brand-700);
	padding: 2px 10px;
	border-radius: var(--radius-full);
	font-weight: 700;
}
.news-list__title {
	font-family: var(--font-serif);
	font-size: 17px;
	color: var(--c-brand-900);
	font-weight: 900;
	line-height: 1.55;
	margin-bottom: 8px;
}
.news-list__ext {
	display: inline-block;
	font-size: 14px;
	color: var(--c-text-dim);
	margin-left: 4px;
}
.news-list__excerpt {
	font-size: 13.5px;
	color: var(--c-text-muted);
	line-height: 1.85;
}
.news-list__column {
	background: var(--c-bg-soft);
	padding: 10px 24px;
	font-size: 12px;
	color: var(--c-text-muted);
	border-top: 1px solid var(--c-bg-dim);
}
.news-list__column a { font-weight: 700; }

/* ---------- Column source ---------- */
.column-source {
	margin: 32px 0;
	padding: 20px 24px;
	background: var(--c-bg-soft);
	border-left: 4px solid var(--c-brand-400);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	font-size: 14px;
	color: var(--c-text-muted);
}
.column-source__link a {
	font-weight: 700;
	color: var(--c-brand-700);
	font-size: 15px;
}

/* ---------- Related columns ---------- */
.related-columns {
	padding: 64px 0;
	background: var(--c-bg-soft);
}
.related-columns h2 { margin-bottom: 32px !important; }

/* ---------- Card date topic ---------- */
.card__topic { color: var(--c-accent-dark); font-weight: 700; }

/* ============================================================
   Hero visual (image + card)
   ============================================================ */
.hero__visual {
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
}
.hero__visual-image {
	position: relative;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	aspect-ratio: 4 / 3;
}
.hero__visual-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.hero__visual-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(19,48,74,0) 60%, rgba(19,48,74,0.2) 100%);
	pointer-events: none;
}
.hero__visual-badge {
	position: absolute;
	left: 16px;
	bottom: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(8px);
	padding: 12px 18px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	z-index: 2;
}
.hero__visual-badge-icon {
	color: var(--c-accent-dark);
}
.hero__visual-badge strong {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: var(--c-brand-900);
	line-height: 1.3;
}
.hero__visual-badge span {
	display: block;
	font-size: 11px;
	color: var(--c-text-muted);
}

/* On larger screens, place visuals in a grid */
@media (min-width: 1024px) {
	.hero__visual { gap: 24px; }
}

/* ============================================================
   Section: Director's message
   ============================================================ */
.message { background: linear-gradient(180deg, #fff 0%, var(--c-bg-soft) 100%); }
.message__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}
@media (min-width: 1024px) {
	.message__grid { grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
}
.message__media {
	position: relative;
}
.message__photo {
	position: relative;
	border-radius: var(--radius-xl);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	box-shadow: var(--shadow-lg);
}
.message__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.message__photo::before {
	content: "";
	position: absolute;
	top: -16px;
	left: -16px;
	right: 32px;
	bottom: 32px;
	border: 3px solid var(--c-accent);
	border-radius: var(--radius-xl);
	z-index: -1;
}
.message__caption {
	margin-top: 20px;
	padding: 16px 20px;
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}
.message__caption-name {
	font-family: var(--font-serif);
	font-size: 18px;
	color: var(--c-brand-900);
	font-weight: 900;
}
.message__caption-role {
	font-size: 12px;
	color: var(--c-text-muted);
	margin-top: 2px;
}
.message__title {
	font-family: var(--font-serif);
	font-size: clamp(26px, 4vw, 38px);
	color: var(--c-brand-900);
	margin: 12px 0 28px;
	line-height: 1.5;
	font-weight: 900;
}
.message__text {
	display: flex;
	flex-direction: column;
	gap: 16px;
	color: var(--c-text);
	font-size: 15.5px;
	line-height: 2.0;
	margin-bottom: 28px;
}
.message__text strong {
	color: var(--c-brand-700);
	background: linear-gradient(transparent 65%, rgba(212,164,74,0.3) 65%);
	padding: 0 2px;
}
.message__signature {
	font-family: var(--font-serif);
	font-size: 16px;
	color: var(--c-brand-800) !important;
	font-weight: 700;
	margin-top: 8px;
	padding-left: 16px;
	border-left: 3px solid var(--c-accent);
}

/* ============================================================
   Section: Team
   ============================================================ */
.team { background: var(--c-bg-soft); position: relative; overflow: hidden; }
.team::before {
	content: "";
	position: absolute;
	right: -100px;
	top: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(44,114,173,0.08) 0%, transparent 70%);
	pointer-events: none;
}
.team__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
@media (min-width: 640px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .team__grid { grid-template-columns: repeat(4, 1fr); } }
.team-card {
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card__photo {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.team-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s var(--ease);
}
.team-card:hover .team-card__photo img { transform: scale(1.05); }
.team-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(31, 90, 141, 0.95);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: var(--radius-full);
	letter-spacing: 0.05em;
	backdrop-filter: blur(4px);
}
.team-card__role {
	font-family: var(--font-serif);
	font-size: 17px;
	color: var(--c-brand-900);
	font-weight: 900;
	padding: 18px 20px 8px;
	line-height: 1.5;
}
.team-card__desc {
	font-size: 13px;
	color: var(--c-text-muted);
	line-height: 1.85;
	padding: 0 20px 16px;
	flex: 1;
}
.team-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 0 20px 20px;
}
.team-card__tags li {
	font-size: 10px;
	color: var(--c-brand-700);
	background: var(--c-brand-50);
	padding: 3px 9px;
	border-radius: var(--radius-full);
	font-weight: 700;
}

/* ============================================================
   Section: Trust seal
   ============================================================ */
.trust__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
@media (min-width: 640px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .trust__grid { grid-template-columns: repeat(3, 1fr); } }
.trust-card {
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: flex-start;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.trust-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--c-brand-300);
}
.trust-card__seal {
	width: 56px;
	height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.trust-card__title {
	font-family: var(--font-serif);
	font-size: 18px;
	color: var(--c-brand-900);
	line-height: 1.5;
	font-weight: 900;
}
.trust-card__desc {
	font-size: 13.5px;
	color: var(--c-text-muted);
	line-height: 1.85;
}

/* ============================================================
   Case card photo addition
   ============================================================ */
.case-card { padding: 0; overflow: hidden; }
.case-card__photo {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}
.case-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s var(--ease);
}
.case-card:hover .case-card__photo img { transform: scale(1.04); }
.case-card__photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(19,48,74,0) 50%, rgba(19,48,74,0.5) 100%);
}
.case-card__photo-tag {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--c-accent);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: var(--radius-full);
	letter-spacing: 0.05em;
	z-index: 1;
}
.case-card__head { padding: 20px 24px 0; }
.case-card__title { padding: 0 24px; }
.case-card__lead { padding: 0 24px; }
.case-card__details { margin: 0 24px; }
.case-card__voice { margin: 14px 24px 24px !important; }

/* ============================================================
   Hero override for new visual structure
   ============================================================ */
@media (min-width: 1024px) {
	.hero__visual { display: flex; flex-direction: column; gap: 24px; }
}

/* ============================================================
   About photo strip
   ============================================================ */
.about__photo-strip {
	margin-bottom: 40px;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	max-height: 360px;
	position: relative;
}
.about__photo-strip img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 240px;
}
.about__photo-strip::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(31,90,141,0.4) 0%, rgba(19,48,74,0.1) 100%);
	pointer-events: none;
}

/* ============================================================
   Metrics – background photo subtle
   ============================================================ */
.metrics {
	position: relative;
	overflow: hidden;
}
.metrics::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--c-brand-900) 0%, var(--c-brand-800) 100%);
	z-index: 0;
}
.metrics .container { position: relative; z-index: 1; }

/* ============================================================
   Marketplace
   ============================================================ */
.marketplace { padding: 64px 0 96px; background: var(--c-bg-soft); }
.marketplace__filters {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	padding: 16px;
	margin-bottom: 24px;
}
@media (min-width: 768px) {
	.marketplace__filters { grid-template-columns: repeat(5, 1fr); align-items: end; }
}
.marketplace__filters label {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 12px;
	font-weight: 700;
	color: var(--c-brand-800);
}
.marketplace__filters select {
	padding: 8px 10px;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-sm);
	font: inherit;
	font-size: 14px;
	background: #fff;
}
.marketplace__count {
	font-size: 14px;
	color: var(--c-text-muted);
	margin-bottom: 16px;
}
.marketplace__count strong { color: var(--c-brand-700); font-size: 18px; }
.marketplace__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-bottom: 32px;
}
@media (min-width: 768px) { .marketplace__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .marketplace__grid { grid-template-columns: repeat(3, 1fr); } }
.marketplace__empty {
	background: #fff;
	border: 1px dashed var(--c-border);
	padding: 48px;
	text-align: center;
	border-radius: var(--radius-md);
	color: var(--c-text-muted);
}

.buyer-card {
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.buyer-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--c-brand-300);
}
.buyer-card__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}
.buyer-card__type {
	font-size: 11px;
	color: var(--c-brand-700);
	background: var(--c-brand-50);
	padding: 4px 12px;
	border-radius: var(--radius-full);
	font-weight: 700;
	letter-spacing: 0.05em;
}
.buyer-card__verified {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	color: #1f8b3f;
	font-weight: 700;
	background: rgba(31, 139, 63, 0.08);
	padding: 4px 10px;
	border-radius: var(--radius-full);
}
.buyer-card__name {
	font-family: var(--font-serif);
	font-size: 19px;
	color: var(--c-brand-900);
	font-weight: 900;
	line-height: 1.5;
}
.buyer-card__overview {
	font-size: 13.5px;
	color: var(--c-text-muted);
	line-height: 1.85;
	flex: 1;
}
.buyer-card__meta {
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: var(--c-bg-soft);
	padding: 12px 14px;
	border-radius: var(--radius-md);
	margin: 0;
}
.buyer-card__meta > div { display: flex; gap: 8px; }
.buyer-card__meta dt {
	font-size: 11px;
	color: var(--c-text-dim);
	font-weight: 700;
	min-width: 76px;
	margin: 0;
}
.buyer-card__meta dd {
	font-size: 12.5px;
	color: var(--c-text);
	font-weight: 600;
	margin: 0;
}

/* Buyer detail */
.buyer-detail { padding: 64px 0 96px; background: var(--c-bg-soft); }
.buyer-detail__breadcrumb {
	font-size: 13px;
	margin-bottom: 16px;
}
.buyer-detail__head {
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	padding: 32px;
	margin-bottom: 24px;
}
.buyer-detail__head-meta {
	display: flex;
	gap: 10px;
	margin-bottom: 16px;
}
.buyer-detail__name {
	font-family: var(--font-serif);
	font-size: clamp(24px, 4vw, 32px);
	color: var(--c-brand-900);
	font-weight: 900;
	margin-bottom: 8px;
}
.buyer-detail__sub { color: var(--c-text-muted); font-size: 14px; }

.buyer-detail__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-bottom: 40px;
}
@media (min-width: 1024px) { .buyer-detail__grid { grid-template-columns: 1.6fr 1fr; gap: 32px; } }

.buyer-detail__main {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.buyer-detail__section {
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	padding: 24px 28px;
}
.buyer-detail__section h2 {
	font-family: var(--font-serif);
	font-size: 18px;
	color: var(--c-brand-900);
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--c-brand-100);
	font-weight: 900;
}
.buyer-detail__section p { font-size: 14.5px; color: var(--c-text); line-height: 1.95; }

.buyer-detail__side {
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	padding: 24px;
	height: fit-content;
}
.buyer-detail__facts {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 0;
}
.buyer-detail__facts > div {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--c-bg-dim);
}
.buyer-detail__facts > div:last-child { border-bottom: none; padding-bottom: 0; }
.buyer-detail__facts dt {
	font-size: 11px;
	color: var(--c-text-dim);
	font-weight: 700;
	letter-spacing: 0.05em;
	margin: 0;
}
.buyer-detail__facts dd {
	font-family: var(--font-serif);
	font-size: 16px;
	color: var(--c-brand-800);
	font-weight: 700;
	margin: 0;
}

/* ============================================================
   Buyer registration / pitch forms
   ============================================================ */
.buyer-register {
	max-width: 880px;
	margin: 0 auto;
	padding: 0;
}
.buyer-register__alert {
	background: rgba(6,199,85,0.08);
	border: 1px solid rgba(6,199,85,0.4);
	border-radius: var(--radius-md);
	padding: 16px 20px;
	margin-bottom: 24px;
	font-size: 14px;
	line-height: 1.85;
	color: #04793b;
}
.buyer-register__alert strong { display: block; margin-bottom: 4px; font-size: 16px; }

.buyer-register__form {
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	box-shadow: var(--shadow-sm);
}
.buyer-register__group {
	border: 1px solid var(--c-bg-dim);
	border-radius: var(--radius-md);
	padding: 20px 24px;
	margin: 0 0 24px;
}
.buyer-register__group legend {
	font-family: var(--font-serif);
	font-size: 16px;
	font-weight: 900;
	color: var(--c-brand-800);
	padding: 0 10px;
}
.buyer-register__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-bottom: 14px;
}
@media (min-width: 640px) { .buyer-register__row { grid-template-columns: repeat(2, 1fr); } }
.buyer-register__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 14px;
}
.buyer-register__field > span {
	font-size: 13px;
	font-weight: 700;
	color: var(--c-brand-800);
	display: flex;
	align-items: center;
	gap: 6px;
}
.buyer-register__field em {
	font-size: 10px;
	font-style: normal;
	color: #fff;
	background: #d04545;
	padding: 2px 6px;
	border-radius: var(--radius-sm);
}
.buyer-register__field input[type="text"],
.buyer-register__field input[type="email"],
.buyer-register__field input[type="tel"],
.buyer-register__field input[type="url"],
.buyer-register__field select,
.buyer-register__field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	font: inherit;
	font-size: 15px;
	background: #fff;
	color: var(--c-text);
	transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.buyer-register__field input:focus,
.buyer-register__field select:focus,
.buyer-register__field textarea:focus {
	outline: none;
	border-color: var(--c-brand-500);
	box-shadow: 0 0 0 3px rgba(44,114,173,0.15);
}
.buyer-register__field--check {
	flex-direction: row;
	align-items: flex-start;
	gap: 10px;
}
.buyer-register__field--check input { margin-top: 4px; accent-color: var(--c-brand-600); }
.buyer-register__field--check span { font-size: 14px; font-weight: 500; color: var(--c-text); }

.buyer-register__honeypot { position: absolute; left: -10000px; }
.buyer-register__notice {
	background: var(--c-bg-soft);
	padding: 14px 16px;
	border-radius: var(--radius-md);
	font-size: 13px;
	color: var(--c-text-muted);
	margin: 16px 0;
	line-height: 1.85;
}
.buyer-register__notice strong { color: var(--c-text); }
.buyer-register__submit { margin-top: 20px; }

/* Pitch form choice */
.pitch { margin-top: 48px; }
.pitch__choices {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.pitch__choice {
	display: flex;
	gap: 14px;
	padding: 18px 22px;
	border: 2px solid var(--c-border);
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: all 0.2s var(--ease);
	background: #fff;
}
.pitch__choice:hover { border-color: var(--c-brand-300); }
.pitch__choice:has(input:checked) {
	border-color: var(--c-brand-500);
	background: var(--c-brand-50);
}
.pitch__choice input { margin-top: 4px; accent-color: var(--c-brand-600); }
.pitch__choice strong {
	display: block;
	color: var(--c-brand-900);
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 4px;
}
.pitch__choice span {
	display: block;
	font-size: 13px;
	color: var(--c-text-muted);
	line-height: 1.7;
}

/* Page hero CTA */
.page-hero__ctas {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 24px;
	justify-content: center;
}
@media (min-width: 640px) {
	.page-hero__ctas { flex-direction: row; }
}
