/*
Theme Name: lp_lacica-child
Version: 9.2
Template: lp_lacica
*/

:root {
	--page: #dfe8e8;
	--paper: #fffaf1;
	--ivory: #f7f0df;
	--sage: #d9e6dc;
	--mint: #d9f1ef;
	--ink: #1d1b19;
	--muted: #69625b;
	--forest: #24483e;
	--coral: #dc685f;
	--coral-dark: #9c3935;
	--line: rgba(29, 27, 25, 0.12);
	--shadow: 0 24px 70px rgba(29, 27, 25, 0.18);
	--pad: 20px;
	--phone: 100%;
	--side-panel: clamp(260px, 25vw, 320px);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-x: hidden;
	overflow-anchor: none;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 38%),
		linear-gradient(180deg, #edf4f3 0%, var(--page) 100%);
	color: var(--ink);
	font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
	letter-spacing: 0;
}

a {
	color: inherit;
}

a:visited {
	color: inherit;
}

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

button {
	font: inherit;
}

@keyframes background-line-drift {
	0% {
		opacity: 0.92;
		transform: translate3d(-8px, -6px, 0) rotate(-0.25deg) scale(1.01);
	}

	50% {
		opacity: 1;
		transform: translate3d(7px, 5px, 0) rotate(0.2deg) scale(1.015);
	}

	100% {
		opacity: 0.94;
		transform: translate3d(2px, -8px, 0) rotate(-0.15deg) scale(1.01);
	}
}

.app-shell {
	min-height: 100dvh;
}

.desktop-qr {
	display: none;
}

.mobile-canvas {
	width: 100%;
	max-width: var(--phone);
	min-height: 100dvh;
	margin: 0 auto;
	padding-top: 64px;
	background: var(--paper);
	overflow-x: hidden;
	overflow-anchor: none;
	scroll-behavior: smooth;
}

@media (min-width: 768px) {
	:root {
		--phone: 402px;
	}
}

section[id] {
	scroll-margin-top: 72px;
}

