@font-face {
	font-family: Paperlogy;
	src: url("../fonts/Paperlogy-4Regular.woff2") format("woff2");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: Paperlogy;
	src: url("../fonts/Paperlogy-6SemiBold.woff2") format("woff2");
	font-style: normal;
	font-weight: 600;
	font-display: swap;
}

@font-face {
	font-family: Paperlogy;
	src: url("../fonts/Paperlogy-7Bold.woff2") format("woff2");
	font-style: normal;
	font-weight: 700;
	font-display: swap;
}

:root {
	--ink: #101729;
	--ink-soft: #4f5a70;
	--blue: #1556d8;
	--blue-deep: #0c347f;
	--blue-light: #e9f0ff;
	--orange: #f0642b;
	--warm: #f5f3ed;
	--warm-deep: #e9e5dc;
	--white: #fff;
	--line: #dce1ea;
	--success: #0f7a52;
	--error: #b42318;
	--container: 1600px;
	--gutter: clamp(20px, 4vw, 64px);
	--section: clamp(88px, 9vw, 160px);
	--radius-sm: 14px;
	--radius-md: 24px;
	--radius-lg: clamp(28px, 3vw, 48px);
	--shadow: 0 28px 80px rgb(16 23 41 / 12%);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: Paperlogy, Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.72;
	word-break: keep-all;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	word-break: keep-all;
	overflow-wrap: normal;
	hyphens: none;
}

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

a {
	color: inherit;
	text-underline-offset: 0.2em;
}

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid var(--orange);
	outline-offset: 4px;
}

::selection {
	background: var(--blue);
	color: var(--white);
}

.site-container {
	width: min(calc(100% - (var(--gutter) * 2)), var(--container));
	margin-inline: auto;
}

.layout-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: clamp(20px, 2vw, 32px);
}

.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,
.skip-link:focus {
	top: 12px;
	left: 12px;
	z-index: 99999;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: var(--ink);
	color: var(--white);
	font-weight: 700;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgb(16 23 41 / 9%);
	background: rgb(255 255 255 / 94%);
	backdrop-filter: blur(16px);
}

.header-inner {
	display: flex;
	min-height: 80px;
	align-items: center;
	gap: clamp(22px, 3vw, 52px);
}

.site-branding,
.custom-logo-link,
.brand-link {
	display: inline-flex;
	flex: 0 0 auto;
	min-height: 44px;
	align-items: center;
}

.brand-link img,
.custom-logo {
	width: auto;
	height: 40px;
}

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

.primary-nav .menu,
.footer-menu {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2vw, 34px);
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav .menu ul {
	position: absolute;
	min-width: 220px;
	padding: 10px;
	margin: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--white);
	box-shadow: var(--shadow);
	list-style: none;
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: 160ms ease;
}

.primary-nav .menu-item-has-children {
	position: relative;
}

.primary-nav .menu-item-has-children:hover > ul,
.primary-nav .menu-item-has-children:focus-within > ul {
	opacity: 1;
	pointer-events: auto;
	transform: none;
}

.primary-nav a {
	display: flex;
	min-height: 44px;
	align-items: center;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
}

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

.header-phone {
	color: var(--ink);
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.header-phone:hover { color: var(--blue); }

.header-cta {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	border-radius: 999px;
	background: var(--ink);
	color: var(--white);
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
}

.header-cta:hover {
	background: var(--blue);
}

.nav-toggle {
	display: none;
	min-width: 48px;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 8px 13px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--white);
	color: var(--ink);
	font-size: 0.84rem;
	font-weight: 700;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
	display: block;
	width: 17px;
	height: 2px;
	background: currentColor;
}

.nav-toggle__icon {
	position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
	position: absolute;
	left: 0;
	content: "";
}

.nav-toggle__icon::before { top: -6px; }
.nav-toggle__icon::after { top: 6px; }

.hero-section {
	position: relative;
	min-height: calc(100svh - 80px);
	overflow: hidden;
	background: var(--warm);
}

.hero-backdrop {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 12% 82%, rgb(21 86 216 / 13%), transparent 29%),
		linear-gradient(90deg, transparent 0 63%, rgb(21 86 216 / 6%) 63% 100%);
}

.hero-grid {
	position: relative;
	min-height: calc(100svh - 80px);
	align-items: center;
	padding-block: clamp(56px, 7vw, 112px);
}

.hero-copy {
	grid-column: 1 / span 7;
	padding-right: clamp(0px, 3vw, 56px);
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 20px;
	color: var(--blue);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 28px;
	height: 2px;
	background: currentColor;
	content: "";
}

.hero-copy h1,
.section-heading h2,
.contact-copy h2,
.entry-hero h1,
.page-hero h1,
.archive-hero h1 {
	margin: 0;
	font-weight: 700;
	letter-spacing: -0.055em;
	line-height: 1.04;
	text-wrap: balance;
}

.hero-copy h1 {
	max-width: 9.4ch;
	font-size: clamp(3.5rem, 6.7vw, 8.1rem);
	letter-spacing: -0.035em;
	line-height: 1.07;
}

.hero-lead {
	max-width: 680px;
	margin: clamp(24px, 3vw, 42px) 0 0;
	color: var(--ink-soft);
	font-size: clamp(1.06rem, 1.35vw, 1.35rem);
	line-height: 1.72;
}

.button-group,
.form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.button-group {
	margin-top: 36px;
}

