:root {
	--primary: #C8102E;
	--primary-dark: #a40d25;
	--white: #ffffff;
	--dark: #1A1A1A;
	--text: #1A1A1A;
	--muted: #666666;
	--light-bg: #F7F7F7;
	--border: #E5E5E5;
	--shadow: 0 14px 42px rgba(26, 26, 26, 0.08);
	--radius: 18px;
	--container: min(1180px, calc(100% - 2rem));
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Inter", "Noto Sans JP", sans-serif;
	color: var(--text);
	background: var(--white);
	line-height: 1.7;
	text-rendering: optimizeLegibility;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

.container {
	width: var(--container);
	margin: 0 auto;
}

.section {
	padding: 6rem 0;
}

.center {
	text-align: center;
}

.narrow {
	max-width: 980px;
}

.section-label,
.eyebrow {
	margin: 0 0 1rem;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.17em;
	text-transform: uppercase;
	color: var(--primary);
}

.section-label.light {
	color: rgba(255, 255, 255, 0.8);
}

h1,
h2,
h3 {
	margin-top: 0;
	line-height: 1.2;
	color: var(--text);
}

h1 {
	font-size: clamp(2.8rem, 5vw, 5rem);
	letter-spacing: -0.06em;
	max-width: 700px;
}

h2 {
	font-size: clamp(2rem, 3vw, 3rem);
	letter-spacing: -0.04em;
	margin-bottom: 1rem;
}

p {
	margin: 0 0 1.2rem;
	color: var(--muted);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(229, 229, 229, 0.85);
	transition: box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
	box-shadow: 0 8px 18px rgba(26, 26, 26, 0.06);
}

.site-header.scrolled .header-inner {
	min-height: 72px;
}

.header-inner {
	min-height: 92px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	transition: min-height 0.25s ease;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 700;
	line-height: 1;
}

.brand-mark {
	width: 38px;
	height: 38px;
	object-fit: contain;
	display: block;
}

.brand-text {
	display: inline-flex;
	flex-direction: column;
	gap: 0.1rem;
}

.brand-word {
	color: var(--primary);
	font-size: clamp(1.45rem, 1.6vw, 2rem);
	letter-spacing: -0.06em;
}

.brand-sub {
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	color: var(--text);
}

.brand-jp {
	color: var(--muted);
	font-size: 0.56rem;
	letter-spacing: 0.08em;
	margin-top: 0.12rem;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--text);
}

.main-nav a {
	position: relative;
	padding: 0.25rem 0;
	color: var(--text);
}

.main-nav a::after {
	content: "";
	position: absolute;
	left: 0.15rem;
	bottom: -0.35rem;
	width: calc(100% - 0.3rem);
	height: 2px;
	background: var(--primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
	transform: scaleX(1);
}

.main-nav a.active {
	color: var(--primary);
}

.header-tools {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.lang-switch {
	display: flex;
	align-items: center;
	border: 1px solid var(--border);
	border-radius: 999px;
	overflow: hidden;
	background: var(--white);
}

.lang-btn {
	border: 0;
	background: transparent;
	color: var(--muted);
	padding: 0.35rem 0.7rem;
	font-size: 0.72rem;
	font-weight: 600;
	transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn.active {
	background: var(--primary);
	color: var(--white);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 0.95rem 1.6rem;
	min-height: 48px;
	font-weight: 600;
	letter-spacing: 0.01em;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
	transform: translateY(-1px);
}

.btn-primary {
	background: var(--primary);
	color: var(--white);
	box-shadow: 0 12px 24px rgba(200, 16, 46, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
	background: var(--primary-dark);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.4);
	color: var(--white);
}

.btn-compact {
	min-height: 42px;
	padding: 0.75rem 1.2rem;
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: var(--white);
	padding: 0.7rem 0.6rem;
}

.menu-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--dark);
	margin: 5px 0;
	border-radius: 2px;
}

.hero {
	position: relative;
	min-height: 720px;
	display: flex;
	align-items: center;
	background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(12, 12, 12, 0.7), rgba(12, 12, 12, 0.45));
}

.hero-content {
	position: relative;
	z-index: 1;
	color: var(--white);
	padding: 7rem 0 5rem;
}

.hero .eyebrow {
	color: rgba(255, 255, 255, 0.8);
}

.hero h1,
.hero .lead,
.hero .hero-copy,
.hero .hero-meta {
	color: var(--white);
}