.site-header {
	position: fixed;
	top: 0;
	left: 50%;
	z-index: 40;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	width: 100%;
	max-width: var(--phone);
	min-height: 64px;
	padding: 12px var(--pad);
	background: rgba(255, 250, 241, 0.92);
	border-bottom: 1px solid rgba(29, 27, 25, 0.08);
	border-radius: 0;
	backdrop-filter: blur(16px);
	transform: translate3d(-50%, 0, 0);
	transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.site-header.is-hidden {
	pointer-events: none;
	transform: translate3d(-50%, calc(-100% - 10px), 0);
}

.site-header.is-menu-open {
	pointer-events: auto;
	transform: translate3d(-50%, 0, 0);
}

.brand {
	display: inline-grid;
	min-width: 0;
	color: var(--forest);
	line-height: 1;
	text-decoration: none;
}

.brand span {
	font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
	font-size: 1.45rem;
	font-weight: 800;
	letter-spacing: 0.055em;
}

.brand small {
	margin-top: 2px;
	color: var(--coral-dark);
	font-size: 0.68rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.menu-toggle {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
	display: inline-grid;
	place-items: center;
	width: 50px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.menu-toggle span:not(.visually-hidden) {
	position: absolute;
	top: 15px;
	left: 50%;
	width: 24px;
	height: 2px;
	background: var(--ink);
	border-radius: 999px;
	transition:
		transform 180ms ease,
		opacity 160ms ease;
}

.menu-toggle::after {
	content: "MENU";
	position: absolute;
	bottom: 2px;
	left: 50%;
	color: var(--ink);
	font-size: 0.56rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
	transform: translateX(-50%);
}

.menu-toggle span:nth-child(1) {
	transform: translate(-50%, -6px);
}

.menu-toggle span:nth-child(2) {
	transform: translate(-50%, 0);
}

.menu-toggle span:nth-child(3) {
	transform: translate(-50%, 6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateX(-50%) rotate(-45deg);
}

.menu-toggle:focus-visible {
	outline: 2px solid rgba(36, 72, 62, 0.34);
	outline-offset: 3px;
}

.site-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: var(--pad);
	z-index: 1;
	display: grid;
	gap: 4px;
	width: min(254px, calc(100vw - 40px));
	padding: 10px;
	background: rgba(255, 250, 241, 0.98);
	border: 1px solid rgba(36, 72, 62, 0.14);
	border-radius: 8px;
	box-shadow: 0 18px 46px rgba(29, 27, 25, 0.14);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-6px) scale(0.98);
	transform-origin: top right;
	transition:
		opacity 180ms ease,
		transform 180ms ease;
}

.site-header.is-menu-open .site-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.site-menu a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 44px;
	padding: 10px 12px;
	color: var(--forest);
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 900;
	line-height: 1.25;
	text-decoration: none;
}

.site-menu a::after {
	content: "";
	width: 7px;
	height: 7px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	opacity: 0.56;
	transform: rotate(45deg);
}

.site-menu a:hover,
.site-menu a:focus-visible {
	background: rgba(217, 230, 220, 0.72);
	outline: 0;
}

.site-menu .site-menu__entry {
	margin-top: 4px;
	background: var(--coral);
	color: #fff;
}

.site-menu .site-menu__entry:hover,
.site-menu .site-menu__entry:focus-visible {
	background: #d45f56;
}

.header-button {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 9px 13px;
	background: var(--forest);
	color: #fff;
	border-radius: 8px;
	font-size: 0.82rem;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
}

.header-button:visited,
.header-button:hover,
.header-button:focus-visible {
	color: #fff;
}

.eyebrow {
	margin: 0 0 12px;
	color: var(--coral-dark);
	font-size: 0.74rem;
	font-weight: 900;
	line-height: 1.4;
	text-transform: uppercase;
	letter-spacing: 0;
}

h1,
h2,
h3,
p {
	letter-spacing: 0;
}

h1,
h2 {
	margin: 0;
	font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
	font-weight: 700;
}

h2 {
	font-size: 1.88rem;
	line-height: 1.32;
}

h3 {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 900;
	line-height: 1.48;
}

p {
	margin: 0;
	color: var(--muted);
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.82;
}

.hero {
	position: relative;
	min-height: 500px;
	height: clamp(500px, 74svh, 660px);
	isolation: isolate;
	overflow: hidden;
	background: var(--forest);
}

.hero > img {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(180deg, rgba(16, 28, 25, 0.08) 0%, rgba(16, 28, 25, 0.25) 38%, rgba(16, 28, 25, 0.78) 100%),
		linear-gradient(90deg, rgba(16, 28, 25, 0.46), rgba(16, 28, 25, 0) 58%);
}

.hero-copy {
	position: absolute;
	right: var(--pad);
	bottom: 122px;
	left: var(--pad);
	color: #fff;
}

.hero-copy .eyebrow {
	color: #f4d6d1;
}

.hero-copy h1 {
	color: #fff;
	font-size: 3rem;
	line-height: 1.08;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.hero-copy p {
	max-width: 21rem;
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.98rem;
	line-height: 1.76;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

.hero-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 22px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 0.88rem;
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	overflow-wrap: anywhere;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}

.button-primary {
	background: var(--coral);
	color: #fff;
	box-shadow: 0 10px 22px rgba(156, 57, 53, 0.25);
}

.button-primary:visited,
.button-primary:hover,
.button-primary:focus-visible {
	color: #fff;
	text-decoration: none;
}

.button-primary:hover,
.button-primary:focus-visible {
	background: #cf5c54;
	box-shadow: 0 13px 26px rgba(156, 57, 53, 0.28);
	transform: translateY(-2px);
}

.button-outline {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.58);
}

.button-outline:visited,
.button-outline:hover,
.button-outline:focus-visible {
	color: #fff;
	text-decoration: none;
}

.button-outline:hover,
.button-outline:focus-visible {
	background: rgba(255, 255, 255, 0.22);
	border-color: rgba(255, 255, 255, 0.82);
	transform: translateY(-2px);
}

.hero-stats {
	position: absolute;
	right: var(--pad);
	bottom: 18px;
	left: var(--pad);
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}

.hero-stats div {
	min-width: 0;
	padding: 10px 8px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.52);
	border-radius: 8px;
}

.hero-stats strong,
.hero-stats span {
	display: block;
	min-width: 0;
	overflow-wrap: anywhere;
	line-height: 1.25;
}

.hero-stats strong {
	color: var(--forest);
	font-size: 0.72rem;
	font-weight: 900;
}

.hero-stats span {
	margin-top: 4px;
	color: var(--muted);
	font-size: 0.64rem;
	font-weight: 800;
}

.fixed-cta {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 50;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	background: #fff;
	border-top: 1px solid var(--line);
	box-shadow: 0 -8px 28px rgba(29, 27, 25, 0.1);
}

.fixed-cta__lead,
.fixed-cta small,
.fixed-cta a span {
	display: none;
}

.fixed-cta a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 56px;
	padding: 10px;
	color: #fff;
	font-size: 0.95rem;
	font-weight: 900;
	text-decoration: none;
}

.fixed-cta__line {
	background: #17a85c;
}

.fixed-cta__tel {
	background: var(--forest);
}

.section {
	padding: 56px var(--pad);
	background: var(--paper);
}

.section-sage {
	background: var(--sage);
}

.section-ivory {
	background: var(--ivory);
}

.section-mint {
	background: var(--mint);
}

.message h2 + p,
.training-card h2 + p,
.entry-section h2 + p {
	margin-top: 18px;
}