.button {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	padding: 13px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	font-weight: 700;
	text-decoration: none;
	transition: 160ms ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button:disabled {
	cursor: wait;
	opacity: 0.65;
	transform: none;
}

.button--primary {
	background: var(--blue);
	color: var(--white);
}

.button--primary:hover { background: var(--blue-deep); }

.button--secondary,
.button--ghost {
	border-color: rgb(16 23 41 / 18%);
	background: rgb(255 255 255 / 75%);
	color: var(--ink);
}

.button--light {
	background: var(--white);
	color: var(--blue-deep);
}

.hero-quick-form {
	max-width: 760px;
	padding: 18px;
	margin-top: 34px;
	border: 1px solid rgb(16 23 41 / 12%);
	border-radius: 20px;
	background: rgb(255 255 255 / 75%);
}

.hero-quick-form > p {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 12px;
	font-size: 0.8rem;
	font-weight: 700;
}

.hero-quick-form > p span {
	color: var(--ink-soft);
	font-size: 0.84rem;
	font-weight: 400;
}

.hero-quick-form__grid {
	display: grid;
	grid-template-columns: 1.15fr 1.2fr 1fr 1fr 142px;
	gap: 8px;
}

.hero-quick-form label {
	display: grid;
	gap: 4px;
}

.hero-quick-form label > span {
	color: var(--ink-soft);
	font-size: 0.84rem;
}

.hero-quick-form input,
.hero-quick-form select {
	width: 100%;
	min-width: 0;
	height: 44px;
	padding: 8px 10px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--white);
	color: var(--ink);
	font-size: 0.84rem;
}

.quick-date-field {
	position: relative;
}

.quick-date-field > label:first-child { display: grid; }

.quick-date-undecided {
	position: absolute;
	top: -1px;
	right: 0;
	display: flex !important;
	align-items: center;
	gap: 4px !important;
	font-size: 0.82rem;
}

.quick-date-undecided input {
	width: 15px;
	height: 15px;
	min-height: 0;
	margin: 0;
	accent-color: var(--blue);
}

.hero-quick-form input[aria-invalid="true"],
.hero-quick-form select[aria-invalid="true"] {
	border-color: var(--error);
}

.hero-quick-form button {
	align-self: end;
	width: 142px;
	height: 44px;
	border: 0;
	border-radius: 12px;
	background: var(--ink);
	color: var(--white);
	cursor: pointer;
	font-size: 0.92rem;
}

.hero-quick-form button span { font-size: 0.875rem; font-weight: 700; }

.hero-quick-form__error {
	margin-top: 10px;
	color: var(--error);
	font-size: 0.84rem;
	font-weight: 600;
}

.hero-visual {
	position: relative;
	grid-column: 8 / -1;
	margin: 0;
}

.hero-visual picture { display: block; height: 100%; }

.hero-visual img {
	width: 100%;
	height: min(72vh, 820px);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	object-fit: cover;
	object-position: 50% 44%;
}

.hero-visual figcaption,
.service-feature__media figcaption {
	position: absolute;
	right: 16px;
	bottom: 14px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgb(16 23 41 / 72%);
	color: var(--white);
	font-size: 0.82rem;
}

.hero-visual__note {
	position: absolute;
	bottom: clamp(30px, 4vw, 64px);
	left: clamp(-62px, -4vw, -34px);
	display: grid;
	min-width: 214px;
	gap: 2px;
	padding: 24px 26px;
	border-radius: 20px;
	background: var(--blue);
	box-shadow: 0 18px 50px rgb(21 86 216 / 30%);
	color: var(--white);
}

.hero-visual__note strong { font-size: 1.25rem; }
.hero-visual__note span { color: #dce6ff; font-size: 0.82rem; }

.trust-strip {
	border-bottom: 1px solid var(--line);
	background: var(--white);
}

.trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-strip__grid > div {
	padding: 26px clamp(18px, 2.4vw, 40px);
	border-left: 1px solid var(--line);
}

.trust-strip__grid > div:last-child { border-right: 1px solid var(--line); }

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

.trust-strip span {
	margin-bottom: 3px;
	color: var(--ink-soft);
	font-size: 0.72rem;
}

.trust-strip strong {
	overflow-wrap: anywhere;
	font-size: 0.94rem;
	font-weight: 600;
}

.section {
	padding-block: var(--section);
}

.section-heading {
	max-width: 900px;
	margin-bottom: clamp(48px, 6vw, 88px);
}

.section-heading h2,
.contact-copy h2 {
	font-size: clamp(2.65rem, 5vw, 6rem);
}

.section-heading > p:last-child,
.section-heading--wide > p,
.section-heading--split > p {
	color: var(--ink-soft);
}

.section-heading--wide {
	display: grid;
	max-width: none;
	grid-template-columns: 7fr 4fr;
	align-items: end;
	gap: 8.33%;
}

.section-heading--wide > p {
	max-width: 520px;
	margin: 0;
}

.section-heading--split {
	display: flex;
	max-width: none;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
}

.service-stack {
	display: grid;
	gap: clamp(72px, 10vw, 160px);
}

.service-feature {
	display: grid;
	grid-template-columns: 5fr 7fr;
	align-items: center;
	gap: clamp(40px, 7vw, 120px);
}

.service-feature--reverse .service-feature__copy { order: 2; }
.service-feature--reverse .service-feature__media { order: 1; }

.service-feature__copy {
	max-width: 560px;
}

.service-number {
	display: inline-flex;
	width: 56px;
	height: 56px;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--blue);
	font-size: 0.8rem;
	font-weight: 700;
}

.service-kicker {
	margin: 0 0 12px;
	color: var(--blue);
	font-size: 0.86rem;
	font-weight: 700;
}

.service-feature h3 {
	margin: 0;
	font-size: clamp(2rem, 3.3vw, 4rem);
	letter-spacing: -0.045em;
	line-height: 1.12;
	text-wrap: balance;
}

