:root {
	--paper: #f8f6f1;
	--paper-deep: #efece4;
	--surface: #ffffff;
	--ink: #0b1727;
	--ink-soft: #415065;
	--navy: #071d33;
	--navy-2: #0c2f4b;
	--coral: #e9573f;
	--coral-dark: #bd3827;
	--amber: #f2ab2b;
	--teal: #0c948b;
	--teal-dark: #087069;
	--line: #dfe3e5;
	--shadow-sm: 0 10px 30px rgba(12, 30, 48, 0.08);
	--shadow-lg: 0 24px 70px rgba(12, 30, 48, 0.15);
	--radius-sm: 10px;
	--radius-md: 18px;
	--radius-lg: 30px;
	--container: 1180px;
	--reading: 780px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: "Noto Sans Bengali", "Hind Siliguri", "SolaimanLipi", system-ui, -apple-system, sans-serif;
	font-size: 17px;
	line-height: 1.75;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.has-sticky-action {
	padding-bottom: 0;
}

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

figure {
	margin: 0;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
	outline: 3px solid var(--amber);
	outline-offset: 4px;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.65em;
	color: var(--ink);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

h1 {
	font-size: clamp(2.35rem, 5.7vw, 5.2rem);
}

h2 {
	font-size: clamp(1.75rem, 3vw, 2.65rem);
}

h3 {
	font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p,
ul,
ol,
table,
blockquote {
	margin: 0 0 1.3em;
}

.container {
	width: min(calc(100% - 40px), var(--container));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute !important;
	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 {
	z-index: 100000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: var(--surface);
	color: var(--ink);
	font-weight: 700;
}

.skip-link {
	position: fixed !important;
}

.utility-strip {
	background: var(--navy);
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.78rem;
	letter-spacing: 0.02em;
}

.utility-strip__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 34px;
}

.utility-strip a {
	color: #fff;
	text-decoration: none;
}

.site-header {
	position: relative;
	z-index: 90;
	background: rgba(248, 246, 241, 0.97);
	border-bottom: 1px solid rgba(11, 23, 39, 0.1);
	backdrop-filter: blur(14px);
}

.header-main {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
	min-height: 88px;
}

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

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

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

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

.brand-wordmark {
	display: grid;
	line-height: 1.1;
}

.brand-wordmark strong {
	font-family: ui-rounded, "Arial Rounded MT Bold", "Noto Sans", sans-serif;
	font-size: 1.12rem;
	letter-spacing: -0.035em;
}

.brand-wordmark small {
	margin-top: 5px;
	color: var(--ink-soft);
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.primary-navigation {
	justify-self: end;
}

.menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 2px;
}

.primary-menu a {
	display: block;
	padding: 10px 11px;
	border-radius: 8px;
	color: var(--ink);
	font-size: 0.89rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
	background: #fff;
	color: var(--coral-dark);
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: var(--surface);
	color: var(--ink);
	cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
	display: block;
	width: 20px;
	height: 2px;
	margin-inline: auto;
	background: currentColor;
	content: "";
	transition: transform 180ms ease;
}

.nav-toggle__bars::before {
	transform: translateY(-6px);
}

.nav-toggle__bars::after {
	transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
	background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
	transform: translateY(0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
	transform: translateY(-2px) rotate(-45deg);
}

.button,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 22px;
	border: 0;
	border-radius: 12px;
	font-size: 0.94rem;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.wp-block-button__link:hover {
	transform: translateY(-2px);
}

.button--header {
	min-height: 42px;
	padding: 9px 17px;
	background: var(--ink);
	color: #fff;
	box-shadow: 4px 4px 0 var(--amber);
}

.button--header:hover {
	background: var(--coral-dark);
	color: #fff;
}

.button--primary,
.wp-block-button__link {
	background: var(--coral);
	color: #fff;
	box-shadow: 7px 7px 0 var(--amber);
}

.button--primary:hover,
.wp-block-button__link:hover {
	background: var(--coral-dark);
	color: #fff;
	box-shadow: 4px 4px 0 var(--amber);
}

.brand-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(58px, 8vw, 110px) 0 clamp(64px, 8vw, 105px);
	background:
		linear-gradient(115deg, rgba(242, 171, 43, 0.1), transparent 34%),
		radial-gradient(circle at 88% 12%, rgba(12, 148, 139, 0.14), transparent 30%),
		var(--paper);
}

.brand-hero::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 34%;
	height: 12px;
	background: linear-gradient(90deg, var(--coral), var(--amber));
	content: "";
}

.brand-hero::after {
	position: absolute;
	right: -110px;
	bottom: -150px;
	width: 430px;
	height: 430px;
	border: 50px solid rgba(12, 148, 139, 0.07);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
	align-items: center;
	gap: clamp(42px, 7vw, 92px);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 18px;
	color: var(--coral-dark);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 30px;
	height: 3px;
	background: var(--amber);
	content: "";
}

.hero-copy h1 {
	max-width: 780px;
	font-size: clamp(2.45rem, 5vw, 4.75rem);
}

.hero-intro {
	max-width: 690px;
	color: var(--ink-soft);
	font-size: clamp(1.06rem, 1.6vw, 1.22rem);
	line-height: 1.75;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 22px;
	margin: 30px 0 34px;
}

.text-link {
	color: var(--ink);
	font-weight: 800;
}

.hero-snapshot {
	display: grid;
	grid-template-columns: 0.65fr 0.65fr 1.7fr;
	gap: 1px;
	overflow: hidden;
	max-width: 720px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--line);
	box-shadow: var(--shadow-sm);
}

.hero-snapshot > div {
	display: grid;
	gap: 2px;
	padding: 15px 17px;
	background: rgba(255, 255, 255, 0.92);
}

.hero-snapshot span {
	color: var(--ink-soft);
	font-size: 0.72rem;
	font-weight: 700;
}

.hero-snapshot strong {
	font-size: 0.84rem;
	line-height: 1.45;
}

.hero-visual {
	position: relative;
	padding: 14px 14px 34px 34px;
}

.hero-visual::before {
	position: absolute;
	top: -18px;
	right: -18px;
	bottom: 18px;
	left: 18px;
	border: 2px solid var(--coral);
	border-radius: 34px 10px 34px 10px;
	content: "";
}

.hero-visual::after {
	position: absolute;
	right: 0;
	bottom: 2px;
	width: 44%;
	height: 20px;
	background: var(--amber);
	content: "";
}

.hero-visual img {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 28px 8px 28px 8px;
	box-shadow: var(--shadow-lg);
	object-fit: cover;
}

.front-layout {
	display: grid;
	grid-template-columns: 210px minmax(0, 1fr);
	align-items: start;
	gap: clamp(34px, 6vw, 78px);
	padding-block: clamp(66px, 8vw, 110px);
}

.page-toc {
	position: sticky;
	top: 24px;
	padding: 22px 18px;
	border-top: 5px solid var(--coral);
	border-radius: 0 0 var(--radius-md) var(--radius-md);
	background: var(--surface);
	box-shadow: var(--shadow-sm);
}

.page-toc__title {
	margin-bottom: 10px;
	font-size: 0.84rem;
	font-weight: 900;
}

.page-toc ol {
	display: grid;
	gap: 6px;
	padding-left: 20px;
	margin: 0;
}

.page-toc li {
	color: var(--coral);
	font-size: 0.78rem;
}

.page-toc a {
	color: var(--ink-soft);
	font-weight: 700;
	line-height: 1.45;
	text-decoration: none;
}

.page-toc a:hover {
	color: var(--coral-dark);
}

.entry-content {
	min-width: 0;
	color: #1c2a3c;
}

.entry-content--home {
	max-width: 900px;
}

.entry-content--page {
	width: min(100%, var(--reading));
	margin-inline: auto;
	padding: clamp(52px, 8vw, 96px) 0;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content h2 {
	position: relative;
	margin-top: clamp(56px, 7vw, 86px);
	padding-top: 22px;
}

.entry-content h2::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 82px;
	height: 6px;
	border-radius: 10px;
	background: linear-gradient(90deg, var(--coral) 0 58%, var(--amber) 58%);
	content: "";
}

.entry-content h3 {
	margin-top: 2.2em;
}

.entry-content p,
.entry-content li {
	font-size: 1.02rem;
}

.entry-content li + li {
	margin-top: 0.45em;
}

.entry-content > p:first-child,
.lead-copy {
	color: var(--ink-soft);
	font-size: clamp(1.08rem, 1.6vw, 1.2rem);
	line-height: 1.85;
}

.entry-content a:not(.wp-block-button__link) {
	font-weight: 750;
}

.entry-content .wp-block-image {
	margin: clamp(30px, 5vw, 54px) 0;
}

.entry-content .wp-block-image img {
	width: 100%;
	max-height: 590px;
	border: 1px solid rgba(11, 23, 39, 0.08);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	object-fit: cover;
}

.entry-content figcaption {
	margin-top: 10px;
	color: var(--ink-soft);
	font-size: 0.78rem;
	text-align: left;
}

.entry-content .image-offset-left {
	width: calc(100% + 80px);
	margin-left: -80px;
}

.entry-content .image-offset-right {
	width: calc(100% + 80px);
	margin-right: -80px;
}

.wp-block-group.route-grid,
.wp-block-group.info-grid,
.wp-block-group.decision-grid,
.wp-block-group.issue-grid {
	margin: 28px 0;
}

.route-grid > .wp-block-group__inner-container,
.info-grid > .wp-block-group__inner-container,
.decision-grid > .wp-block-group__inner-container,
.issue-grid > .wp-block-group__inner-container {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.route-card,
.info-card,
.decision-card,
.issue-card,
.status-strip,
.note-panel,
.safety-panel,
.policy-panel {
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--surface);
	box-shadow: var(--shadow-sm);
}

.route-card {
	position: relative;
	overflow: hidden;
	border-top: 4px solid var(--teal);
}

.route-card::after {
	position: absolute;
	right: -26px;
	bottom: -32px;
	width: 82px;
	height: 82px;
	border: 15px solid rgba(242, 171, 43, 0.18);
	border-radius: 50%;
	content: "";
}

.route-card h3,
.info-card h3,
.decision-card h3,
.issue-card h3 {
	margin: 0 0 8px;
	font-size: 1.1rem;
}

.route-card p,
.info-card p,
.decision-card p,
.issue-card p {
	margin-bottom: 8px;
	color: var(--ink-soft);
	font-size: 0.91rem;
}

.route-card a {
	position: relative;
	z-index: 1;
}

.status-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	border-left: 6px solid var(--amber);
}