.point-list {
	display: grid;
	gap: 12px;
	margin-top: 24px;
}

.point-card {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	column-gap: 12px;
	padding: 18px;
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(36, 72, 62, 0.14);
	border-radius: 8px;
}

.point-card span {
	color: var(--coral-dark);
	font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1;
}

.point-card h3,
.point-card p {
	grid-column: 2;
}

.point-card p {
	margin-top: 8px;
	color: #4f5b55;
	font-size: 0.9rem;
	line-height: 1.75;
}

.photo-panel {
	position: relative;
	min-height: 440px;
	overflow: hidden;
	background: var(--forest);
	color: #fff;
}

.photo-panel img {
	width: 100%;
	height: 440px;
	object-fit: cover;
	object-position: center top;
}

.photo-panel::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 35, 31, 0.05), rgba(20, 35, 31, 0.72));
}

.photo-panel div {
	position: absolute;
	right: var(--pad);
	bottom: 28px;
	left: var(--pad);
	z-index: 1;
}

.photo-panel .eyebrow {
	color: #f4d6d1;
}

.photo-panel h2 {
	color: #fff;
	font-size: 1.65rem;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

.recommend-intro {
	margin-top: 16px;
	font-size: 0.92rem;
	line-height: 1.82;
}

.recommend-list {
	display: grid;
	gap: 12px;
	margin-top: 24px;
}

.recommend-list article {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	column-gap: 14px;
	padding: 18px 0;
	border-top: 1px solid var(--line);
}

.recommend-list article:last-child {
	border-bottom: 1px solid var(--line);
}

.recommend-list span {
	color: var(--coral-dark);
	font-size: 0.76rem;
	font-weight: 900;
	line-height: 1;
}

.recommend-list h3,
.recommend-list p {
	grid-column: 2;
}

.recommend-list h3 {
	color: var(--ink);
	font-size: 1rem;
}

.recommend-list p {
	margin-top: 7px;
	font-size: 0.88rem;
	line-height: 1.74;
}

.training-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(29, 27, 25, 0.08);
	border-radius: 8px;
	box-shadow: 0 16px 42px rgba(29, 27, 25, 0.1);
}

.training-card img {
	width: 100%;
	height: 238px;
	object-fit: cover;
	object-position: center;
}

.training-card > div {
	padding: 22px 18px 20px;
}

.step-list {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.step-list div {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(29, 27, 25, 0.08);
	border-radius: 8px;
}

.step-list span {
	flex: 0 0 auto;
	color: var(--coral-dark);
	font-size: 0.74rem;
	font-weight: 900;
}

.step-list p {
	color: var(--ink);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.45;
}

.text-link,
.section-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 42px;
	margin-top: 18px;
	padding: 0 2px 4px 0;
	color: var(--forest);
	border-bottom: 1px solid rgba(36, 72, 62, 0.28);
	font-size: 0.86rem;
	font-weight: 900;
	line-height: 1.35;
	text-decoration: none;
}

.text-link::after,
.section-link::after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
}

.section-link {
	display: flex;
	justify-content: center;
	width: fit-content;
	max-width: 100%;
	min-height: 50px;
	margin: 24px auto 0;
	padding: 13px 18px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(36, 72, 62, 0.16);
	border-radius: 8px;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		transform 180ms ease;
}

.training-more-link {
	display: flex;
	width: fit-content;
	margin: 16px 0 0 auto;
}

.section-link:hover,
.section-link:focus-visible {
	background: #fff;
	border-color: rgba(36, 72, 62, 0.28);
	transform: translateY(-1px);
}

.voice-row {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 82%;
	gap: 12px;
	overflow-x: auto;
	margin: 24px calc(var(--pad) * -1) 0;
	padding: 4px var(--pad) 12px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: var(--pad);
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.voice-row::-webkit-scrollbar {
	display: none;
}

.voice-card {
	display: block;
	scroll-snap-align: start;
	min-height: 392px;
	padding: 12px 12px 20px;
	background: #fff;
	border: 1px solid rgba(36, 72, 62, 0.14);
	border-radius: 8px;
	color: inherit;
	text-decoration: none;
	transition:
		border-color 180ms ease,
		transform 180ms ease;
}

.voice-card:visited {
	color: inherit;
}

.voice-card--link {
	cursor: pointer;
}

.voice-card--link:focus-visible {
	outline: 2px solid rgba(36, 72, 62, 0.36);
	outline-offset: 4px;
}

.voice-card--link::after {
	content: "詳しく見る";
	display: inline-flex;
	margin: 16px 8px 0;
	padding-bottom: 3px;
	border-bottom: 1px solid rgba(36, 72, 62, 0.28);
	color: var(--forest);
	font-size: 0.74rem;
	font-weight: 900;
	line-height: 1;
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
	.voice-card--link:hover {
		border-color: rgba(36, 72, 62, 0.28);
		transform: scale(1.025);
	}

}

.voice-photo {
	width: 100%;
	height: 156px;
	margin-bottom: 16px;
	object-fit: cover;
	object-position: center 24%;
	border-radius: 8px;
}

.voice-photo--assistant {
	object-position: center 30%;
}

.voice-photo--stylist {
	object-position: center 23%;
}

.role {
	margin-inline: 8px;
	color: var(--coral-dark);
	font-size: 0.74rem;
	font-weight: 900;
	line-height: 1.5;
}

.voice-row h3 {
	margin: 14px 8px 0;
	font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
	font-size: 1.26rem;
	font-weight: 700;
	line-height: 1.5;
}

.voice-row h3 + p {
	margin: 12px 8px 0;
	font-size: 0.9rem;
	line-height: 1.75;
}

.voice-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 9px;
	margin-top: 12px;
}

