:root {
	--ink: #102a2d;
	--muted: #52696d;
	--line: #d6e8e2;
	--paper: #ffffff;
	--wash: #f3faf7;
	--green: #087f5b;
	--green-dark: #045a43;
	--green-light: #c9f5e2;
	--teal: #11a683;
	--navy: #102541;
	--indigo: #403a73;
	--amber: #f4b740;
	--danger: #b3423b;
	--shadow: 0 24px 70px rgba(8, 61, 50, 0.11);
	--radius: 24px;
	--shell: min(1160px, calc(100% - 40px));
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--wash);
	font-family: "Noto Sans Bengali", "Hind Siliguri", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.78;
	overflow-wrap: anywhere;
}

body.admin-bar .site-header {
	top: 32px;
}

a {
	color: var(--green-dark);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

a:hover {
	color: var(--indigo);
}

img {
	max-width: 100%;
	height: auto;
}

button,
input {
	font: inherit;
}

.shell {
	width: var(--shell);
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 12px;
	left: 12px;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	color: var(--ink);
	background: #fff;
	border-radius: 8px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(8, 127, 91, 0.12);
	backdrop-filter: blur(14px);
}

.site-header__inner {
	min-height: 76px;
	display: flex;
	align-items: center;
	gap: 22px;
}

.site-branding,
.brand-link,
.custom-logo-link {
	flex: 0 0 auto;
	min-width: 0;
	max-width: min(48vw, 260px);
}

.brand-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--ink);
	text-decoration: none;
}

.brand-media:empty {
	display: none;
}

.custom-logo,
.custom-logo-link img,
.site-branding img,
.brand-logo img,
.footer-brand img,
.footer-logo img {
	display: block;
	width: auto;
	height: auto;
	max-width: 178px;
	max-height: 56px;
	object-fit: contain;
}

.footer-brand img,
.footer-logo img {
	max-width: 150px;
	max-height: 48px;
}

.brand-copy {
	display: grid;
	line-height: 1.2;
}

.brand-copy strong,
.footer-brand strong {
	font-size: 1.05rem;
	letter-spacing: -0.02em;
}

.brand-copy small {
	margin-top: 4px;
	color: var(--muted);
	font-size: 0.72rem;
}

.primary-nav {
	margin-left: auto;
}

.primary-nav ul,
.footer-nav ul {
	display: flex;
	align-items: center;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav a {
	color: var(--ink);
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
	color: var(--green);
}

.header-action,
.button,
.wp-block-button__link,
.mobile-action-bar a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.72rem 1.25rem;
	color: #fff;
	background: linear-gradient(135deg, var(--green), var(--teal));
	border: 0;
	border-radius: 999px;
	box-shadow: 0 12px 28px rgba(8, 127, 91, 0.24);
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
}