.status-strip > div {
	padding-right: 12px;
	border-right: 1px solid var(--line);
}

.status-strip > div:last-child {
	border-right: 0;
}

.status-strip strong,
.status-strip span {
	display: block;
}

.status-strip span {
	color: var(--ink-soft);
	font-size: 0.78rem;
}

.note-panel {
	border-left: 6px solid var(--teal);
}

.safety-panel {
	border: 1px solid rgba(233, 87, 63, 0.28);
	background: #fff9f4;
	box-shadow: none;
}

.policy-panel {
	border-top: 5px solid var(--ink);
	background: #fff;
}

.entry-content .wp-block-list.check-list,
.entry-content .check-list {
	padding: 0;
	list-style: none;
}

.entry-content .check-list li {
	position: relative;
	padding: 12px 12px 12px 42px;
	border-bottom: 1px solid var(--line);
}

.entry-content .check-list li::before {
	position: absolute;
	top: 15px;
	left: 11px;
	display: grid;
	width: 21px;
	height: 21px;
	place-items: center;
	border-radius: 50%;
	background: rgba(12, 148, 139, 0.12);
	color: var(--teal-dark);
	content: "✓";
	font-size: 0.74rem;
	font-weight: 900;
}

.entry-content .step-list {
	padding: 0;
	list-style: none;
	counter-reset: steps;
}