.voice-dots button {
	appearance: none;
	width: 10px;
	height: 10px;
	padding: 0;
	background: rgba(36, 72, 62, 0.32);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	transition:
		background-color 140ms ease,
		transform 140ms ease;
}

.voice-dots button.is-active {
	background: var(--forest);
	transform: scale(1.08);
}

.voice-dots button:focus-visible {
	outline: 2px solid rgba(36, 72, 62, 0.36);
	outline-offset: 4px;
}

.voice-dots button:hover {
	background: rgba(36, 72, 62, 0.34);
}

.voice-dots button.is-active:hover {
	background: var(--forest);
}

.requirements {
	display: grid;
	margin: 24px 0 0;
	padding: 0;
	border-top: 1px solid var(--line);
}

.requirements div {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid var(--line);
}

.requirements dt,
.requirements dd {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.7;
}

.requirements dt {
	color: var(--forest);
	font-weight: 900;
}

.requirements dd {
	color: var(--ink);
	font-weight: 700;
}

.requirements-teaser__lead {
	margin-top: 16px;
	color: #4f5b55;
	font-size: 0.92rem;
	line-height: 1.82;
}

.requirements-teaser {
	display: grid;
	gap: 12px;
	margin-top: 24px;
}

.requirements-teaser article {
	padding: 18px;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(36, 72, 62, 0.14);
	border-radius: 8px;
}

.requirements-teaser span {
	display: inline-flex;
	margin-bottom: 10px;
	color: var(--coral-dark);
	font-size: 0.72rem;
	font-weight: 900;
	line-height: 1;
}

.requirements-teaser h3 {
	color: var(--ink);
	font-size: 1rem;
	line-height: 1.48;
}

.requirements-teaser p {
	margin-top: 8px;
	color: #52635b;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.76;
}

.job-offer-list {
	display: grid;
	gap: 16px;
	margin-top: 28px;
}

.job-offer-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(36, 72, 62, 0.14);
	border-radius: 8px;
}

.job-offer-card__head {
	padding: 20px 18px 18px;
	background: linear-gradient(180deg, rgba(217, 230, 220, 0.56), rgba(255, 255, 255, 0));
	border-bottom: 1px solid rgba(36, 72, 62, 0.1);
}

.job-offer-card--part .job-offer-card__head {
	background: linear-gradient(180deg, rgba(220, 104, 95, 0.13), rgba(255, 255, 255, 0));
}