.service-feature__copy > p:not(.service-kicker) {
	margin: 24px 0;
	color: var(--ink-soft);
}

.service-feature__media {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--warm);
}

.service-feature__media img {
	width: 100%;
	aspect-ratio: 14 / 9;
	object-fit: cover;
	transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

.service-feature:hover .service-feature__media img { transform: scale(1.025); }
.service-feature__media--portrait img { object-position: 50% 36%; }

.text-link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 8px;
	color: var(--blue-deep);
	font-weight: 700;
	text-decoration: none;
}

.text-link:hover { text-decoration: underline; }

.process-section,
.cases-section {
	background: var(--ink);
	color: var(--white);
}

.process-section {
	position: relative;
	overflow: hidden;
}

.process-section::after {
	position: absolute;
	top: -380px;
	right: -260px;
	width: 740px;
	height: 740px;
	border: 1px solid rgb(255 255 255 / 11%);
	border-radius: 50%;
	box-shadow: 0 0 0 100px rgb(255 255 255 / 2%), 0 0 0 200px rgb(255 255 255 / 2%);
	content: "";
}

.section-heading--light {
	position: relative;
	z-index: 1;
}

.section-heading--light > p:last-child { color: #b8c1d1; }
.section-heading--light .eyebrow { color: #8eaff5; }

.process-list {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding: 0;
	margin: 0;
	border-top: 1px solid rgb(255 255 255 / 19%);
	border-left: 1px solid rgb(255 255 255 / 19%);
	list-style: none;
}

.process-list li {
	min-height: 280px;
	padding: clamp(28px, 2.6vw, 44px);
	border-right: 1px solid rgb(255 255 255 / 19%);
	border-bottom: 1px solid rgb(255 255 255 / 19%);
}

.process-list span {
	display: block;
	margin-bottom: clamp(44px, 4vw, 68px);
	color: #7ca2ff;
	font-size: 0.78rem;
	font-weight: 700;
}

.process-list h3 {
	margin: 0 0 14px;
	font-size: clamp(1.35rem, 2vw, 2rem);
	letter-spacing: -0.035em;
}

.process-list p {
	margin: 0;
	color: #aeb8ca;
	font-size: 0.93rem;
}

.cases-section {
	padding-top: 0;
}

.cases-section .site-container {
	padding-top: var(--section);
	border-top: 1px solid rgb(255 255 255 / 13%);
}

.cases-section--empty { padding-bottom: clamp(44px, 4vw, 64px); }
.cases-section--empty .site-container { padding-top: clamp(44px, 4vw, 64px); }
.cases-section--empty .section-heading { margin-bottom: clamp(30px, 3vw, 44px); }
.cases-section--empty .case-empty { padding-block: 22px; }

.text-link--light { color: var(--white); }

.case-empty {
	display: grid;
	grid-template-columns: 3fr 9fr;
	gap: 5%;
	align-items: start;
	padding: clamp(38px, 4vw, 58px) 0;
	border-top: 1px solid rgb(255 255 255 / 18%);
	border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.case-empty__mark {
	margin: 0;
	color: #7ca2ff;
	font-size: clamp(4.5rem, 8vw, 8rem);
	font-weight: 700;
	letter-spacing: -0.08em;
	line-height: 0.8;
}

.case-empty h3 {
	margin: 0 0 18px;
	font-size: clamp(2rem, 3vw, 3.4rem);
	letter-spacing: -0.05em;
	line-height: 1.08;
}

.case-empty p:last-child {
	max-width: 700px;
	color: #b7c0d0;
}

.guides-section { background: var(--warm); }

.guide-topics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid #cbc8c0;
	border-bottom: 1px solid #cbc8c0;
}

.guide-topics article {
	min-height: 310px;
	border-left: 1px solid #cbc8c0;
}

.guide-topics article > a {
	display: block;
	height: 100%;
	padding: clamp(28px, 3.3vw, 52px);
	text-decoration: none;
}

.guide-topics article > a:hover h3 { color: var(--blue); }

.guide-topics article:last-child { border-right: 1px solid #cbc8c0; }

.guide-topics span {
	color: var(--blue);
	font-size: 0.76rem;
	font-weight: 700;
}

.guide-topics p {
	margin: 70px 0 12px;
	color: var(--ink-soft);
	font-size: 0.82rem;
}

.guide-topics h3 {
	margin: 0;
	font-size: clamp(1.28rem, 1.8vw, 1.72rem);
	letter-spacing: -0.035em;
	line-height: 1.4;
}

.latest-guides { margin-top: 84px; }
.section-subheading h3 { font-size: 1.5rem; }

.publishing-note {
	padding: 28px 0;
	margin: 28px 0 0;
	border-bottom: 1px solid #cbc8c0;
	color: var(--ink-soft);
}

.card-grid {
	display: grid;
	gap: clamp(18px, 2.2vw, 34px);
}

.card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid--balanced { width: min(100%, 1120px); grid-template-columns: repeat(2, minmax(0, 1fr)); margin-inline: auto; }

.service-card,
.content-card {
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--white);
}

.service-card { padding: clamp(28px, 3.5vw, 50px); }

.content-card {
	overflow: hidden;
	transition: 180ms ease;
}

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

.content-card__link {
	display: flex;
	height: 100%;
	flex-direction: column;
	text-decoration: none;
}

.content-card__media {
	position: relative;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--blue-light);
}

.content-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.content-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--blue-light), var(--warm));
}

.content-card__stock-label {
	position: absolute;
	right: 12px;
	bottom: 12px;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgb(11 16 32 / 78%);
	color: var(--white);
	font-size: 0.75rem;
	font-weight: 600;
}

.content-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(24px, 3vw, 36px);
}