.entry-content .step-list li {
	position: relative;
	min-height: 62px;
	padding: 12px 12px 18px 68px;
	border-bottom: 1px solid var(--line);
	counter-increment: steps;
}

.entry-content .step-list li::before {
	position: absolute;
	top: 8px;
	left: 0;
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border-radius: 14px 4px 14px 4px;
	background: var(--navy);
	color: #fff;
	content: counter(steps, bengali);
	font-weight: 900;
	box-shadow: 4px 4px 0 var(--amber);
}

.wp-block-table {
	overflow-x: auto;
	margin: 28px 0;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--surface);
	box-shadow: var(--shadow-sm);
	-webkit-overflow-scrolling: touch;
}

.wp-block-table table,
.entry-content table {
	width: 100%;
	min-width: 620px;
	margin: 0;
	border-collapse: collapse;
}

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

.wp-block-table th,
.entry-content th {
	background: var(--navy);
	color: #fff;
	font-size: 0.86rem;
}

.wp-block-table tr:last-child td,
.entry-content tr:last-child td {
	border-bottom: 0;
}

.wp-block-table tr:nth-child(even) td,
.entry-content tr:nth-child(even) td {
	background: #fbfaf7;
}

.faq-list {
	display: grid;
	gap: 12px;
	margin: 28px 0;
}