.job-offer-card__label {
	color: var(--coral-dark);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

.job-offer-card h3 {
	margin-top: 10px;
	color: var(--forest);
	font-size: 1.32rem;
	line-height: 1.38;
}

.job-offer-card__head p:not(.job-offer-card__label) {
	margin-top: 10px;
	color: #52635b;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.72;
}

.job-offer-spec {
	display: grid;
	margin: 0;
	padding: 0 18px 18px;
}

.job-offer-spec div {
	display: grid;
	gap: 8px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(29, 27, 25, 0.1);
}

.job-offer-spec div:last-child {
	border-bottom: 0;
}

.job-offer-spec dt,
.job-offer-spec dd {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.72;
}

.job-offer-spec dt {
	color: var(--coral-dark);
	font-weight: 900;
}

.job-offer-spec dd {
	color: var(--ink);
	font-weight: 700;
}

.job-offer-spec dd strong {
	display: block;
	color: var(--forest);
	font-size: 1.02rem;
	line-height: 1.58;
}

.job-offer-spec dd span {
	display: block;
	margin-top: 3px;
	color: var(--muted);
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.65;
}

.job-offer-spec ul {
	display: grid;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.job-offer-spec li {
	position: relative;
	padding-left: 16px;
}

.job-offer-spec li::before {
	content: "";
	position: absolute;
	top: 0.72em;
	left: 0;
	width: 6px;
	height: 6px;
	background: var(--coral);
	border-radius: 999px;
	transform: translateY(-50%);
}

.faq-list {
	display: grid;
	gap: 10px;
	margin-top: 24px;
	overflow-anchor: none;
}

.faq-item {
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(29, 27, 25, 0.1);
	border-radius: 8px;
	overflow-anchor: none;
}

.faq-item button {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) 20px;
	gap: 12px;
	align-items: center;
	width: 100%;
	min-height: 62px;
	padding: 16px;
	border: 0;
	background: transparent;
	color: var(--ink);
	font-size: 0.95rem;
	font-weight: 900;
	line-height: 1.55;
	text-align: left;
	cursor: pointer;
}

.faq-item button::before {
	content: "Q";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: var(--sage);
	color: var(--forest);
	border-radius: 8px;
	font-size: 0.78rem;
	font-weight: 900;
}

.faq-item button::after {
	content: "+";
	color: var(--coral-dark);
	font-size: 1.1rem;
	font-weight: 900;
	text-align: right;
}

.faq-item.is-open button::after {
	content: "-";
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	margin: 0 16px;
	border-top: 1px solid transparent;
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.78;
	transition:
		max-height 360ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 220ms ease,
		border-color 220ms ease;
	will-change: max-height;
}

.faq-answer > div {
	padding: 0 0 0 40px;
	transform: translateY(-4px);
	transition:
		padding 360ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-answer {
	max-height: 240px;
	opacity: 1;
	border-top-color: var(--line);
}

.faq-item.is-open .faq-answer > div {
	padding-top: 15px;
	padding-bottom: 18px;
	transform: translateY(0);
}

.detail-hero {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	background: var(--forest);
	isolation: isolate;
}

.detail-hero__photo {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.detail-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(180deg, rgba(16, 28, 25, 0.08), rgba(16, 28, 25, 0.32) 42%, rgba(16, 28, 25, 0.78)),
		linear-gradient(90deg, rgba(16, 28, 25, 0.48), rgba(16, 28, 25, 0) 68%);
}

.detail-hero__copy {
	position: absolute;
	right: var(--pad);
	bottom: 38px;
	left: var(--pad);
	color: #fff;
}

.detail-hero .eyebrow {
	color: #f4d6d1;
}

.detail-hero h1 {
	overflow-wrap: anywhere;
	color: #fff;
	font-size: 2.04rem;
	line-height: 1.22;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.26);
}

.detail-hero h1 + p {
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.95rem;
	line-height: 1.78;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
}

.detail-section {
	padding: 56px var(--pad);
	background: var(--paper);
}

.detail-section h2,
.detail-note h2 {
	overflow-wrap: anywhere;
	font-size: 1.68rem;
	line-height: 1.38;
}

.detail-section.section-ivory {
	background: var(--ivory);
}

.detail-lead {
	margin-top: 16px;
	font-size: 0.94rem;
	line-height: 1.86;
}

.detail-summary,
.support-list {
	display: grid;
	gap: 12px;
	margin-top: 24px;
}

.detail-summary div,
.support-list article {
	padding: 18px;
	background: #fff;
	border: 1px solid rgba(36, 72, 62, 0.12);
	border-radius: 8px;
}

.detail-summary span {
	display: inline-flex;
	margin-bottom: 12px;
	color: var(--coral-dark);
	font-size: 0.72rem;
	font-weight: 900;
	line-height: 1;
}

.detail-summary h3,
.support-list h3 {
	color: var(--ink);
	font-size: 1rem;
	line-height: 1.48;
}

.detail-summary p,
.support-list p {
	margin-top: 8px;
	font-size: 0.88rem;
	line-height: 1.76;
}

.detail-timeline {
	display: grid;
	margin-top: 28px;
}

.detail-timeline div {
	position: relative;
	padding: 0 0 28px 44px;
}

.detail-timeline div::before {
	content: "";
	position: absolute;
	top: 34px;
	bottom: 0;
	left: 14px;
	width: 1px;
	background: rgba(36, 72, 62, 0.2);
}

.detail-timeline div::after {
	content: "";
	position: absolute;
	top: 6px;
	left: 7px;
	width: 15px;
	height: 15px;
	background: var(--coral);
	border: 4px solid rgba(255, 250, 241, 0.95);
	border-radius: 999px;
	box-shadow: 0 0 0 1px rgba(156, 57, 53, 0.2);
}

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

.detail-timeline div:last-child::before {
	display: none;
}

.detail-timeline span {
	display: inline-flex;
	margin-bottom: 9px;
	color: var(--coral-dark);
	font-size: 0.72rem;
	font-weight: 900;
	line-height: 1;
}

.detail-timeline h3 {
	color: var(--ink);
	font-size: 1.04rem;
	line-height: 1.48;
}

.detail-timeline p {
	margin-top: 8px;
	font-size: 0.9rem;
	line-height: 1.78;
}

.detail-photo {
	margin: 30px 0 0;
}

.detail-photo img {
	display: block;
	width: 100%;
	height: clamp(260px, 72vw, 340px);
	object-fit: cover;
	border-radius: 8px;
}

.detail-photo--training img {
	object-position: 38% center;
}

.detail-photo figcaption {
	margin: 14px 4px 0;
	padding-left: 14px;
	border-left: 2px solid rgba(156, 57, 53, 0.32);
	color: #52635b;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.75;
}

.requirements--detail div {
	grid-template-columns: 94px minmax(0, 1fr);
	gap: 14px;
}

.requirements--detail dt,
.requirements--detail dd {
	font-size: 0.88rem;
}

.detail-caution {
	margin-top: 16px;
	color: var(--muted);
	font-size: 0.76rem;
	line-height: 1.65;
}

.detail-note {
	padding: 54px var(--pad);
}

.detail-note p {
	margin-top: 14px;
	font-size: 0.94rem;
	line-height: 1.86;
}

.detail-entry {
	padding-top: 56px;
}

.entry-actions {
	display: grid;
	gap: 10px;
	margin-top: 24px;
}

.entry-actions .button-outline,
.entry-actions .button-outline:visited {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.56);
}