.header-action:hover,
.button:hover,
.wp-block-button__link:hover,
.mobile-action-bar a:hover {
	color: #fff;
	background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span[aria-hidden] {
	content: "";
	display: block;
	width: 20px;
	height: 2px;
	margin: 5px auto;
	background: var(--ink);
}

.front-page-article > *:not(.alignfull) {
	width: var(--shell);
	margin-inline: auto;
}

.front-page-article > .alignfull {
	width: 100%;
}

.front-page-article > * + * {
	margin-top: clamp(3rem, 6vw, 5.5rem);
}

.homepage-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(3.2rem, 8vw, 7.2rem) 0;
	color: #fff;
	background:
		radial-gradient(circle at 13% 16%, rgba(244, 183, 64, 0.24), transparent 21rem),
		linear-gradient(125deg, #064b3a 0%, #07825e 52%, #0da987 100%);
}

.homepage-hero::after {
	content: "";
	position: absolute;
	inset: auto -5vw -9rem 35vw;
	height: 17rem;
	border-radius: 50% 50% 0 0;
	background: rgba(255, 255, 255, 0.08);
	transform: rotate(-5deg);
}

.homepage-hero .wp-block-columns {
	position: relative;
	z-index: 2;
	width: var(--shell);
	margin: 0 auto;
	align-items: center !important;
	gap: clamp(2rem, 5vw, 5rem);
}

.homepage-hero h1 {
	max-width: 780px;
	margin: 0;
	color: #fff;
	font-size: clamp(2.35rem, 6vw, 5rem);
	line-height: 1.04;
	letter-spacing: -0.045em;
}

.homepage-hero p {
	max-width: 650px;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.homepage-hero .wp-block-image img {
	width: 100%;
	max-height: 560px;
	object-fit: cover;
	border: 8px solid rgba(255, 255, 255, 0.16);
	border-radius: 34px;
	box-shadow: 0 28px 80px rgba(0, 40, 31, 0.34);
}

.hero-links,
.quick-access {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero-links a:not(.wp-block-button__link) {
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	padding: 0.72rem 1.2rem;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 999px;
	font-weight: 800;
	text-decoration: none;
}

.snapshot-grid,
.quick-access,
.topic-grid,
.decision-grid,
.payment-lanes,
.safety-grid,
.faq-index {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.snapshot-card,
.quick-access > *,
.topic-grid > *,
.decision-grid > *,
.payment-lanes > *,
.safety-grid > *,
.faq-index > * {
	padding: 22px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 20px;
	box-shadow: 0 13px 38px rgba(8, 75, 57, 0.07);
}

.quick-access {
	margin-top: -3.2rem !important;
	position: relative;
	z-index: 3;
}

.quick-access > * {
	margin: 0;
}

.quick-access a {
	display: block;
	font-weight: 800;
	text-decoration: none;
}

.section-shell,
.wp-block-group.section-shell {
	padding: clamp(2rem, 4vw, 4rem);
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.section-shell--tint,
.wp-block-group.section-shell--tint {
	background: linear-gradient(145deg, #effbf5, #f8fbff);
}

.section-shell--dark,
.wp-block-group.section-shell--dark {
	color: #ecf8f3;
	background: linear-gradient(145deg, var(--navy), #153a47 60%, #164b45);
	border-color: rgba(255, 255, 255, 0.12);
}

.section-shell--dark h2,
.section-shell--dark h3,
.section-shell--dark a {
	color: #fff;
}

.section-shell--dark p,
.section-shell--dark li {
	color: #d8ebe4;
}

.front-page h2,
.entry-content h2 {
	margin: 0 0 1rem;
	color: var(--navy);
	font-size: clamp(1.7rem, 4vw, 2.6rem);
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.front-page h3,
.entry-content h3 {
	color: var(--green-dark);
	font-size: 1.25rem;
	line-height: 1.35;
}

.front-page p,
.front-page li,
.entry-content p,
.entry-content li {
	max-width: 78ch;
}

.front-page figure,
.entry-content figure {
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.front-page figure img,
.entry-content figure img {
	width: 100%;
	border-radius: 22px;
	box-shadow: 0 20px 54px rgba(8, 61, 50, 0.12);
}

.front-page figcaption,
.entry-content figcaption {
	color: var(--muted);
	font-size: 0.82rem;
	text-align: left;
}

.wp-block-table {
	overflow-x: auto;
}

.wp-block-table table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
}

.wp-block-table th,
.wp-block-table td {
	padding: 14px 16px;
	border: 1px solid var(--line);
	text-align: left;
	vertical-align: top;
}

.wp-block-table th {
	color: var(--navy);
	background: #eaf7f1;
}

.step-list,
.check-list {
	padding-left: 0;
	list-style: none;
	counter-reset: steps;
}

.step-list li {
	position: relative;
	min-height: 48px;
	padding: 8px 0 16px 58px;
	counter-increment: steps;
}

.step-list li::before {
	content: counter(steps, bengali);
	position: absolute;
	top: 2px;
	left: 0;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	color: #fff;
	background: var(--green);
	border-radius: 14px;
	font-weight: 800;
}

.check-list li {
	position: relative;
	padding: 7px 0 7px 30px;
}

.check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--green);
	font-weight: 900;
}

.notice {
	padding: 18px 20px;
	background: #fff9e8;
	border-left: 4px solid var(--amber);
	border-radius: 0 14px 14px 0;
}

.risk-note {
	padding: 20px;
	color: #5a211e;
	background: #fff1ef;
	border: 1px solid #f4c9c4;
	border-radius: 16px;
}

.home-faq details,
.faq-group details {
	margin: 12px 0;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 15px;
}

.home-faq summary,
.faq-group summary {
	position: relative;
	padding: 18px 54px 18px 20px;
	color: var(--navy);
	cursor: pointer;
	font-weight: 800;
	list-style: none;
}

.home-faq summary::-webkit-details-marker,
.faq-group summary::-webkit-details-marker {
	display: none;
}

.home-faq summary::after,
.faq-group summary::after {
	content: "+";
	position: absolute;
	top: 13px;
	right: 18px;
	font-size: 1.45rem;
	color: var(--green);
}

.home-faq details[open] summary::after,
.faq-group details[open] summary::after {
	content: "−";
}

.home-faq details > :not(summary),
.faq-group details > :not(summary) {
	margin: 0;
	padding: 0 20px 18px;
}

.interior-main {
	padding: clamp(2rem, 6vw, 5.5rem) 0;
	background:
		linear-gradient(180deg, rgba(8, 127, 91, 0.09), transparent 22rem),
		var(--wash);
}

.article-card {
	max-width: 980px;
	margin-inline: auto;
	padding: clamp(1.4rem, 5vw, 4rem);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.entry-header {
	padding-bottom: 1.5rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid var(--line);
}

.entry-header h1 {
	max-width: 820px;
	margin: 0;
	color: var(--navy);
	font-size: clamp(2rem, 5vw, 3.7rem);
	line-height: 1.13;
	letter-spacing: -0.035em;
}

.entry-kicker {
	margin: 0 0 0.5rem;
	color: var(--green);
	font-weight: 900;
}

.entry-content > * + * {
	margin-top: 1.4rem;
}

.entry-content > h2 {
	margin-top: clamp(2.8rem, 6vw, 4.5rem);
}

.entry-content > .wp-block-group,
.entry-content > .wp-block-columns {
	margin-top: clamp(2rem, 5vw, 3.4rem);
}

.site-footer {
	padding: 4rem 0 1.2rem;
	color: #d7e6e6;
	background: linear-gradient(140deg, #0d2039, #262350 62%, #102f36);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 42px;
}

.footer-brand .brand-link {
	color: #fff;
}

.footer-brand p,
.footer-notes p {
	color: #c6d8d7;
}

.footer-nav ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
	gap: 9px 24px;
}

.footer-nav a {
	color: #fff;
	text-decoration: none;
}

.age-note {
	padding: 14px 16px;
	border: 1px solid rgba(244, 183, 64, 0.45);
	border-radius: 14px;
}

.footer-base {
	padding-top: 1.8rem;
	margin-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	font-size: 0.82rem;
}

.mobile-action-bar {
	display: none;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.post-card {
	padding: 22px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 18px;
}

.search-form {
	display: flex;
	gap: 8px;
}

.search-field {
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid var(--line);
	border-radius: 12px;
}

.search-form button {
	padding: 0 20px;
	color: #fff;
	background: var(--green);
	border: 0;
	border-radius: 12px;
}

@media (max-width: 1020px) {
	.primary-nav {
		position: absolute;
		top: calc(100% + 1px);
		left: 20px;
		right: 20px;
		display: none;
		padding: 16px;
		background: #fff;
		border: 1px solid var(--line);
		border-radius: 16px;
		box-shadow: var(--shadow);
	}

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

	.primary-nav ul {
		display: grid;
		gap: 4px;
	}

	.primary-nav a {
		display: block;
		padding: 10px;
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
	}

	.snapshot-grid,
	.quick-access,
	.topic-grid,
	.decision-grid,
	.payment-lanes,
	.safety-grid,
	.faq-index {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}

	.header-action {
		display: none;
	}

	.homepage-hero .wp-block-columns {
		flex-direction: column-reverse;
	}

	.homepage-hero h1 {
		font-size: clamp(2.1rem, 11vw, 3.4rem);
	}

	.footer-grid,
	.post-grid {
		grid-template-columns: 1fr;
	}

	.mobile-action-bar {
		position: fixed;
		z-index: 120;
		right: 14px;
		bottom: 14px;
		left: 14px;
		display: block;
		padding: 7px;
		background: rgba(255, 255, 255, 0.94);
		border: 1px solid var(--line);
		border-radius: 999px;
		box-shadow: 0 18px 50px rgba(2, 45, 34, 0.26);
		backdrop-filter: blur(12px);
	}

	.mobile-action-bar a {
		width: 100%;
	}

	body {
		padding-bottom: 84px;
	}
}

@media (max-width: 640px) {
	:root {
		--shell: min(100% - 24px, 1160px);
	}

	body {
		font-size: 16px;
		line-height: 1.72;
	}

	.site-header__inner {
		min-height: 66px;
		gap: 10px;
	}

	.site-branding,
	.brand-link,
	.custom-logo-link {
		max-width: min(58vw, 176px);
	}

	.custom-logo,
	.custom-logo-link img,
	.site-branding img,
	.brand-logo img,
	.footer-brand img,
	.footer-logo img {
		width: auto;
		height: auto;
		max-width: 138px;
		max-height: 44px;
		object-fit: contain;
	}

	.brand-copy small {
		display: none;
	}

	.snapshot-grid,
	.quick-access,
	.topic-grid,
	.decision-grid,
	.payment-lanes,
	.safety-grid,
	.faq-index {
		grid-template-columns: 1fr;
	}

	.section-shell,
	.wp-block-group.section-shell,
	.article-card {
		padding: 1.25rem;
		border-radius: 18px;
	}

	.quick-access {
		margin-top: -1.8rem !important;
	}

	.front-page h2,
	.entry-content h2 {
		font-size: 1.65rem;
	}

	.wp-block-table th,
	.wp-block-table td {
		min-width: 145px;
		padding: 11px;
	}

	.footer-nav ul {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