.faq-list details,
.entry-content details {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--surface);
	box-shadow: 0 6px 20px rgba(12, 30, 48, 0.05);
}

.faq-list summary,
.entry-content details summary {
	position: relative;
	padding: 18px 54px 18px 20px;
	cursor: pointer;
	font-weight: 850;
	list-style: none;
}

.faq-list summary::-webkit-details-marker,
.entry-content details summary::-webkit-details-marker {
	display: none;
}

.faq-list summary::after,
.entry-content details summary::after {
	position: absolute;
	top: 50%;
	right: 18px;
	display: grid;
	width: 26px;
	height: 26px;
	place-items: center;
	border-radius: 50%;
	background: rgba(242, 171, 43, 0.22);
	content: "+";
	transform: translateY(-50%);
}

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

.faq-list details > p,
.entry-content details > p,
.entry-content details > .wp-block-group {
	padding: 0 20px 18px;
	margin: 0;
	color: var(--ink-soft);
}

.entry-content blockquote {
	padding: 24px 26px;
	border-left: 6px solid var(--coral);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	background: #fff;
	color: var(--ink-soft);
	box-shadow: var(--shadow-sm);
}

.entry-content blockquote p:last-child {
	margin-bottom: 0;
}

.wp-block-separator {
	width: 100%;
	height: 1px;
	margin: 50px 0;
	border: 0;
	background: var(--line);
}

.page-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(58px, 8vw, 98px) 0;
	background:
		linear-gradient(105deg, rgba(233, 87, 63, 0.1), transparent 38%),
		var(--navy);
	color: #fff;
}

.page-hero::after {
	position: absolute;
	top: -100px;
	right: 7%;
	width: 330px;
	height: 330px;
	border: 55px solid rgba(12, 148, 139, 0.17);
	border-radius: 50%;
	content: "";
}

.page-hero__inner {
	position: relative;
	z-index: 1;
}

.page-hero .eyebrow {
	color: #ffdba0;
}

.page-hero h1 {
	max-width: 900px;
	margin-bottom: 0;
	color: #fff;
	font-size: clamp(2.2rem, 4.6vw, 4.3rem);
}

.page-layout {
	min-height: 50vh;
}

.featured-media {
	margin-bottom: 34px;
}

.featured-media img {
	width: 100%;
	border-radius: var(--radius-md);
}

.archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	padding-block: 72px 96px;
}

.article-card {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: #fff;
	box-shadow: var(--shadow-sm);
}

.article-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--navy);
}

.article-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.article-card:hover .article-card__media img {
	transform: scale(1.025);
}

.article-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 70% 30%, rgba(242, 171, 43, 0.8) 0 8%, transparent 9%),
		linear-gradient(135deg, var(--navy), var(--teal-dark));
}

.article-card__body {
	padding: 22px;
}