.entry-section {
	padding: 64px var(--pad) 132px;
	background: var(--forest);
	color: #fff;
}

.interview-hero {
	background: var(--paper);
}

.interview-hero__photo {
	width: 100%;
	height: 430px;
	object-fit: cover;
	object-position: center 18%;
}

.interview-hero__photo--assistant {
	object-position: center 24%;
}

.interview-hero__photo--stylist {
	object-position: center 16%;
}

.interview-hero__copy {
	padding: 28px var(--pad) 38px;
}

.interview-hero h1 {
	overflow-wrap: anywhere;
	font-size: 1.92rem;
	line-height: 1.28;
}

.interview-hero h1 + p {
	margin-top: 16px;
	color: var(--forest);
	font-size: 0.92rem;
	font-weight: 900;
}

.interview-profile {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-top: 22px;
}

.interview-profile div {
	display: grid;
	gap: 6px;
	min-height: 78px;
	padding: 12px 10px;
	background: #fff;
	border: 1px solid rgba(36, 72, 62, 0.12);
	border-radius: 8px;
}

.interview-profile span {
	color: var(--coral-dark);
	font-size: 0.68rem;
	font-weight: 900;
	line-height: 1;
}

.interview-profile strong {
	color: var(--forest);
	font-size: 0.88rem;
	line-height: 1.35;
}

.interview-body {
	display: grid;
	gap: 28px;
	padding: 54px var(--pad);
	background: #fff;
}

.interview-question {
	padding-bottom: 28px;
	border-bottom: 1px solid var(--line);
}

.interview-question:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.interview-question__label {
	margin: 0 0 10px;
	color: var(--coral-dark);
	font-size: 0.76rem;
	font-weight: 900;
	line-height: 1;
}

.interview-question h2,
.interview-note h2 {
	font-size: 1.55rem;
	line-height: 1.42;
}

.interview-question p:not(.interview-question__label),
.interview-note p {
	margin-top: 14px;
	font-size: 0.94rem;
	line-height: 1.86;
}

.interview-scene {
	margin: 0;
	scroll-margin-top: 82px;
}

.interview-scene img {
	display: block;
	width: 100%;
	height: clamp(310px, 84vw, 370px);
	object-fit: cover;
	border-radius: 44% 56% 46% 54% / 28% 30% 12% 14%;
}

.interview-scene--assistant img {
	object-position: center 30%;
}

.interview-scene--stylist img {
	height: clamp(290px, 76vw, 340px);
	object-position: 72% center;
}

.interview-scene figcaption {
	margin: 15px 6px 0;
	padding-left: 14px;
	border-left: 2px solid rgba(156, 57, 53, 0.32);
	color: #52635b;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.75;
}

.interview-schedule {
	padding: 54px var(--pad);
	background: var(--ivory);
}

.interview-schedule h2 {
	font-size: 1.75rem;
	line-height: 1.36;
}

.interview-day {
	display: grid;
	gap: 0;
	margin-top: 28px;
}

.interview-day div {
	position: relative;
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	column-gap: 18px;
	padding: 0 0 28px;
}

.interview-day div::before {
	content: "";
	position: absolute;
	top: 34px;
	bottom: 0;
	left: 35px;
	width: 1px;
	background: rgba(36, 72, 62, 0.18);
}

.interview-day div:last-child {
	padding-bottom: 0;
}

.interview-day div:last-child::before {
	display: none;
}

.interview-day time {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 34px;
	background: var(--forest);
	border-radius: 8px;
	color: #fff;
	font-size: 0.82rem;
	font-weight: 900;
	line-height: 1;
}