.content-card__type {
	margin: 0 0 12px;
	color: var(--blue);
	font-size: 0.78rem;
	font-weight: 700;
}

.content-card h3 {
	margin: 0;
	font-size: clamp(1.24rem, 1.7vw, 1.7rem);
	letter-spacing: -0.035em;
	line-height: 1.38;
}

.content-card__body > p:not(.content-card__type) { color: var(--ink-soft); }
.content-card__more { padding-top: 18px; margin-top: auto; font-weight: 700; }

.card-grid--dark .content-card {
	border-color: rgb(255 255 255 / 16%);
	background: #172036;
}

.card-grid--dark .content-card__body > p:not(.content-card__type) { color: #aeb8ca; }

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

.faq-layout {
	display: grid;
	grid-template-columns: 4fr 7fr;
	gap: 8.33%;
}

.faq-layout .section-heading {
	position: sticky;
	top: 130px;
	align-self: start;
	margin-bottom: 0;
}

.faq-list {
	border-top: 1px solid var(--ink);
}

.faq-list details {
	border-bottom: 1px solid var(--line);
}

.faq-list summary {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 24px;
	align-items: center;
	padding: 30px 0;
	cursor: pointer;
	font-size: clamp(1.08rem, 1.5vw, 1.35rem);
	font-weight: 600;
	list-style: none;
}

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

.faq-list summary span {
	display: inline-flex;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line);
	border-radius: 50%;
	font-size: 1.4rem;
	transition: transform 160ms ease;
}

.faq-list details[open] summary span { transform: rotate(45deg); }

.faq-list details p {
	max-width: 720px;
	padding: 0 60px 32px 0;
	margin: 0;
	color: var(--ink-soft);
}

.contact-section {
	padding-block: var(--section);
	background: var(--blue);
	color: var(--white);
}

.contact-layout {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: clamp(42px, 7vw, 120px);
	align-items: start;
}

.contact-copy {
	position: sticky;
	top: 130px;
}