.hero .lead {
	max-width: 760px;
	font-size: clamp(1.12rem, 1.8vw, 1.5rem);
	line-height: 1.7;
	margin-bottom: 0.75rem;
}

.hero .hero-copy {
	max-width: 760px;
	font-size: 1rem;
	opacity: 0.9;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.hero-meta {
	opacity: 0.9;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 4rem;
	align-items: center;
}

.intro-copy {
	position: relative;
	padding-left: 1.3rem;
}

.inline-link {
	display: inline-block;
	margin-top: 1.2rem;
	color: var(--text);
	font-weight: 600;
}

.intro-visual img {
	width: 100%;
	min-height: 500px;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.gallery-section {
	background: var(--white);
}

.gallery-tabs {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin: 2rem 0 1.5rem;
}

.gallery-tab {
	border: 1px solid var(--border);
	background: var(--white);
	color: var(--text);
	padding: 0.8rem 1.15rem;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	transition: all 0.2s ease;
}

.gallery-tab.active {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
	box-shadow: 0 12px 24px rgba(200, 16, 46, 0.18);
}

.gallery-panel {
	display: none;
}

.gallery-panel.active {
	display: block;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.gallery-item {
	grid-column: span 4;
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	border: 1px solid var(--border);
	background: var(--light-bg);
	min-height: 240px;
	aspect-ratio: 4 / 3;
}

.gallery-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.gallery-item:hover img {
	transform: scale(1.04);
}

.gallery-wide {
	grid-column: span 8;
	aspect-ratio: 16 / 9;
}

.mission {
	background: var(--white);
}

.mission-wrap {
	max-width: 1100px;
}

.mission-intro {
	max-width: 860px;
	margin: 0 auto 2rem;
	text-align: center;
	font-size: 1.08rem;
	color: var(--text);
}

.mission-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
	margin-top: 2rem;
}

/* On narrow screens, allow the company info table to be scrolled horizontally */
@media (max-width: 640px) {
	.info-table {
		min-width: 560px; /* ensures columns don't wrap too tightly */
	}
	.info-table-wrap {
		padding-bottom: 0.5rem;
	}
}

.mission-grid>div {
	background: var(--light-bg);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 1.4rem 1.2rem;
}

.mission-grid p {
	margin: 0;
	color: var(--text);
}

.business {
	background: var(--light-bg);
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.6rem;
	margin-top: 3rem;
}

.service-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2rem 1.5rem 1.6rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.card-number {
	display: inline-block;
	color: var(--primary);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	margin-bottom: 1rem;
}

.service-card h3 {
	font-size: 1.15rem;
	margin-bottom: 0.75rem;
}

.career {
	background: var(--white);
}

.section-copy {
	max-width: 760px;
	font-size: 1.02rem;
}

.timeline {
	position: relative;
	margin-top: 3rem;
	padding-left: 1.2rem;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 18px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: rgba(200, 16, 46, 0.3);
}

.timeline-item {
	position: relative;
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 1.2rem;
	padding: 0 0 1.8rem;
	align-items: start;
}

.timeline-item:last-child {
	padding-bottom: 0;
}

.timeline-step {
	position: relative;
	z-index: 1;
	width: 54px;
	height: 54px;
	border: 1px solid rgba(200, 16, 46, 0.35);
	border-radius: 50%;
	background: var(--white);
	color: var(--primary);
	font-size: 0.8rem;
	font-weight: 700;
	display: grid;
	place-items: center;
}

.timeline-item h3 {
	margin-bottom: 0.4rem;
	font-size: 1.1rem;
}

.partners-section {
	background: var(--light-bg);
}

.partners-wrap {
	max-width: 1100px;
}

.partner-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.partner-cards article {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2rem 1.4rem;
}

.partner-cards h3 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.education-partner {
	background: var(--white);
}

.partner-card {
	border: 1px solid var(--border);
	background: linear-gradient(180deg, var(--white), #fafafa);
	border-radius: calc(var(--radius) + 6px);
	padding: 2.5rem;
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
	gap: 2rem;
	align-items: center;
	margin-top: 2rem;
}

.partner-info h2 {
	margin-bottom: 0.25rem;
}

.mini-label {
	color: var(--primary);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.partner-cta {
	border-left: 2px solid rgba(200, 16, 46, 0.28);
	padding-left: 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.partner-name {
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--text);
}

.partner-type {
	color: var(--muted);
}

.partner-cta a {
	color: var(--primary);
	font-weight: 600;
}

.company-info {
	background: var(--light-bg);
}

.info-table-wrap {
	margin-top: 2rem;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	/* Allow horizontal scrolling on small screens so long table content remains readable */
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
}

.info-table {
	width: 100%;
	border-collapse: collapse;
}

.info-table th,
.info-table td {
	text-align: left;
	padding: 1.2rem 1.4rem;
	border-bottom: 1px solid var(--border);
	vertical-align: top;
}

.info-table th {
	width: 260px;
	background: rgba(247, 247, 247, 0.8);
	color: var(--text);
	font-weight: 700;
}

.info-table td {
	color: var(--muted);
}

.message-section {
	background: var(--white);
}

.message-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 3rem;
	align-items: center;
}

.message-photo-box {
	display: flex;
	justify-content: center;
}

.photo-placeholder {
	width: min(460px, 100%);
	aspect-ratio: 4/5;
	display: grid;
	place-items: center;
	background: linear-gradient(180deg, rgba(200, 16, 46, 0.08), rgba(26, 26, 26, 0.03));
	border: 1px solid var(--border);
	border-radius: 26px;
	color: var(--muted);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: var(--shadow);
}

.message-meta {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	margin-bottom: 1.2rem;
}

.message-meta strong {
	font-size: 1.2rem;
	color: var(--text);
}

.message-meta span {
	color: var(--muted);
}

.myanmar-japan {
	background: var(--white);
}

.route-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(1rem, 2vw, 2rem);
	margin-bottom: 1rem;
	font-weight: 700;
	letter-spacing: 0.09em;
}

.country {
	font-size: clamp(2rem, 5vw, 4.5rem);
	color: var(--text);
}

.country-japan {
	color: var(--primary);
}

.route-symbol {
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--primary);
}

.route-sub {
	color: var(--muted);
	font-weight: 500;
	font-size: 1rem;
}

.faq-section {
	background: var(--light-bg);
}

.faq-wrap {
	max-width: 980px;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	margin-top: 2rem;
}

.faq-item {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
}

.faq-question {
	width: 100%;
	background: transparent;
	border: 0;
	padding: 1.1rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	color: var(--text);
	font-weight: 600;
	text-align: left;
}

.faq-plus {
	color: var(--primary);
	font-size: 1.5rem;
	line-height: 1;
	transition: transform 0.2s ease;
}

.faq-answer {
	display: none;
	padding: 0 1.25rem 1.25rem;
}

.faq-item.active .faq-answer {
	display: block;
}

.faq-item.active .faq-plus {
	transform: rotate(45deg);
}

.contact-section {
	background: var(--dark);
	color: var(--white);
}

.contact-grid {
	display: grid;
	/* Use a single full-width column by default since contact content is now a single block.
	   Keeps the contact section visually full-width on desktop when the form was removed. */
	grid-template-columns: 1fr;
	gap: 2.5rem;
}

.contact-copy h2,
.contact-copy p,
.contact-card h3,
.contact-card li,
.contact-card span {
	color: var(--white);
}

.contact-card {
	margin-top: 2rem;
	padding: 1.8rem;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
}

.contact-card h3 {
	margin-bottom: 1rem;
}

.contact-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.contact-card li {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}

.contact-form {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	padding: 1.7rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.contact-form label {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.85);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.96);
	color: var(--dark);
	border-radius: 12px;
	padding: 0.9rem 1rem;
}