.interview-day h3 {
	align-self: center;
	color: var(--ink);
	font-size: 1rem;
	line-height: 1.4;
}

.interview-day p {
	grid-column: 2;
	margin-top: 8px;
	font-size: 0.88rem;
	line-height: 1.78;
}

.interview-note {
	padding: 54px var(--pad);
}

.interview-entry {
	padding-top: 56px;
}

.entry-section .eyebrow {
	color: #f4d6d1;
}

.entry-section h2 {
	color: #fff;
}

.entry-section p {
	color: rgba(255, 255, 255, 0.82);
}

.entry-phone {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	margin-top: 24px;
	background: #fff;
	color: var(--forest);
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 900;
	text-decoration: none;
}

.entry-section small {
	display: block;
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.74rem;
	line-height: 1.6;
	text-align: center;
}

@media (min-width: 768px) {
	html,
	body {
		height: 100%;
		overflow: hidden;
	}

	body {
		padding: 0 24px 24px;
	}

	.app-shell {
		position: relative;
		isolation: isolate;
		display: grid;
		place-items: center;
		min-height: calc(100dvh - 24px);
	}

	.mobile-canvas {
		width: var(--phone);
		height: calc(100dvh - 24px);
		min-height: 0;
		overflow-y: auto;
		overscroll-behavior: contain;
		border: 1px solid rgba(255, 255, 255, 0.68);
		border-radius: 0 0 8px 8px;
		box-shadow: var(--shadow);
		scrollbar-width: none;
	}

	.mobile-canvas::-webkit-scrollbar {
		display: none;
	}

	.entry-section {
		padding-bottom: 74px;
	}
}

@media (min-width: 768px) and (max-width: 919px) {
	.fixed-cta {
		right: auto;
		bottom: 24px;
		left: 50%;
		width: var(--phone);
		overflow: hidden;
		border: 1px solid rgba(36, 72, 62, 0.12);
		border-radius: 8px;
		transform: translateX(-50%);
	}
}

@media (min-width: 860px) and (max-width: 999px) {
	.desktop-qr {
		position: fixed;
		top: 50%;
		left: clamp(10px, calc((100vw - var(--phone)) / 4 - 110px), 28px);
		z-index: 35;
		display: grid;
		justify-items: center;
		width: 220px;
		gap: 10px;
		padding: 14px;
		background: rgba(255, 250, 241, 0.72);
		border: 1px solid rgba(36, 72, 62, 0.12);
		border-radius: 8px;
		box-shadow: 0 18px 48px rgba(29, 27, 25, 0.1);
		backdrop-filter: blur(14px);
		transform: translateY(-50%);
	}

	.desktop-qr__label {
		justify-self: start;
		margin: 0;
		color: var(--coral-dark);
		font-size: 0.68rem;
		font-weight: 900;
		line-height: 1;
	}

	.desktop-qr__box {
		display: grid;
		place-items: center;
		width: 142px;
		aspect-ratio: 1;
		padding: 12px;
		background: rgba(255, 255, 255, 0.82);
		border: 1px solid rgba(36, 72, 62, 0.14);
		border-radius: 8px;
	}

	.desktop-qr__box img {
		width: 100%;
		height: auto;
		border-radius: 4px;
	}

	.desktop-qr__text {
		max-width: 11rem;
		margin: 0;
		color: var(--muted);
		font-size: 0.72rem;
		font-weight: 700;
		line-height: 1.6;
		text-align: center;
	}
}