.contact-copy .eyebrow { color: #c9d8ff; }
.contact-copy > p:not(.eyebrow) { max-width: 560px; color: #d8e3ff; }

.contact-facts {
	margin: 64px 0 0;
	border-top: 1px solid rgb(255 255 255 / 26%);
}

.contact-facts > div {
	display: grid;
	grid-template-columns: 92px 1fr;
	gap: 20px;
	padding: 20px 0;
	border-bottom: 1px solid rgb(255 255 255 / 26%);
}

.contact-facts dt { color: #c8d8ff; font-size: 0.8rem; }
.contact-facts dd { margin: 0; overflow-wrap: anywhere; font-weight: 600; }

.inquiry-panel {
	padding: clamp(26px, 4.2vw, 64px);
	border-radius: var(--radius-lg);
	background: var(--white);
	box-shadow: 0 34px 100px rgb(7 28 72 / 28%);
	color: var(--ink);
}

.inquiry-assurance {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	padding: 0;
	margin: 0 0 28px;
	list-style: none;
}

.inquiry-assurance li {
	display: flex;
	align-items: center;
	min-height: 52px;
	padding: 10px 12px;
	border-radius: 10px;
	background: #f3f6fb;
	color: var(--ink-soft);
	font-size: 0.76rem;
	font-weight: 600;
	line-height: 1.35;
}

.inquiry-assurance li::before {
	content: "✓";
	margin-right: 7px;
	color: var(--blue);
	font-weight: 800;
}

.form-notice {
	padding: 20px 22px;
	margin-bottom: 28px;
	border-radius: var(--radius-sm);
}

.form-notice p { margin: 4px 0 0; }
.form-notice--success { background: #e9f8f1; color: var(--success); }
.form-notice--error { background: #fff0ee; color: var(--error); }

.form-error-summary {
	padding: 14px 16px;
	margin-bottom: 24px;
	border-left: 4px solid var(--error);
	background: #fff0ee;
	color: var(--error);
	font-size: 0.88rem;
	font-weight: 600;
}

.form-progress {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 6px;
	padding: 0 0 30px;
	margin: 0 0 36px;
	border-bottom: 1px solid var(--line);
	list-style: none;
}

.form-progress li {
	display: flex;
	align-items: center;
	gap: 9px;
	color: #59647a;
	font-size: 0.78rem;
	font-weight: 600;
}

.form-progress li span {
	display: inline-flex;
	width: 28px;
	height: 28px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #edf0f5;
	font-size: 0.7rem;
}

.form-progress li.is-current,
.form-progress li.is-complete { color: var(--blue); }
.form-progress li.is-current span,
.form-progress li.is-complete span { background: var(--blue); color: var(--white); }

.form-step {
	padding: 0;
	margin: 0;
	border: 0;
	scroll-margin-top: 96px;
}

.js .form-step:not(.is-active) { display: none; }

.form-step legend {
	width: 100%;
	padding: 0;
	margin-bottom: 30px;
	font-size: clamp(1.55rem, 2.5vw, 2.4rem);
	font-weight: 700;
	letter-spacing: -0.04em;
}

.form-step legend span {
	margin-right: 12px;
	color: var(--blue);
	font-size: 0.78rem;
	vertical-align: middle;
}

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

.field,
.check-field {
	display: grid;
	align-content: start;
	gap: 9px;
	margin-bottom: 20px;
}

.field > span {
	font-size: 0.88rem;
	font-weight: 600;
}

.field b,
.check-field b {
	margin-left: 4px;
	color: var(--blue);
	font-size: 0.68rem;
}

.field input,
.field select,
.field textarea {
	width: 100%;
	min-height: 56px;
	padding: 13px 15px;
	border: 1px solid #cfd5df;
	border-radius: 12px;
	background: var(--white);
	color: var(--ink);
}

.field textarea {
	min-height: 180px;
	resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgb(21 86 216 / 12%);
	outline: 0;
}

.field small {
	color: var(--ink-soft);
	font-size: 0.82rem;
}

.field-error {
	display: block;
	color: var(--error);
	font-size: 0.82rem;
	font-weight: 600;
}

.check-field {
	display: flex;
	grid-column: 1 / -1;
	min-height: 44px;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 0.84rem;
}

.check-field input {
	flex: 0 0 19px;
	width: 19px;
	height: 19px;
	margin-top: 3px;
	accent-color: var(--blue);
}

.check-field--consent {
	align-items: flex-start;
	padding: 18px;
	border-radius: 12px;
	background: #f4f6f9;
	color: var(--ink-soft);
	line-height: 1.55;
}

.check-field--consent a { color: var(--blue-deep); font-weight: 700; }

.form-actions {
	justify-content: space-between;
	margin-top: 30px;
}

.form-actions--end { justify-content: flex-end; }
.form-fallback { margin: 24px 0 0; color: var(--ink-soft); font-size: 0.84rem; }
.form-fallback a { color: var(--blue); font-weight: 600; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.site-footer {
	padding-top: clamp(72px, 8vw, 120px);
	background: #0b1020;
	color: var(--white);
}

.footer-grid {
	display: grid;
	grid-template-columns: 5fr 3fr 4fr;
	gap: clamp(34px, 5vw, 82px);
}

.brand-link--footer img { height: 44px; }

.footer-brand p,
.footer-note,
.footer-widget,
.footer-legal {
	color: #9fa9bc;
}

.footer-legal { font-size: 0.8rem; }
.footer-legal span { display: block; }

.footer-contact h2,
.footer-links h2,
.footer-widget__title {
	margin-top: 0;
	font-size: 0.9rem;
}

.footer-contact a {
	display: block;
	overflow-wrap: anywhere;
	color: var(--white);
	font-weight: 600;
}

.footer-phone { margin-bottom: 6px; font-size: 1.2rem; }

.footer-links ul { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.footer-links a { color: #c5ccda; text-decoration: none; }
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.footer-widgets { grid-column: 1 / -1; }

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-block: 32px;
	margin-top: 72px;
	border-top: 1px solid rgb(255 255 255 / 13%);
	color: #8f99ad;
	font-size: 0.8rem;
}

.footer-menu { gap: 20px; flex-wrap: wrap; }
.footer-menu a { color: var(--white); }
.mobile-contact-bar { display: none; }

.archive-hero,
.page-hero,
.entry-hero {
	padding-block: clamp(72px, 9vw, 148px);
	background: var(--warm);
}

.archive-hero__inner,
.page-hero__inner,
.entry-hero__inner { max-width: 1180px; }

.breadcrumbs {
	margin-bottom: 28px;
	color: var(--ink-soft);
	font-size: 0.82rem;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.breadcrumbs li { display: inline-flex; gap: 8px; align-items: center; }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: #a6a9b0; }
.breadcrumbs a { color: inherit; text-decoration: none; }
.breadcrumbs a:hover { color: var(--blue); text-decoration: underline; }

.archive-hero h1,
.page-hero h1,
.entry-hero h1 {
	max-width: 19ch;
	font-size: clamp(2.7rem, 5.4vw, 6rem);
}

.archive-description,
.archive-hero__inner > p:last-child { color: var(--ink-soft); }

.entry-meta {
	margin-top: 24px;
	color: var(--ink-soft);
	font-size: 0.9rem;
}

.entry-author { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

.entry-featured-media { margin-top: clamp(36px, 5vw, 78px); }

.entry-featured-media img {
	width: 100%;
	max-height: 620px;
	border-radius: var(--radius-md);
	object-fit: cover;
}

.entry-featured-media--guide figcaption {
	margin-top: 10px;
	color: var(--ink-soft);
	font-size: 0.82rem;
}

.entry-layout {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	padding-block: clamp(64px, 8vw, 128px);
}

.entry-content {
	grid-column: 4 / span 6;
	min-width: 0;
	font-size: clamp(1.04rem, 1.15vw, 1.18rem);
	line-height: 1.88;
}

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

.case-facts {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 1px;
	padding: 1px;
	margin: 0 0 clamp(42px, 6vw, 72px);
	border-radius: var(--radius-md);
	background: var(--line);
	overflow: hidden;
}

.case-facts > div { padding: 18px 16px; background: var(--white); }
.case-facts dt { color: var(--ink-soft); font-size: 0.875rem; font-weight: 600; line-height: 1.4; }
.case-facts dd { margin: 6px 0 0; font-size: 0.92rem; font-weight: 700; line-height: 1.5; }

.entry-content h2,
.entry-content h3 {
	margin-top: 2.2em;
	margin-bottom: 0.75em;
	letter-spacing: -0.04em;
	line-height: 1.3;
}

.entry-content h2 { font-size: clamp(1.7rem, 2.6vw, 2.55rem); }
.entry-content h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote { margin-block: 1.25em; }
.entry-content a { color: var(--blue-deep); font-weight: 600; }
.entry-content blockquote { padding: 8px 0 8px 24px; border-left: 4px solid var(--blue); color: var(--ink-soft); }
.entry-content figure { margin-block: 2.5em; }
.entry-content figcaption { margin-top: 10px; color: var(--ink-soft); font-size: 0.82rem; }

.article-lede {
	margin-bottom: 2em !important;
	color: var(--ink);
	font-size: clamp(1.25rem, 1.8vw, 1.55rem);
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 1.7;
}

.article-toc {
	display: grid;
	grid-template-columns: max-content repeat(5, minmax(0, 1fr));
	gap: 12px;
	align-items: center;
	padding: 20px 24px;
	margin: 2.5em 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	font-size: 0.84rem;
}

.article-toc strong,
.article-toc a { white-space: nowrap; }
.article-toc a { text-align: center; text-decoration: none; }
.article-toc a:hover { text-decoration: underline; }
.article-print-button { min-height: 48px; padding: 11px 18px; margin-bottom: 2em; border: 1px solid var(--blue); border-radius: 999px; background: var(--white); color: var(--blue-deep); cursor: pointer; font-weight: 700; }
.article-print-button:hover { background: var(--blue-light); }

.article-summary,
.article-callout,
.article-sources {
	padding: clamp(24px, 4vw, 40px);
	margin: 2.4em 0;
	border-radius: var(--radius-md);
}

.article-summary { background: var(--warm); }
.article-summary > strong,
.article-callout > strong,
.article-sources > strong { display: block; margin-bottom: 10px; font-size: 1.08rem; }
.article-summary p,
.article-callout p,
.article-sources p { margin: 0; }

.article-summary dl { margin: 22px 0 0; }
.article-summary dl > div { display: grid; grid-template-columns: 130px minmax(0, 1fr); gap: 18px; padding: 10px 0; border-top: 1px solid #d8d4cb; }
.article-summary dt { color: var(--ink-soft); font-size: 0.82rem; }
.article-summary dd { min-width: 0; margin: 0; overflow-wrap: anywhere; font-weight: 600; }

.article-callout {
	border-left: 5px solid var(--blue);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	background: var(--blue-light);
}

.article-checklist {
	padding: 0;
	list-style: none;
}

.article-checklist li {
	position: relative;
	padding: 14px 0 14px 34px;
	margin: 0;
	border-bottom: 1px solid var(--line);
}

.article-checklist li::before {
	position: absolute;
	top: 17px;
	left: 2px;
	width: 20px;
	height: 20px;
	border: 2px solid var(--blue);
	border-radius: 50%;
	color: var(--blue);
	content: "✓";
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 16px;
	text-align: center;
}

.article-steps {
	padding: 0;
	border-top: 1px solid var(--line);
	list-style: none;
	counter-reset: isahae-step;
}

.article-steps li {
	display: grid;
	grid-template-columns: 44px minmax(150px, 0.9fr) 2fr;
	gap: 16px;
	align-items: start;
	padding: 20px 0;
	margin: 0;
	border-bottom: 1px solid var(--line);
	counter-increment: isahae-step;
}

.article-steps li::before { color: var(--blue); content: counter(isahae-step, decimal-leading-zero); font-size: 0.78rem; font-weight: 700; }
.article-steps strong { line-height: 1.55; }
.article-steps span { color: var(--ink-soft); line-height: 1.7; }

.article-table-wrap {
	margin: 2.2em 0;
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
}

.article-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.article-table th,
.article-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-table th { background: var(--warm); font-size: 0.8rem; }
.article-table tbody tr:last-child td { border-bottom: 0; }
.article-table td:first-child { width: 28%; font-weight: 600; }

.article-sources { background: #f4f6f9; color: var(--ink-soft); font-size: 0.84rem; }
.article-sources ul { padding-left: 1.2em; margin: 0 0 12px; }
.article-sources li { margin-block: 7px; }

.service-card-grid,
.contact-page-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 2.2em 0; }
.service-card-grid section,
.contact-method { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.service-card-grid section:last-child { grid-column: 1 / -1; }
.service-card-grid h3 { margin-top: 0; }
.service-card-grid p { margin-bottom: 0; color: var(--ink-soft); font-size: 0.95rem; }
.contact-method { display: flex; flex-direction: column; color: var(--ink) !important; text-decoration: none; }
.contact-method span { color: var(--blue); font-size: 0.78rem; }
.contact-method strong { margin: 18px 0 22px; overflow-wrap: anywhere; font-size: 1.18rem; }
.contact-method small { color: var(--ink-soft); line-height: 1.6; }
.policy-date { padding-top: 20px; margin-top: 50px !important; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 0.88rem; }

.related-guides { padding-bottom: var(--section); }
.related-guides .section-subheading { margin-bottom: 28px; }
.related-guides .section-subheading h2 { margin: 0; font-size: clamp(1.6rem, 2.4vw, 2.4rem); }

.entry-contact { padding-bottom: var(--section); }
.entry-contact__inner,
.cta-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: clamp(36px, 6vw, 82px);
	border-radius: var(--radius-lg);
	background: var(--blue);
	color: var(--white);
}

.entry-contact__inner h2,
.cta-panel h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 3.6rem); letter-spacing: -0.04em; }

.post-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	padding-bottom: var(--section);
}

.post-navigation__item { padding-top: 24px; border-top: 1px solid var(--line); }
.post-navigation__item--next { text-align: right; }
.post-navigation__item span { display: block; margin-bottom: 8px; color: var(--ink-soft); font-size: 0.78rem; }
.post-navigation__item a { font-weight: 700; }

.navigation.pagination { margin-top: 54px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers { display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; }
.page-numbers.current { border-color: var(--blue); background: var(--blue); color: var(--white); }

.empty-state,
.error-page__inner { max-width: 760px; padding: clamp(38px, 6vw, 76px); border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--warm); }
.error-page { padding-block: var(--section); }
.error-page__inner { text-align: center; }
.error-code { margin: 0; color: var(--blue); font-size: clamp(4rem, 12vw, 9rem); font-weight: 700; line-height: 1; }
.error-page .search-form { display: flex; gap: 8px; margin-block: 28px; }
.search-field { width: 100%; min-height: 50px; padding: 10px 16px; border: 1px solid var(--line); border-radius: 10px; }
.search-submit { min-height: 50px; padding: 10px 20px; border: 0; border-radius: 10px; background: var(--ink); color: var(--white); font-weight: 700; }

@media (max-width: 1180px) {
	.header-phone { display: none; }
	.hero-copy { grid-column: 1 / span 7; }
	.hero-visual { grid-column: 8 / -1; }
	.entry-content { grid-column: 3 / span 8; }
	.process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.process-list li:nth-child(2) { border-right: 1px solid rgb(255 255 255 / 19%); }
	.guide-topics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.guide-topics article:nth-child(2) { border-right: 1px solid #cbc8c0; }
	.guide-topics article:nth-child(-n+2) { border-bottom: 1px solid #cbc8c0; }
}

@media (max-width: 959px) {
	:root { --gutter: 28px; }
	.case-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.header-inner { position: relative; min-height: 72px; }
	.brand-link img,
	.custom-logo { height: 34px; }
	.header-cta { margin-left: auto; }
	.header-cta { order: 2; }
	.js .nav-toggle { display: inline-flex; order: 3; }
	.js .primary-nav .menu-wrapper { display: none; }
	.js .primary-nav.is-open .menu-wrapper { display: block; }
	.primary-nav { position: absolute; top: 100%; right: calc(var(--gutter) * -1); left: calc(var(--gutter) * -1); order: 4; margin: 0; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
	.primary-nav .menu-wrapper { width: min(calc(100% - (var(--gutter) * 2)), var(--container)); padding-block: 14px 22px; margin-inline: auto; }
	.primary-nav .menu { display: grid; gap: 0; }
	.primary-nav .menu ul { position: static; padding: 0 0 0 18px; border: 0; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
	.hero-grid {
		grid-template-columns: repeat(8, minmax(0, 1fr));
		min-height: auto;
		column-gap: 20px;
		row-gap: 52px;
		padding-block: 76px;
	}
	.hero-copy,
	.hero-visual { grid-column: 1 / -1; }
	.hero-copy h1 { max-width: 10ch; font-size: clamp(3.5rem, 11vw, 6rem); }
	.hero-visual { width: 82%; margin-left: auto; }
	.hero-visual img { height: min(76vh, 740px); }
	.trust-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.trust-strip__grid > div:nth-child(2) { border-right: 1px solid var(--line); }
	.trust-strip__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
	.section-heading--wide { grid-template-columns: 1fr; gap: 26px; }
	.service-feature { grid-template-columns: 1fr; gap: 40px; }
	.service-feature__copy { max-width: 720px; }
	.service-feature--reverse .service-feature__copy,
	.service-feature--reverse .service-feature__media { order: initial; }
	.case-empty,
	.faq-layout,
	.contact-layout { grid-template-columns: 1fr; gap: 54px; }
	.case-empty__mark { font-size: 7rem; }
	.faq-layout .section-heading,
	.contact-copy { position: static; }
	.card-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.footer-widgets { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
	:root { --gutter: 20px; --section: 82px; }
	html { scroll-padding-top: 76px; }
	body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); font-size: 17px; }
	body.is-menu-open { overflow: hidden; }
	.site-header { backdrop-filter: none; }
	.header-inner { min-height: 68px; gap: 10px; }
	.brand-link img,
	.custom-logo { height: 32px; }
	.header-cta { min-height: 44px; padding: 8px 14px; font-size: 0.78rem; }
	.nav-toggle__label { display: none; }
	.nav-toggle[aria-expanded="true"] .nav-toggle__icon { background: transparent; }
	.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before { top: 0; transform: rotate(45deg); }
	.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after { top: 0; transform: rotate(-45deg); }
	.hero-section { min-height: auto; }
	.hero-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		column-gap: 12px;
		row-gap: 40px;
		padding-block: 44px 72px;
	}
	.hero-copy h1 { max-width: 9ch; font-size: clamp(2.75rem, 13.4vw, 3.35rem); }
	.hero-lead { font-size: 1.02rem; }
	.button-group,
	.button-group .button { width: 100%; }
	.hero-quick-form {
		position: relative;
		left: 50%;
		width: calc(100vw - 16px);
		max-width: none;
		padding: 16px 12px;
		margin: 26px 0 0;
		transform: translateX(-50%);
	}
	.hero-quick-form > p { display: grid; gap: 2px; font-size: 0.88rem; }
	.hero-quick-form > p span,
	.hero-quick-form label > span,
	.hero-quick-form input,
	.hero-quick-form select { font-size: 0.88rem; }
	.hero-quick-form__grid { grid-template-columns: 1fr 1fr; }
	.quick-date-field { display: grid; grid-template-columns: 1fr auto; column-gap: 8px; }
	.quick-date-field > label:first-child { display: contents; }
	.quick-date-field > label:first-child > span { grid-column: 1; grid-row: 1; }
	.quick-date-field > label:first-child > input { grid-column: 1 / -1; grid-row: 2; }
	.quick-date-undecided { position: static; grid-column: 2; grid-row: 1; min-width: 44px; min-height: 44px; margin-block: -10px; }
	.hero-quick-form button { width: 100%; grid-column: 1 / -1; border-radius: 999px; }
	.hero-visual { width: 100%; }
	.hero-visual img { height: 66vh; min-height: 480px; border-radius: 26px; }
	.hero-visual__note { bottom: 34px; left: -8px; min-width: 184px; padding: 18px 20px; }
	.trust-strip__grid { grid-template-columns: 1fr; }
	.trust-strip__grid > div { padding: 18px 0; border-right: 0 !important; border-left: 0; border-bottom: 1px solid var(--line); }
	.section-heading h2,
	.contact-copy h2 { font-size: clamp(2.55rem, 13vw, 4.2rem); }
	.section-heading--split,
	.entry-contact__inner,
	.cta-panel,
	.footer-bottom { align-items: flex-start; flex-direction: column; }
	.service-stack { gap: 88px; }
	.service-number { width: 48px; height: 48px; margin-bottom: 28px; }
	.service-feature h3 { font-size: 2.25rem; }
	.service-feature__media { border-radius: 24px; }
	.process-list { grid-template-columns: 1fr; }
	.process-list li { min-height: 240px; border-right: 1px solid rgb(255 255 255 / 19%); }
	.process-list span { margin-bottom: 40px; }
	.case-empty { padding-block: 34px; }
	.case-empty__mark { font-size: 4.5rem; }
	.case-empty h3 { font-size: 2.15rem; }
	.guide-topics { grid-template-columns: 1fr; }
	.guide-topics article { min-height: 230px; border-right: 1px solid #cbc8c0; border-bottom: 1px solid #cbc8c0; }
	.guide-topics article:last-child { border-bottom: 0; }
	.guide-topics p { margin-top: 50px; }
	.guide-topics article:first-child h3 { font-size: 1.12rem; white-space: nowrap; }
	.card-grid--three,
	.footer-grid,
	.post-navigation,
	.field-grid { grid-template-columns: 1fr; }
	.faq-list summary { padding: 24px 0; }
	.faq-list details p { padding-right: 0; }
	.contact-section { padding-block: 32px; }
	.contact-layout { gap: 0; }
	.contact-copy { display: none; }
	.inquiry-panel {
		width: calc(100vw - 12px);
		padding: 18px 12px;
		margin-left: calc(6px - var(--gutter));
		border-radius: 18px;
	}
	.inquiry-assurance { display: none; }
	.form-progress { padding-bottom: 12px; margin-bottom: 16px; }
	.form-progress li { display: flex; justify-content: center; gap: 5px; text-align: center; font-size: 0.7rem; }
	.form-progress li span { width: 24px; height: 24px; }
	.form-step legend { margin-bottom: 16px; font-size: 1.4rem; }
	.form-step legend span { margin-right: 8px; }
	.inquiry-form .field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
	.inquiry-form .field,
	.inquiry-form .check-field { gap: 5px; margin-bottom: 10px; }
	.inquiry-form .field > span { font-size: 0.8rem; }
	.inquiry-form .field input,
	.inquiry-form .field select,
	.inquiry-form .field textarea { min-height: 50px; padding: 10px 11px; border-radius: 10px; font-size: 16px; }
	.inquiry-form .field textarea { min-height: 120px; }
	.inquiry-form .field small { font-size: 0.72rem; }
	.inquiry-form .form-step[data-form-step="1"] .field small { display: none; }
	.inquiry-form .check-field { min-height: 38px; font-size: 0.8rem; }
	.inquiry-form .check-field--consent { padding: 12px; font-size: 0.74rem; line-height: 1.4; }
	.inquiry-form .form-actions { margin-top: 14px; }
	.inquiry-form .form-fallback { margin-top: 14px; }
	.form-actions { display: grid; grid-template-columns: 1fr 1.7fr; }
	.form-actions--end { grid-template-columns: 1fr; }
	.form-actions .button { width: 100%; min-height: 50px; padding: 10px 14px; }
	.entry-layout { display: block; }
	.entry-content { font-size: 1.02rem; }
	.article-toc { grid-template-columns: 1fr 1fr; }
	.article-toc strong { grid-column: 1 / -1; }
	.article-steps li { grid-template-columns: 34px 1fr; }
	.article-steps span { grid-column: 2; }
	.service-card-grid,
	.contact-page-grid { grid-template-columns: 1fr; }
	.service-card-grid section:last-child { grid-column: auto; }
	.case-facts { grid-template-columns: 1fr; }
	.entry-featured-media { width: 100%; margin-top: 0; }
	.entry-featured-media img { border-radius: 0; }
	.post-navigation__item--next { text-align: left; }
	.footer-bottom { display: flex; }
	.footer-menu { flex-wrap: wrap; }
	.footer-menu a,
	.footer-links a,
	.footer-contact a { display: flex; min-height: 44px; align-items: center; }
	.error-page .search-form { flex-direction: column; }
	.mobile-contact-bar { position: fixed; right: 0; bottom: 0; left: 0; z-index: 1200; display: grid; grid-template-columns: 54% 46%; height: calc(64px + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom); border-top: 1px solid rgb(16 23 41 / 14%); background: var(--white); box-shadow: 0 -12px 30px rgb(16 23 41 / 10%); transition: transform 180ms ease; }
	.mobile-contact-bar a { display: flex; align-items: center; justify-content: center; color: var(--ink); font-weight: 700; text-decoration: none; }
	.mobile-contact-bar__primary { background: var(--blue); color: var(--white) !important; }
	body.is-contact-visible .mobile-contact-bar { transform: translateY(100%); }
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media print {
	.site-header,
	.site-footer,
	.mobile-contact-bar,
	.entry-contact,
	.related-guides,
	.post-navigation,
	.article-toc,
	.article-print-button { display: none !important; }
	body { padding: 0; color: #000; font-size: 11pt; }
	.entry-hero,
	.entry-layout { padding-block: 16px; }
	.entry-featured-media { display: none; }
	.entry-content { width: 100%; max-width: none; font-size: 11pt; line-height: 1.55; }
	.article-checklist li,
	.article-steps li,
	.article-table tr { break-inside: avoid; }
}