.article-card__meta {
	margin-bottom: 7px;
	color: var(--coral-dark);
	font-size: 0.75rem;
	font-weight: 800;
}

.article-card h2 {
	margin: 0 0 10px;
	font-size: 1.28rem;
}

.article-card h2 a {
	color: var(--ink);
	text-decoration: none;
}

.article-card__body > p:last-child {
	margin-bottom: 0;
	color: var(--ink-soft);
	font-size: 0.9rem;
}

.navigation.pagination,
.no-results {
	grid-column: 1 / -1;
}

.not-found {
	display: grid;
	min-height: 64vh;
	place-items: center;
	background:
		radial-gradient(circle at 70% 20%, rgba(12, 148, 139, 0.14), transparent 33%),
		var(--paper);
}

.not-found__inner {
	max-width: 720px;
	padding-block: 90px;
	text-align: center;
}

.not-found__inner .eyebrow {
	justify-content: center;
}

.not-found__inner p:not(.eyebrow) {
	color: var(--ink-soft);
}

.search-form {
	display: flex;
	gap: 10px;
	max-width: 620px;
}

.search-form label {
	flex: 1;
}

.search-field {
	width: 100%;
	height: 48px;
	padding: 0 15px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #fff;
	color: var(--ink);
	font: inherit;
}

.search-submit {
	padding: 0 18px;
	border: 0;
	border-radius: 10px;
	background: var(--coral);
	color: #fff;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.site-footer {
	margin-top: 0;
	padding: 70px 0 24px;
	background:
		linear-gradient(130deg, rgba(12, 148, 139, 0.12), transparent 35%),
		var(--navy);
	color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.25fr 0.9fr 1.15fr;
	gap: clamp(34px, 6vw, 78px);
}

.brand-link--footer {
	max-width: 240px;
	color: #fff;
}

.brand-link--footer .brand-wordmark small {
	color: rgba(255, 255, 255, 0.62);
}

.footer-brand > p,
.footer-safety p {
	margin-top: 22px;
	font-size: 0.88rem;
}

.footer-nav h2,
.footer-safety h2 {
	margin-bottom: 16px;
	color: #fff;
	font-size: 1rem;
	letter-spacing: 0;
}

.footer-menu {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 7px 18px;
}

.footer-menu a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.84rem;
	text-decoration: none;
}

.footer-menu a:hover {
	color: #fff;
}