.contact-form select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--primary) 50%), linear-gradient(135deg, var(--primary) 50%, transparent 50%);
	background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	color: var(--dark);
}

.contact-form select option {
	color: var(--dark);
	background: var(--white);
}

.contact-form textarea {
	min-height: 120px;
	resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

.contact-form button {
	margin-top: 0.5rem;
}

.site-footer {
	background: #111111;
	color: rgba(255, 255, 255, 0.8);
	padding-top: 3rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.8fr);
	gap: 2rem;
	align-items: start;
}

.footer-brand-link {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 0.8rem;
}

.footer-brand .brand-word {
	font-size: 2rem;
}

.footer-brand p,
.footer-aside a,
.footer-langs,
.footer-bottom p {
	color: rgba(255, 255, 255, 0.7);
}

.footer-nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.8rem 2rem;
	font-size: 0.9rem;
}

.footer-nav a {
	color: rgba(255, 255, 255, 0.75);
}

.partner-title {
	font-weight: 700;
	color: var(--white);
	margin-bottom: 0.5rem;
}

.footer-langs {
	display: flex;
	gap: 0.8rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 2rem;
	padding: 1.2rem 0 2rem;
}

@media (max-width: 980px) {

	/* Hide the main navigation on smaller screens, but keep language switch visible as a floating control */
	.main-nav {
		display: none;
	}

	/* On mobile, hide the floating language switch; it will be moved inside the mobile nav when opened */
	.lang-switch {
		display: none;
	}

	/* When the language switch is moved into the mobile nav by JS, show it as a simple inline control */
	.main-nav .lang-switch.inside-menu {
		display: flex;
		position: static;
		right: auto;
		bottom: auto;
		z-index: auto;
		background: transparent;
		border: 0;
		border-radius: 0.25rem;
		padding: 0.25rem 0;
		box-shadow: none;
		margin-top: 0.5rem;
		align-self: stretch;
		justify-content: flex-start;
	}

	.main-nav .lang-switch.inside-menu .lang-btn {
		padding: 0.35rem 0.6rem;
		font-size: 0.78rem;
		color: var(--muted);
		background: transparent;
		border-radius: 999px;
	}

	/* Hidden state while mobile menu is open (kept for safety, but should not be used in this flow) */
	.lang-switch.menu-hidden {
		opacity: 0;
		pointer-events: none;
		transform: translateY(8px) scale(0.98);
	}

	.menu-toggle {
		display: inline-block;
	}

	.header-inner {
		position: relative;
	}

	.main-nav.is-open {
		position: absolute;
		top: calc(100% + 12px);
		left: 0;
		right: 0;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
		background: var(--white);
		border: 1px solid var(--border);
		border-radius: 18px;
		padding: 1rem 1.1rem;
		box-shadow: var(--shadow);
	}

	.main-nav.is-open a {
		width: 100%;
		padding: 0.2rem 0;
	}

	.cards-grid,
	.partner-cards,
	.footer-grid,
	.contact-grid,
	.intro-grid,
	.message-grid,
	.partner-card {
		grid-template-columns: 1fr;
	}

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

	.gallery-item {
		grid-column: span 1;
	}

	.gallery-wide {
		grid-column: 1 / -1;
		aspect-ratio: 16 / 9;
	}

	.partner-card {
		padding: 1.5rem;
	}

	.partner-cta {
		border-left: none;
		border-top: 2px solid rgba(200, 16, 46, 0.28);
		padding-left: 0;
		padding-top: 1rem;
	}
}