@media (min-width: 1000px) {
	body {
		background:
			linear-gradient(90deg, rgba(223, 232, 232, 0.42) 0 1px, transparent 1px 100%),
			linear-gradient(180deg, rgba(255, 250, 241, 0.74) 0%, rgba(217, 230, 220, 0.5) 48%, rgba(223, 232, 232, 0.92) 100%);
		background-size:
			84px 100%,
			100% 100%;
	}

	.app-shell::before,
	.app-shell::after {
		content: "";
		position: fixed;
		inset: 0;
		z-index: -1;
		pointer-events: none;
	}

	.app-shell::before {
		background:
			linear-gradient(90deg, rgba(255, 250, 241, 0.9), rgba(255, 250, 241, 0.36) 44%, rgba(255, 250, 241, 0.9)),
			url("assets/images/20260411_0018_0.jpg") left 5vw top 5vh / 230px auto no-repeat,
			url("assets/images/20260411_0038_0.jpg") right 7vw top 4vh / 330px auto no-repeat,
			url("assets/images/team.jpg") left 14vw top 34vh / 250px auto no-repeat,
			url("assets/images/20260411_0069_0.jpg") right 15vw top 38vh / 290px auto no-repeat,
			url("assets/images/20260411_0078_0.jpg") left 6vw bottom 8vh / 240px auto no-repeat,
			url("assets/images/tools.jpg") right 5vw bottom 5vh / 250px auto no-repeat,
			url("assets/images/20260411_0050_0.jpg") left 28vw bottom 15vh / 300px auto no-repeat,
			url("assets/images/20260411_0084_0.jpg") right 30vw bottom 18vh / 210px auto no-repeat;
		opacity: 0.18;
		filter: saturate(0.78) contrast(0.96);
	}

	.app-shell::after {
		inset: -36px;
		background:
			radial-gradient(ellipse 118% 92% at -20% 8%, transparent 58.8%, rgba(220, 104, 95, 0.09) 59%, rgba(220, 104, 95, 0.09) 59.22%, transparent 59.42%),
			radial-gradient(ellipse 116% 88% at 118% 92%, transparent 56%, rgba(36, 72, 62, 0.09) 56.2%, rgba(36, 72, 62, 0.09) 56.42%, transparent 56.62%),
			linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
		animation: background-line-drift 18s ease-in-out infinite alternate;
		will-change: transform, opacity;
	}

	.desktop-qr {
		position: fixed;
		top: 50%;
		left: clamp(22px, calc(25vw - (var(--phone) / 4) - 126px), 190px);
		z-index: 35;
		display: grid;
		justify-items: center;
		width: 252px;
		gap: 12px;
		padding: 18px;
		background: rgba(255, 250, 241, 0.72);
		border: 1px solid rgba(36, 72, 62, 0.12);
		border-radius: 8px;
		box-shadow: 0 18px 48px rgba(29, 27, 25, 0.1);
		backdrop-filter: blur(14px);
		transform: translateY(-50%);
	}

	.desktop-qr__label {
		justify-self: start;
		margin: 0;
		color: var(--coral-dark);
		font-size: 0.7rem;
		font-weight: 900;
		line-height: 1;
	}

	.desktop-qr__box {
		display: grid;
		place-items: center;
		width: 168px;
		aspect-ratio: 1;
		padding: 14px;
		background: rgba(255, 255, 255, 0.82);
		border: 1px solid rgba(36, 72, 62, 0.14);
		border-radius: 8px;
	}

	.desktop-qr__box img {
		width: 100%;
		height: auto;
		border-radius: 4px;
	}

	.desktop-qr__text {
		max-width: 12rem;
		margin: 0;
		color: var(--muted);
		font-size: 0.78rem;
		font-weight: 700;
		line-height: 1.65;
		text-align: center;
	}

	.fixed-cta {
		top: 50%;
		right: clamp(18px, calc(25vw - (var(--phone) / 4) - (var(--side-panel) / 2)), 180px);
		bottom: auto;
		left: auto;
		z-index: 35;
		display: grid;
		width: var(--side-panel);
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 18px;
		background: rgba(255, 250, 241, 0.95);
		border: 1px solid rgba(36, 72, 62, 0.12);
		border-radius: 8px;
		box-shadow: 0 20px 56px rgba(29, 27, 25, 0.17);
		backdrop-filter: blur(16px);
		transform: translateY(-50%);
	}

	.fixed-cta__lead {
		display: grid;
		gap: 5px;
		margin: 0 0 2px;
		color: var(--forest);
		font-size: 1.06rem;
		font-weight: 900;
		line-height: 1.45;
	}

	.fixed-cta__lead span {
		color: var(--coral-dark);
		font-size: 0.7rem;
		font-weight: 900;
		line-height: 1;
	}

	.fixed-cta a,
	.fixed-cta a:visited {
		justify-content: flex-start;
		gap: 12px;
		min-height: 64px;
		padding: 12px 14px;
		border-radius: 8px;
		font-size: 1rem;
		line-height: 1.28;
		white-space: nowrap;
		box-shadow: 0 10px 20px rgba(29, 27, 25, 0.11);
		transition:
			transform 180ms ease,
			box-shadow 180ms ease,
			filter 180ms ease;
	}

	.fixed-cta a:hover,
	.fixed-cta a:focus-visible {
		transform: translateY(-2px);
		box-shadow: 0 14px 26px rgba(29, 27, 25, 0.15);
		filter: saturate(1.05);
	}

	.fixed-cta a span {
		display: inline-flex;
		flex: 0 0 46px;
		align-items: center;
		justify-content: center;
		width: 46px;
		height: 38px;
		background: rgba(255, 255, 255, 0.18);
		border: 1px solid rgba(255, 255, 255, 0.24);
		border-radius: 8px;
		font-size: 0.64rem;
		font-weight: 900;
		line-height: 1;
	}

	.fixed-cta small {
		display: block;
		color: var(--muted);
		font-size: 0.76rem;
		font-weight: 700;
		line-height: 1.55;
	}
}

@media (prefers-reduced-motion: reduce) {
	.app-shell::after {
		animation: none;
	}
}