.responsible-note {
	padding: 14px 16px;
	border-left: 4px solid var(--amber);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 24px;
	margin-top: 48px;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	font-size: 0.76rem;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom__links {
	display: flex;
	gap: 16px;
}

.footer-bottom a {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
}

.sticky-action {
	display: none;
}

@media (max-width: 1100px) {
	.header-main {
		grid-template-columns: auto auto auto;
		justify-content: space-between;
	}

	.nav-toggle {
		display: grid;
		place-items: center;
		order: 3;
	}

	.primary-navigation {
		position: absolute;
		top: 100%;
		right: 20px;
		left: 20px;
		display: none;
		padding: 13px;
		border: 1px solid var(--line);
		border-radius: 0 0 var(--radius-md) var(--radius-md);
		background: var(--surface);
		box-shadow: var(--shadow-lg);
	}

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

	.primary-menu {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.primary-menu a {
		padding: 12px;
	}

	.button--header {
		justify-self: end;
	}

	.hero-grid {
		grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
		gap: 42px;
	}

	.hero-snapshot {
		grid-template-columns: 1fr 1fr;
	}

	.hero-snapshot > div:last-child {
		grid-column: 1 / -1;
	}

	.front-layout {
		grid-template-columns: 1fr;
	}

	.page-toc {
		position: static;
	}

	.page-toc ol {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.entry-content--home {
		max-width: none;
	}

	.entry-content .image-offset-left,
	.entry-content .image-offset-right {
		width: 100%;
		margin-right: 0;
		margin-left: 0;
	}
}

@media (max-width: 820px) {
	body.has-sticky-action {
		padding-bottom: 82px;
	}

	.header-main {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 12px;
		min-height: 76px;
	}

	.button--header {
		display: none;
	}

	.nav-toggle {
		order: initial;
	}

	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-copy {
		max-width: 680px;
	}

	.hero-visual {
		max-width: 680px;
		padding: 10px 10px 26px 24px;
	}

	.route-grid > .wp-block-group__inner-container,
	.info-grid > .wp-block-group__inner-container,
	.decision-grid > .wp-block-group__inner-container,
	.issue-grid > .wp-block-group__inner-container {
		grid-template-columns: 1fr;
	}

	.status-strip {
		grid-template-columns: 1fr;
	}

	.status-strip > div {
		padding: 0 0 12px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.status-strip > div:last-child {
		padding-bottom: 0;
		border-bottom: 0;
	}

	.archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.footer-brand {
		grid-column: 1 / -1;
	}

	.sticky-action {
		position: fixed;
		z-index: 120;
		right: 10px;
		bottom: 10px;
		left: 10px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		min-height: 64px;
		padding: 8px 9px 8px 16px;
		border: 1px solid rgba(255, 255, 255, 0.16);
		border-radius: 18px;
		background: rgba(7, 29, 51, 0.97);
		color: #fff;
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
		backdrop-filter: blur(12px);
	}

	.sticky-action__copy {
		display: grid;
		line-height: 1.25;
	}

	.sticky-action__copy strong {
		font-family: ui-rounded, "Arial Rounded MT Bold", sans-serif;
		font-size: 0.88rem;
	}

	.sticky-action__copy span {
		color: rgba(255, 255, 255, 0.67);
		font-size: 0.64rem;
	}

	.button--sticky {
		min-height: 46px;
		padding: 10px 16px;
		background: var(--coral);
		color: #fff;
		font-size: 0.8rem;
		white-space: nowrap;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 16px;
	}

	.container {
		width: min(calc(100% - 28px), var(--container));
	}

	.utility-strip__inner {
		gap: 10px;
		font-size: 0.68rem;
	}

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

	.custom-logo,
	.custom-logo-link img,
	.site-branding img,
	.brand-logo img,
	.brand-link img {
		max-width: 42px;
		max-height: 42px;
	}

	.brand-wordmark strong {
		font-size: 0.98rem;
	}

	.brand-wordmark small {
		font-size: 0.6rem;
	}

	.primary-navigation {
		right: 14px;
		left: 14px;
	}

	.primary-menu {
		grid-template-columns: 1fr;
	}

	.brand-hero {
		padding-top: 52px;
	}

	.hero-copy h1 {
		font-size: clamp(2.2rem, 12vw, 3.3rem);
	}

	.hero-actions {
		align-items: stretch;
	}

	.hero-actions .button {
		width: 100%;
	}

	.hero-actions .text-link {
		width: 100%;
		text-align: center;
	}

	.hero-snapshot {
		grid-template-columns: 1fr;
	}

	.hero-snapshot > div:last-child {
		grid-column: auto;
	}

	.hero-visual {
		padding: 6px 6px 18px 16px;
	}

	.hero-visual::before {
		top: -10px;
		right: -8px;
		bottom: 12px;
		left: 10px;
	}

	.front-layout {
		padding-block: 54px 76px;
	}

	.page-toc ol {
		grid-template-columns: 1fr;
	}

	.entry-content h2 {
		margin-top: 54px;
		font-size: clamp(1.62rem, 8vw, 2.05rem);
	}

	.entry-content p,
	.entry-content li {
		font-size: 1rem;
	}

	.route-card,
	.info-card,
	.decision-card,
	.issue-card,
	.status-strip,
	.note-panel,
	.safety-panel,
	.policy-panel {
		padding: 18px;
	}

	.wp-block-table th,
	.wp-block-table td,
	.entry-content th,
	.entry-content td {
		padding: 12px;
		font-size: 0.85rem;
	}

	.archive-grid {
		grid-template-columns: 1fr;
		padding-block: 54px 76px;
	}

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

	.footer-brand {
		grid-column: auto;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.sticky-action__copy span {
		display: none;
	}
}

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

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