@media (max-width: 640px) {
	.section {
		padding: 4.5rem 0;
	}

	.hero {
		min-height: 620px;
	}

	.hero-content {
		padding-top: 5.5rem;
	}

	.hero-actions,
	.form-row {
		grid-template-columns: 1fr;
		display: grid;
	}

	.gallery-tabs {
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 0.25rem;
		white-space: nowrap;
		scrollbar-width: thin;
	}

	.gallery-tab {
		flex: 0 0 auto;
	}

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

	.gallery-item,
	.gallery-wide {
		grid-column: auto;
		min-height: 220px;
		aspect-ratio: 4 / 3;
	}

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

	.mission-grid>div {
		padding: 1rem 0.9rem;
		border-left: 3px solid var(--primary);
		background: linear-gradient(90deg, rgba(200, 16, 46, 0.06), var(--light-bg));
	}

	.header-tools {
		gap: 0.5rem;
	}

	/* Make general buttons full width on small screens, but keep the header CTA compact */
	.btn {
		width: 100%;
		min-height: 42px;
		padding: 0.8rem 1rem;
		font-size: 0.9rem;
	}

	/* Specifically reduce the header Contact button size on narrow screens so it doesn't dominate the header */
	.header-tools .btn {
		width: auto;
		min-height: 36px;
		padding: 0.5rem 0.9rem;
		font-size: 0.9rem;
	}

	.hero .btn:last-child {
		width: auto;
		min-width: 120px;
		padding-inline: 1rem;
	}

	.intro-visual img {
		min-height: 320px;
	}

	.site-header.scrolled .header-inner {
		min-height: 72px;
	}
}