:root {
	--page-width: 71.875rem;
	--content-width: 52rem;
	--page-gutter: clamp(1rem, 4vw, 4rem);
	--color-background: #fff8ef;
	--color-surface: #fffdf9;
	--color-surface-strong: #fff;
	--color-text: #241814;
	--color-muted: #75645b;
	--color-brand: #99001d;
	--color-brand-dark: #710014;
	--color-brand-soft: #d24555;
	--color-rose-paper: #f7dfdc;
	--color-ink-dark: #2d1f1d;
	--color-line: #eaded1;
	--shadow-soft: 0 1.5rem 4rem rgb(68 36 20 / 10%);
	--shadow-paper: 0 1.15rem 2.4rem rgb(68 36 20 / 12%);
	--radius-large: 2rem;
	--radius-medium: 1.25rem;
	--font-body: "Segoe UI", system-ui, sans-serif;
	--font-display: Georgia, "Times New Roman", serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top right, rgb(153 0 29 / 10%), transparent 24rem),
		radial-gradient(circle at bottom left, rgb(45 31 29 / 8%), transparent 28rem),
		linear-gradient(90deg, rgb(153 0 29 / 3%) 1px, transparent 1px),
		linear-gradient(0deg, rgb(153 0 29 / 2%) 1px, transparent 1px),
		var(--color-background);
	background-size: auto, auto, 4.25rem 4.25rem, 4.25rem 4.25rem, auto;
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.6;
}

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

a {
	color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 0.1875rem solid rgb(153 0 29 / 32%);
	outline-offset: 0.25rem;
}

h1,
h2,
h3 {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: -0.045em;
}

h1 {
	font-size: clamp(2.65rem, 4.8vw, 4.1rem);
}

h2 {
	font-size: clamp(2.1rem, 4vw, 3.85rem);
}

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

p {
	margin: 0;
}

.skip-link {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	padding: 0.75rem 1rem;
	background: var(--color-text);
	color: var(--color-background);
	transform: translateY(-120%);
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: relative;
	z-index: 30;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	width: min(calc(100% - 2rem), var(--page-width));
	min-height: 5.25rem;
	margin: 2.5rem auto 0;
	padding: 0 2.875rem;
	border-top: 0.125rem solid var(--color-brand);
	border-bottom: 0.125rem solid var(--color-brand);
	background: rgb(255 248 239 / 78%);
	backdrop-filter: blur(0.375rem);
}

.site-brand {
	display: block;
	justify-self: start;
	line-height: 0;
}

.site-brand img {
	width: auto;
	height: 3rem;
}

.site-navigation {
	grid-column: 2;
	font-family: var(--font-display);
}

.site-navigation ul {
	display: flex;
	align-items: center;
	gap: 1.875rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-navigation a {
	font-size: 1rem;
	text-decoration: none;
	white-space: nowrap;
}

.site-navigation a:hover,
.site-navigation a:focus-visible {
	color: var(--color-brand);
}

.menu-toggle {
	position: relative;
	display: none;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 1px solid rgb(153 0 29 / 24%);
	border-radius: 999rem;
	background: var(--color-surface-strong);
	box-shadow: 0 0.45rem 1.1rem rgb(68 36 20 / 10%);
	color: var(--color-brand);
	cursor: pointer;
}

.menu-toggle__line {
	position: absolute;
	width: 1.15rem;
	height: 0.125rem;
	border-radius: 999rem;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle__line:nth-child(1) {
	transform: translateY(-0.38rem);
}

.menu-toggle__line:nth-child(3) {
	transform: translateY(0.38rem);
}

.site-header.is-navigation-open .menu-toggle__line:nth-child(1) {
	transform: rotate(45deg);
}

.site-header.is-navigation-open .menu-toggle__line:nth-child(2) {
	opacity: 0;
}

.site-header.is-navigation-open .menu-toggle__line:nth-child(3) {
	transform: rotate(-45deg);
}

.language-switcher {
	position: relative;
	z-index: 2;
	grid-column: 3;
	justify-self: end;
	font-family: var(--font-display);
}

.language-switcher[open] {
	z-index: 40;
}

.language-switcher summary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	min-width: 4.625rem;
	height: 2.3125rem;
	padding: 0 0.75rem;
	border: 1px solid #dfd0bf;
	border-radius: 0.75rem;
	background: var(--color-surface-strong);
	box-shadow: 0 0.1875rem 0.25rem rgb(59 40 23 / 18%);
	cursor: pointer;
	font-size: 0.875rem;
	list-style: none;
}

.language-switcher summary::-webkit-details-marker {
	display: none;
}

.language-switcher__chevron {
	width: 0.4375rem;
	height: 0.4375rem;
	margin-top: -0.1875rem;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: rotate(45deg);
	transition: transform 160ms ease;
}

.language-switcher[open] .language-switcher__chevron {
	margin-top: 0.1875rem;
	transform: rotate(225deg);
}

.language-switcher ul {
	position: absolute;
	top: calc(100% + 0.5rem);
	right: 0;
	z-index: 45;
	width: max-content;
	min-width: 10rem;
	margin: 0;
	padding: 0.375rem;
	border: 1px solid #eadfd2;
	border-radius: 0.75rem;
	background: var(--color-surface-strong);
	box-shadow: 0 0.5rem 1.5rem rgb(59 40 23 / 16%);
	list-style: none;
}

.language-switcher a {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 0.625rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
	background: var(--color-background);
}

.language-switcher .current-lang a {
	color: var(--color-brand);
}

.language-switcher__code {
	min-width: 2rem;
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 800;
}

.site-main {
	width: min(calc(100% - 2rem), var(--page-width));
	margin-inline: auto;
	padding: clamp(3rem, 8vw, 6.5rem) 0;
}

.hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-large);
	background:
		radial-gradient(circle at 92% 18%, rgb(210 69 85 / 18%), transparent 18rem),
		linear-gradient(135deg, rgb(255 253 249 / 94%), rgb(255 248 239 / 78%));
	box-shadow: var(--shadow-soft);
}

.hero::before,
.hero::after {
	position: absolute;
	z-index: -1;
	pointer-events: none;
	content: "";
}

.hero::before {
	inset: 1rem;
	border: 1px solid rgb(153 0 29 / 8%);
	border-radius: calc(var(--radius-large) - 0.75rem);
}

.hero::after {
	right: clamp(1.5rem, 5vw, 4rem);
	bottom: clamp(1.5rem, 5vw, 4rem);
	width: clamp(4rem, 10vw, 7rem);
	height: 1.25rem;
	border-radius: 999rem;
	background: rgb(255 253 249 / 74%);
	box-shadow: 0 0.75rem 1.5rem rgb(68 36 20 / 10%);
	transform: rotate(-7deg);
}

.hero--page::after {
	display: none;
}

.hero--home {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.78fr);
	gap: clamp(2rem, 7vw, 6rem);
	align-items: center;
	min-height: clamp(28rem, 58vh, 36rem);
	padding: clamp(2rem, 5vw, 4.5rem);
	background:
		radial-gradient(circle at 82% 18%, rgb(153 0 29 / 17%), transparent 15rem),
		radial-gradient(circle at 17% 14%, rgb(255 253 249 / 92%), transparent 12rem),
		linear-gradient(135deg, #fffdf9 0%, var(--color-background) 48%, var(--color-rose-paper) 100%),
		var(--color-surface);
}

.playful-hero {
	border-color: rgb(153 0 29 / 16%);
}

.hero--page {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(14rem, 0.65fr);
	gap: clamp(1.5rem, 5vw, 4rem);
	align-items: end;
	margin-bottom: clamp(2rem, 5vw, 4rem);
	padding: clamp(2rem, 4vw, 3.5rem);
}

.hero h1 {
	max-width: 54rem;
}

.playful-hero h1 {
	max-width: 38rem;
	font-family: var(--font-body);
	font-size: clamp(3.1rem, 7vw, 5.8rem);
	font-weight: 900;
	letter-spacing: -0.075em;
	line-height: 0.92;
}

.hero__content {
	position: relative;
	z-index: 1;
}

.hero__tagline {
	max-width: 38rem;
	margin-top: 1.1rem;
	color: var(--color-brand);
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2.5vw, 2.25rem);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.045em;
}

.hero__intro {
	max-width: 34rem;
	margin-top: 1.5rem;
	color: var(--color-muted);
	font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero__scene {
	position: relative;
	display: grid;
	place-items: center;
	min-height: clamp(19rem, 34vw, 27rem);
	perspective: 60rem;
}

.hero__profile-card {
	position: relative;
	z-index: 1;
	width: min(100%, 20rem);
	padding: 0.85rem;
	border: 1px solid rgb(153 0 29 / 10%);
	border-radius: 1.6rem;
	background: rgb(255 253 249 / 94%);
	box-shadow: 0 1.35rem 3rem rgb(68 36 20 / 16%);
	transform: rotate(2deg);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero__profile-card:hover,
.hero__scene:has(.hero__sticker:hover) .hero__profile-card,
.hero__scene:has(.hero__profile-card:hover) .hero__profile-card {
	box-shadow: 0 1.75rem 3.75rem rgb(68 36 20 / 19%);
	transform: translateY(-0.45rem) rotate(0deg);
}

.hero__profile-image {
	position: relative;
	display: grid;
	place-items: center;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border-radius: 1.1rem;
	background:
		radial-gradient(circle at 50% 42%, rgb(255 253 249 / 92%), transparent 5rem),
		linear-gradient(135deg, rgb(153 0 29 / 93%), rgb(210 69 85 / 72%));
}

.hero__profile-image img {
	width: min(38%, 7rem);
	filter: brightness(0) invert(1) drop-shadow(0 1rem 1.4rem rgb(68 36 20 / 22%));
	transition: transform 220ms ease;
}

.hero__profile-image .portrait-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center 38%;
	filter: none;
}

.hero__profile-card:hover .hero__profile-image img,
.hero__scene:has(.hero__sticker:hover) .hero__profile-image img,
.hero__scene:has(.hero__profile-card:hover) .hero__profile-image img {
	transform: scale(1.04) rotate(-3deg);
}

.hero__profile-body {
	padding: 1rem 0.25rem 0.25rem;
}

.hero__profile-body strong,
.hero__profile-body span {
	display: block;
}

.hero__profile-body strong {
	font-family: var(--font-display);
	font-size: 1.2rem;
	line-height: 1;
}

.hero__profile-body span,
.hero__profile-body p {
	color: var(--color-muted);
	font-size: 0.82rem;
}

.hero__profile-body p {
	margin-top: 0.55rem;
}

.hero__sticker {
	position: absolute;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	min-height: 2.75rem;
	padding: 0.55rem 1rem;
	border: 1px solid rgb(153 0 29 / 10%);
	border-radius: 999rem;
	background: rgb(255 253 249 / 94%);
	box-shadow: 0 0.85rem 1.8rem rgb(68 36 20 / 14%);
	color: var(--color-brand-dark);
	font-family: var(--font-display);
	font-size: clamp(0.9rem, 1.5vw, 1.1rem);
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	cursor: default;
	transition: transform 220ms ease;
}

.hero__sticker--one {
	top: 30%;
	left: 0;
	transform: rotate(-3deg);
}

.hero__sticker--two {
	top: 11%;
	right: -0.3rem;
	transform: rotate(4deg);
}

.hero__sticker--three {
	right: 10%;
	bottom: 7%;
	transform: rotate(-4deg);
}

.hero__sticker--one:hover,
.hero__scene:has(.hero__profile-card:hover) .hero__sticker--one,
.hero__scene:has(.hero__sticker:hover) .hero__sticker--one {
	transform: translate(-0.45rem, -0.35rem) rotate(-5deg);
}

.hero__sticker--two:hover,
.hero__scene:has(.hero__profile-card:hover) .hero__sticker--two,
.hero__scene:has(.hero__sticker:hover) .hero__sticker--two {
	transform: translate(0.45rem, -0.45rem) rotate(6deg);
}

.hero__sticker--three:hover,
.hero__scene:has(.hero__profile-card:hover) .hero__sticker--three,
.hero__scene:has(.hero__sticker:hover) .hero__sticker--three {
	transform: translate(0.35rem, 0.35rem) rotate(-6deg);
}

.hero__orb {
	position: absolute;
	border-radius: 999rem;
	pointer-events: none;
}

.hero__orb--one {
	top: 3rem;
	left: 18%;
	width: 1.1rem;
	height: 1.1rem;
	border: 0.28rem solid rgb(153 0 29 / 16%);
}

.hero__orb--two {
	right: 12%;
	bottom: 4rem;
	width: 3.5rem;
	height: 3.5rem;
	background: rgb(153 0 29 / 9%);
}

.hero__mark {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	border-radius: 999rem;
	background:
		radial-gradient(circle, rgb(153 0 29 / 11%), transparent 62%),
		rgb(255 248 239 / 92%);
	box-shadow:
		inset 0 0 0 1px rgb(153 0 29 / 10%),
		0 1.5rem 3rem rgb(68 36 20 / 18%);
}

.hero__mark img {
	width: min(75%, 14rem);
	filter: drop-shadow(0 2rem 2.5rem rgb(153 0 29 / 20%));
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	margin-bottom: 1rem;
	color: var(--color-brand);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 2.5rem;
	height: 0.125rem;
	background: currentColor;
	content: "";
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.875rem;
	margin-top: 2rem;
}

.button,
.text-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	border-radius: 999rem;
	font-weight: 800;
	text-decoration: none;
	transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.text-link:hover {
	transform: translateY(-0.125rem);
}

.button--primary {
	padding: 0.875rem 1.35rem;
	background: var(--color-brand);
	color: var(--color-background);
}

.button--primary:hover {
	background: var(--color-brand-dark);
}

.button--ghost {
	padding: 0.8125rem 1.35rem;
	border: 1px solid rgb(153 0 29 / 34%);
	color: var(--color-brand);
}

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

.text-link::after {
	margin-left: 0.5rem;
	content: "->";
}

.section {
	margin-top: clamp(3rem, 8vw, 7rem);
}

.home-about {
	position: relative;
	display: grid;
	grid-template-columns: minmax(13rem, 0.55fr) minmax(0, 1fr);
	gap: clamp(2rem, 7vw, 6rem);
	align-items: center;
	padding-block: clamp(2rem, 7vw, 5rem);
	border-top: 1px solid rgb(153 0 29 / 20%);
	border-bottom: 1px solid rgb(153 0 29 / 20%);
}

.home-about::before {
	position: absolute;
	top: clamp(1rem, 4vw, 2.5rem);
	right: clamp(0rem, 5vw, 4rem);
	width: min(18rem, 42vw);
	height: min(18rem, 42vw);
	border-radius: 999rem;
	background: rgb(210 69 85 / 9%);
	content: "";
}

.home-about__visual {
	position: relative;
	display: grid;
	place-items: center;
	min-height: clamp(17rem, 34vw, 26rem);
}

.home-about__visual::before {
	position: absolute;
	inset: 9% 1% 3% 10%;
	border: 1px solid rgb(153 0 29 / 12%);
	border-radius: 2.1rem;
	background:
		linear-gradient(135deg, rgb(153 0 29 / 10%), transparent),
		var(--color-rose-paper);
	box-shadow: var(--shadow-paper);
	content: "";
	transform: rotate(-5deg);
}

.home-about__photo {
	position: relative;
	z-index: 1;
	width: min(82%, 20rem);
	aspect-ratio: 4 / 5;
	border: 0.7rem solid rgb(255 253 249 / 92%);
	border-radius: 1.65rem;
	box-shadow: 0 1.45rem 2.5rem rgb(68 36 20 / 18%);
	object-fit: cover;
	object-position: 42% 55%;
	transform: rotate(-5deg);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.home-about__visual:hover .home-about__photo {
	box-shadow: 0 1.75rem 2.9rem rgb(68 36 20 / 20%);
	transform: rotate(-3deg) translateY(-0.25rem);
}

.home-about__content {
	position: relative;
	max-width: 44rem;
}

.home-about__content > p:not(.eyebrow) {
	max-width: 39rem;
	margin-top: 1.4rem;
	color: var(--color-muted);
	font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.home-about__note {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2.2vw, 2rem) !important;
	line-height: 1.05;
	color: var(--color-brand) !important;
}

.section--split {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(2rem, 6vw, 5rem);
	align-items: start;
	padding: clamp(2rem, 5vw, 4rem);
	border-radius: var(--radius-large);
	background:
		radial-gradient(circle at top right, rgb(255 248 239 / 14%), transparent 19rem),
		linear-gradient(135deg, var(--color-brand-dark), var(--color-brand));
	box-shadow: var(--shadow-paper);
	color: var(--color-background);
}

.section--split::before {
	position: absolute;
	inset: 0 auto 0 0;
	z-index: -1;
	width: clamp(0.75rem, 2vw, 1.25rem);
	background:
		linear-gradient(45deg, var(--color-background) 25%, transparent 25%) 0 0 / 1.25rem 1.25rem,
		linear-gradient(-45deg, var(--color-background) 25%, transparent 25%) 0 0 / 1.25rem 1.25rem,
		var(--color-ink-dark);
	content: "";
	opacity: 0.9;
}

.section--split .eyebrow,
.section--split .eyebrow::before {
	color: var(--color-background);
}

.section__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.section__header h2,
.section--split h2 {
	max-width: 48rem;
}

.section__intro {
	max-width: 42rem;
	margin-top: 1rem;
	color: var(--color-muted);
	font-size: clamp(1rem, 1.8vw, 1.14rem);
}

.feature-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.feature-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: clamp(1.5rem, 4vw, 3rem);
}

.feature-card,
.content-card,
.form-card,
.contact-note {
	border: 1px solid var(--color-line);
	border-radius: var(--radius-medium);
	background:
		linear-gradient(135deg, rgb(255 253 249 / 92%), rgb(255 248 239 / 82%)),
		var(--color-surface);
	box-shadow: var(--shadow-paper);
}

.feature-card {
	position: relative;
	overflow: hidden;
	padding: clamp(1.25rem, 3vw, 2rem);
}

.feature-card::before {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 4rem;
	height: 1rem;
	border-radius: 999rem;
	background: rgb(210 69 85 / 13%);
	content: "";
	transform: rotate(8deg);
}

.feature-card span {
	display: inline-flex;
	margin-bottom: 1.5rem;
	color: var(--color-brand);
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
}

.feature-card h2,
.feature-card h3 {
	font-size: clamp(1.4rem, 2vw, 2.1rem);
}

.feature-card p {
	margin-top: 0.875rem;
	color: var(--color-muted);
}

.process-flow {
	padding-block: clamp(1rem, 4vw, 2rem);
	border-top: 1px solid rgb(153 0 29 / 20%);
	border-bottom: 1px solid rgb(153 0 29 / 20%);
}

.process-list {
	display: grid;
}

.process-step {
	display: grid;
	grid-template-columns: minmax(3rem, 0.18fr) minmax(0, 1fr);
	gap: clamp(1rem, 4vw, 3rem);
	padding: clamp(1.25rem, 4vw, 2.35rem) 0;
	border-top: 1px solid rgb(153 0 29 / 14%);
}

.process-step:last-child {
	border-bottom: 1px solid rgb(153 0 29 / 14%);
}

.process-step__number {
	color: var(--color-brand);
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 4.6rem);
	font-weight: 700;
	line-height: 0.9;
}

.process-step h3 {
	font-size: clamp(1.75rem, 3vw, 3.1rem);
}

.process-step p {
	max-width: 44rem;
	margin-top: 0.75rem;
	color: var(--color-muted);
	font-size: clamp(1rem, 1.7vw, 1.16rem);
}

.final-cta {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: grid;
	justify-items: center;
	padding: clamp(2.4rem, 7vw, 5rem);
	border-radius: var(--radius-large);
	background:
		radial-gradient(circle at top left, rgb(255 248 239 / 18%), transparent 18rem),
		linear-gradient(135deg, var(--color-brand-dark), var(--color-brand));
	box-shadow: var(--shadow-paper);
	color: var(--color-background);
	text-align: center;
}

.final-cta::before {
	position: absolute;
	inset: auto auto 1.25rem 1.25rem;
	z-index: -1;
	width: clamp(6rem, 18vw, 13rem);
	height: clamp(6rem, 18vw, 13rem);
	border: 1px dashed rgb(255 248 239 / 34%);
	border-radius: 999rem;
	content: "";
}

.final-cta .eyebrow,
.final-cta .eyebrow::before {
	color: var(--color-background);
}

.final-cta h2 {
	max-width: 52rem;
}

.final-cta > p:not(.eyebrow) {
	max-width: 42rem;
	margin-top: 1.25rem;
	color: rgb(255 248 239 / 82%);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.final-cta .button-row {
	justify-content: center;
}

.final-cta .button--primary {
	background: var(--color-background);
	color: var(--color-brand);
}

.final-cta .button--ghost {
	border-color: rgb(255 248 239 / 46%);
	color: var(--color-background);
}

.work-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 22rem));
	gap: clamp(1.5rem, 4vw, 2.5rem);
	align-items: start;
	justify-content: start;
}

.work-card {
	position: relative;
	overflow: hidden;
	border-radius: 0;
	background: transparent;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.work-card::before {
	display: none;
}

.work-card:nth-child(even)::before {
	display: none;
}

.work-card:hover {
	transform: translateY(-0.35rem);
}

.work-card__media {
	display: grid;
	place-items: center;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border: 1px solid rgb(153 0 29 / 12%);
	border-radius: 1.15rem;
	background:
		radial-gradient(circle at 20% 20%, rgb(210 69 85 / 20%), transparent 12rem),
		linear-gradient(135deg, rgb(153 0 29 / 10%), transparent),
		#fff2e6;
	box-shadow: var(--shadow-paper);
}

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

.work-card__media img[src*="logo-source"] {
	width: 38%;
	height: auto;
	object-fit: contain;
}

.work-card__body {
	padding: 1rem 0.15rem 0;
}

.work-card h2 {
	margin-top: 0;
	font-size: clamp(1.45rem, 2.35vw, 2.15rem);
}

.work-card h2 a {
	text-decoration: none;
}

.work-card__description {
	margin-top: 0.75rem;
	color: var(--color-muted);
	font-size: 0.98rem;
	line-height: 1.55;
}

.work-card__tags,
.work-card__categories,
.single-work__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}

.work-card__tags a,
.work-card__categories a,
.single-work__meta a {
	display: inline-flex;
	padding: 0.35rem 0.65rem;
	border: 1px solid rgb(153 0 29 / 18%);
	border-radius: 999rem;
	background: rgb(153 0 29 / 7%);
	color: var(--color-brand);
	font-size: 0.75rem;
	font-weight: 800;
	text-decoration: none;
}

.about-layout,
.contact-layout {
	display: grid;
	grid-template-columns: minmax(15rem, 0.75fr) minmax(0, 1.25fr);
	gap: clamp(1rem, 4vw, 2rem);
	align-items: stretch;
}

.about-panel,
.contact-note {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: grid;
	place-items: center;
	min-height: 24rem;
	padding: clamp(2rem, 5vw, 3rem);
	border-radius: var(--radius-large);
	background:
		radial-gradient(circle at top left, rgb(255 248 239 / 18%), transparent 14rem),
		linear-gradient(135deg, var(--color-brand-dark), var(--color-brand));
	color: var(--color-background);
}

.about-panel::before,
.contact-note::before {
	position: absolute;
	inset: 1rem;
	z-index: -1;
	border: 1px dashed rgb(255 248 239 / 32%);
	border-radius: calc(var(--radius-large) - 0.75rem);
	content: "";
}

.about-panel > img:not(.site-sticker),
.contact-note > img:not(.site-sticker) {
	position: relative;
	width: min(70%, 17rem);
	filter: brightness(0) invert(1);
}

.contact-note {
	align-content: center;
	gap: 1.5rem;
	text-align: center;
}

.contact-note p {
	max-width: 22rem;
	font-size: 1.15rem;
}

.contact-note__links {
	display: grid;
	gap: 0.75rem;
	width: min(100%, 24rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-note__links a {
	display: grid;
	gap: 0.2rem;
	padding: 0.8rem 1rem;
	border: 1px solid rgb(255 248 239 / 32%);
	border-radius: 1rem;
	background: rgb(255 248 239 / 9%);
	color: var(--color-background);
	text-decoration: none;
	transition: background 180ms ease, transform 180ms ease;
}

.contact-note__links a:hover,
.contact-note__links a:focus-visible {
	background: rgb(255 248 239 / 16%);
	transform: translateY(-0.12rem);
}

.contact-note__links span {
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact-note__links strong {
	overflow-wrap: anywhere;
	font-family: var(--font-body);
	font-size: clamp(0.95rem, 1.7vw, 1.08rem);
	line-height: 1.25;
}

.content-card,
.form-card {
	padding: clamp(1.5rem, 4vw, 3rem);
}

.site-sticker {
	position: absolute;
	z-index: 0;
	width: var(--sticker-size, clamp(3.25rem, 8vw, 6rem));
	max-width: none;
	height: auto;
	object-fit: contain;
	pointer-events: none;
	user-select: none;
	filter: drop-shadow(0 0.75rem 1.15rem rgb(68 36 20 / 13%));
}

.hero__scene .site-sticker {
	z-index: 0;
}

.site-sticker--hero-rose {
	--sticker-size: clamp(3.9rem, 8vw, 5.6rem);
	top: 0.4rem;
	left: 2.75rem;
	opacity: 0.55;
	transform: rotate(-9deg);
}

.home-about__visual .site-sticker--home-camera {
	--sticker-size: clamp(3.75rem, 9vw, 5.5rem);
	bottom: 9%;
	left: 6%;
	z-index: 2;
	opacity: 0.74;
	transform: rotate(-9deg);
}

.final-cta > :not(.site-sticker) {
	position: relative;
	z-index: 1;
}

.site-sticker--cta-trim {
	--sticker-size: min(28rem, 62%);
	top: -0.75rem;
	left: 50%;
	opacity: 0.18;
	transform: translateX(-50%);
}

.about-story__media .site-sticker--about-flower {
	--sticker-size: clamp(4.5rem, 11vw, 6.75rem);
	right: 0.5rem;
	bottom: -0.65rem;
	z-index: 2;
	opacity: 0.62;
	transform: rotate(8deg);
}

.about-story__media img:not(.site-sticker) {
	z-index: 1;
}

.about-skills > :not(.site-sticker),
.about-resume > :not(.site-sticker),
.contact-note > :not(.site-sticker) {
	position: relative;
	z-index: 1;
}

.site-sticker--skills-trim {
	--sticker-size: min(19rem, 42%);
	top: -0.95rem;
	right: clamp(1rem, 5vw, 4rem);
	opacity: 0.12;
	transform: rotate(2deg);
}

.contact-note .site-sticker {
	filter: drop-shadow(0 1rem 1.4rem rgb(35 10 12 / 20%));
}

.site-sticker--contact-envelope {
	--sticker-size: clamp(3.75rem, 9vw, 5.75rem);
	left: 1rem;
	bottom: 1rem;
	opacity: 0.54;
	transform: rotate(-8deg);
}

.content-card {
	color: var(--color-muted);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.content-card > * + * {
	margin-top: 1rem;
}

.content-card--narrow {
	max-width: var(--content-width);
	margin-inline: auto;
}

.about-flow {
	display: grid;
	gap: clamp(3rem, 7vw, 6rem);
}

.about-flow .hero--page {
	margin-bottom: 0;
}

.about-wave {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
	clip-path: polygon(0 4%, 8% 2%, 18% 5%, 30% 1.5%, 43% 4%, 56% 2%, 70% 5%, 84% 1.5%, 100% 4%, 100% 96%, 88% 98%, 74% 95%, 61% 98%, 46% 95%, 31% 98%, 17% 95%, 0 98%);
}

.about-wave::before,
.about-wave::after {
	position: absolute;
	z-index: -1;
	pointer-events: none;
	content: "";
}

.about-wave::before {
	width: clamp(8rem, 24vw, 18rem);
	height: clamp(8rem, 24vw, 18rem);
	border-radius: 999rem;
	background: rgb(153 0 29 / 9%);
}

.about-wave::after {
	right: clamp(1rem, 5vw, 4rem);
	bottom: clamp(1rem, 4vw, 3rem);
	width: clamp(5rem, 12vw, 9rem);
	height: 1.1rem;
	border-radius: 999rem;
	background: rgb(255 253 249 / 58%);
	box-shadow: 0 0.75rem 1.5rem rgb(68 36 20 / 9%);
	transform: rotate(-6deg);
}

.about-wave--cream {
	background:
		radial-gradient(circle at top right, rgb(210 69 85 / 12%), transparent 18rem),
		linear-gradient(135deg, #fffdf9, #fff4de);
}

.about-wave--cream::before {
	top: 12%;
	left: 8%;
}

.about-wave--brand {
	background:
		radial-gradient(circle at 12% 15%, rgb(255 248 239 / 18%), transparent 18rem),
		linear-gradient(135deg, var(--color-brand-dark), var(--color-brand));
	color: var(--color-background);
}

.about-wave--brand::before {
	right: 8%;
	bottom: 8%;
	background: rgb(255 248 239 / 12%);
}

.about-wave--brand .eyebrow,
.about-wave--brand .eyebrow::before,
.about-wave--brand h2,
.about-wave--brand h3 {
	color: var(--color-background);
}

.about-wave--paper {
	background:
		linear-gradient(90deg, rgb(153 0 29 / 4%) 1px, transparent 1px),
		linear-gradient(0deg, rgb(153 0 29 / 3%) 1px, transparent 1px),
		linear-gradient(135deg, #fff8ef, #fffdf9);
	background-size: 3.5rem 3.5rem, 3.5rem 3.5rem, auto;
}

.about-wave--paper::before {
	top: 10%;
	right: 10%;
}

.about-story {
	display: grid;
	grid-template-columns: minmax(12rem, 0.55fr) minmax(0, 1fr);
	gap: clamp(2rem, 7vw, 6rem);
	align-items: center;
}

.about-story__media {
	position: relative;
	display: grid;
	place-items: center;
	min-height: clamp(14rem, 28vw, 23rem);
}

.about-story__media img:not(.site-sticker) {
	position: relative;
	width: min(48%, 9rem);
	filter: drop-shadow(0 1.4rem 2rem rgb(68 36 20 / 16%));
}

.about-story__media .portrait-image {
	width: min(88%, 22rem);
	aspect-ratio: 4 / 5;
	border: 0.55rem solid var(--color-surface-strong);
	border-radius: 2rem;
	box-shadow: var(--shadow-paper);
	filter: none;
	object-fit: cover;
	object-position: 56% 48%;
	transform: rotate(-2.5deg);
}

.about-story__media img.portrait-image {
	width: min(88%, 22rem);
	filter: none;
}

.about-story__media::before {
	content: none;
}

.about-doodle {
	position: absolute;
	z-index: 1;
	border: 2px solid currentColor;
	color: var(--color-brand);
}

.about-doodle--one {
	top: 8%;
	left: 5%;
	width: 4rem;
	height: 2rem;
	border-radius: 999rem;
	transform: rotate(-10deg);
}

.about-doodle--two {
	right: 6%;
	bottom: 9%;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
}

.about-story__content h2 {
	max-width: 47rem;
}

.about-story__content > p:not(.eyebrow),
.about-story__body {
	max-width: 42rem;
	margin-top: 1.35rem;
	color: var(--color-muted);
	font-size: clamp(1.05rem, 1.8vw, 1.2rem);
}

.about-story__body > * + * {
	margin-top: 1rem;
}

.about-skills {
	display: grid;
	gap: clamp(2rem, 6vw, 4rem);
}

.about-skills__intro {
	max-width: 48rem;
}

.about-skills__intro p:not(.eyebrow) {
	max-width: 42rem;
	margin-top: 1.1rem;
	color: rgb(255 248 239 / 78%);
}

.about-skill-groups {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.85fr);
	gap: clamp(2.25rem, 7vw, 5.5rem);
	align-items: start;
}

.about-skill-group h3 {
	margin-bottom: 1rem;
	font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.about-chip-list,
.program-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
}

.about-chip-list span {
	display: inline-flex;
	align-items: center;
	min-height: 2.65rem;
	padding: 0.65rem 1rem;
	border: 1px solid rgb(255 248 239 / 46%);
	border-radius: 999rem;
	background: rgb(255 248 239 / 10%);
	color: var(--color-background);
	font-weight: 800;
	line-height: 1.15;
}

.program-tile {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: clamp(5.35rem, 7vw, 6.25rem);
	aspect-ratio: 1;
	padding: 0.82rem;
	border: 1px solid rgb(255 248 239 / 30%);
	border-radius: 1.15rem;
	background: var(--color-background);
	box-shadow: 0 0.85rem 1.75rem rgb(68 36 20 / 16%);
	color: var(--color-brand);
	outline-offset: 0.25rem;
	overflow: hidden;
	text-align: center;
	cursor: default;
	transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.program-tile img {
	width: 100%;
	max-width: 3.55rem;
	max-height: 3.55rem;
	height: auto;
	object-fit: contain;
	transition: opacity 160ms ease, transform 180ms ease;
}

.program-tile__label {
	position: absolute;
	inset: 0.65rem;
	display: grid;
	place-items: center;
	color: var(--color-brand);
	font-size: clamp(0.7rem, 0.95vw, 0.82rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 1.08;
	opacity: 0;
	transform: translateY(0.25rem);
	transition: opacity 160ms ease, transform 180ms ease;
}

.program-tile:hover,
.program-tile:focus-visible {
	background: var(--color-surface-strong);
	box-shadow: 0 1rem 2rem rgb(68 36 20 / 20%);
	transform: translateY(-0.18rem);
}

.program-tile:hover img,
.program-tile:focus-visible img {
	opacity: 0;
	transform: scale(0.86);
}

.program-tile:hover .program-tile__label,
.program-tile:focus-visible .program-tile__label {
	opacity: 1;
	transform: translateY(0);
}

.about-latest {
	margin-top: 0;
}

.about-resume {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.2fr);
	gap: clamp(2rem, 7vw, 5rem);
	align-items: start;
}

.about-resume__heading {
	position: sticky;
	top: 2rem;
}

.about-resume__heading h2 {
	max-width: 30rem;
}

.about-resume__heading p:not(.eyebrow) {
	max-width: 31rem;
	margin-top: 1rem;
	color: var(--color-muted);
	font-size: clamp(1rem, 1.8vw, 1.14rem);
}

.resume-timeline {
	display: grid;
	gap: 0;
}

.resume-timeline article {
	display: grid;
	grid-template-columns: minmax(7rem, 0.35fr) minmax(0, 1fr);
	gap: clamp(1rem, 3vw, 2rem);
	padding: 1.4rem 0;
	border-top: 1px solid rgb(153 0 29 / 18%);
}

.resume-timeline article:last-child {
	border-bottom: 1px solid rgb(153 0 29 / 18%);
}

.resume-timeline__meta {
	display: grid;
	align-content: start;
	gap: 0.4rem;
}

.resume-timeline__label {
	color: var(--color-brand);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.resume-timeline__date {
	width: fit-content;
	padding: 0.25rem 0.65rem;
	border: 1px solid rgb(153 0 29 / 18%);
	border-radius: 999rem;
	background: rgb(255 248 239 / 72%);
	color: var(--color-ink);
	font-size: 0.82rem;
	font-weight: 900;
}

.resume-timeline h3 {
	max-width: 44rem;
	margin: 0;
	font-family: var(--font-body);
	font-size: clamp(1.05rem, 1.9vw, 1.3rem);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.35;
}

.resume-timeline ul {
	display: grid;
	gap: 0.45rem;
	max-width: 46rem;
	margin: 0.75rem 0 0;
	padding-left: 1.15rem;
	color: var(--color-muted);
}

.resume-timeline li::marker {
	color: var(--color-brand);
}

.single-work__media {
	display: grid;
	place-items: center;
	overflow: hidden;
	width: 100%;
	height: clamp(14rem, 28vw, 22rem);
	margin-bottom: clamp(1.75rem, 4vw, 3rem);
	border-radius: var(--radius-large);
	background:
		radial-gradient(circle at 20% 20%, rgb(210 69 85 / 18%), transparent 18rem),
		linear-gradient(135deg, rgb(153 0 29 / 8%), transparent),
		#fff2e6;
	box-shadow: var(--shadow-paper);
}

.single-work__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 78%;
}

.single-work__media--contain {
	background:
		radial-gradient(circle at 18% 20%, rgb(210 69 85 / 12%), transparent 14rem),
		#f7f4ef;
}

.single-work__media--contain img {
	object-fit: contain;
	object-position: center;
}

.single-work__media img[src*="logo-source"] {
	width: min(38%, 18rem);
	height: auto;
	object-fit: contain;
}

.single-work__content {
	width: 100%;
	max-width: none;
	margin-inline: auto;
	padding: clamp(1.5rem, 4vw, 3rem);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-large);
	background: var(--color-surface);
	box-shadow: 0 1rem 2.5rem rgb(68 36 20 / 6%);
}

.single-work__content > * + * {
	margin-top: 1.25rem;
}

.single-work__content h2 {
	margin-top: 2.5rem;
	font-size: clamp(2rem, 4vw, 3.5rem);
}

.single-work__content ul {
	padding-left: 1.25rem;
}

.case-study-meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.5rem), 1fr));
	gap: 1rem;
	margin: clamp(1.5rem, 4vw, 2.5rem) 0;
	padding: clamp(1rem, 3vw, 1.4rem);
	border: 1px solid rgb(153 0 29 / 14%);
	border-radius: var(--radius-medium);
	background:
		radial-gradient(circle at 90% 10%, rgb(210 69 85 / 14%), transparent 10rem),
		#fff8ef;
}

.case-study-meta > .wp-block-group__inner-container {
	display: contents;
}

.case-study-meta > div,
.case-study-meta > .wp-block-group__inner-container > div {
	display: grid;
	gap: 0.25rem;
}

.case-study-meta span {
	display: block;
	color: var(--color-brand);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.case-study-meta strong {
	display: block;
	color: var(--color-text);
	font-size: 0.95rem;
	line-height: 1.35;
}

.case-study-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.5rem), 1fr));
	gap: 1rem;
	width: 100%;
	margin-block: clamp(1.25rem, 4vw, 2.25rem);
}

.case-study-steps > .wp-block-group__inner-container {
	display: contents;
}

.case-study-steps > section,
.case-study-steps > .wp-block-group__inner-container > section {
	padding: 1.1rem;
	border: 1px solid rgb(153 0 29 / 14%);
	border-radius: 1.25rem;
	background: #fff8ef;
}

.case-study-steps span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	margin-bottom: 0.9rem;
	border-radius: 999rem;
	background: var(--color-brand);
	color: var(--color-background);
	font-size: 0.8rem;
	font-weight: 900;
}

.case-study-steps h3 {
	margin-bottom: 0.5rem;
	font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.case-study-steps p {
	color: var(--color-muted);
	font-size: 0.94rem;
	line-height: 1.5;
}

.case-study-screens {
	margin-block: clamp(1.5rem, 4vw, 2.5rem);
}

.case-study-screens > .wp-block-group__inner-container {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(11rem, 0.32fr);
	gap: clamp(1rem, 3vw, 1.5rem);
	align-items: start;
}

.case-study-screen {
	overflow: hidden;
	margin: 0;
	border: 1px solid rgb(153 0 29 / 12%);
	border-radius: var(--radius-medium);
	background: #f3f7f2;
	box-shadow: 0 1rem 2rem rgb(68 36 20 / 8%);
}

.case-study-screen img {
	width: 100%;
	height: auto;
}

.case-study-screen--mobile {
	max-height: 35rem;
	overflow-y: auto;
}

.case-study-screen--desktop {
	max-height: 45rem;
	overflow-y: auto;
}

.brand-identity-placeholder,
.project-carousel-placeholder {
	display: grid;
	place-items: center;
	min-height: clamp(16rem, 38vw, 28rem);
	margin-block: clamp(1.5rem, 4vw, 2.75rem);
	padding: clamp(1.5rem, 5vw, 3rem);
	border: 1px dashed rgb(153 0 29 / 28%);
	border-radius: var(--radius-large);
	background:
		radial-gradient(circle at 18% 20%, rgb(210 69 85 / 12%), transparent 13rem),
		radial-gradient(circle at 84% 18%, rgb(255 248 239 / 92%), transparent 12rem),
		#fff8ef;
	color: var(--color-muted);
	text-align: center;
	box-shadow: 0 1rem 2.5rem rgb(68 36 20 / 6%);
}

.brand-identity-placeholder p,
.project-carousel-placeholder p {
	max-width: 32rem;
	margin: 0;
	color: var(--color-brand);
	font-family: var(--font-display);
	font-size: clamp(1.7rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.04em;
}

.brand-identity-placeholder small,
.project-carousel-placeholder small {
	display: block;
	max-width: 30rem;
	margin-top: 0.75rem;
	font-size: 0.95rem;
	line-height: 1.5;
}

.brand-identity-placeholder img,
.project-carousel-placeholder img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: calc(var(--radius-large) - 0.5rem);
}

.single-work__content .wp-block-gallery,
.wp-block-gallery.is-style-portfolio-carousel {
	display: flex !important;
	flex-wrap: nowrap !important;
	gap: clamp(0.9rem, 2vw, 1.25rem) !important;
	overflow-x: auto;
	margin-block: clamp(1.5rem, 4vw, 2.75rem);
	padding: clamp(0.55rem, 1.5vw, 0.8rem);
	border: 1px solid rgb(153 0 29 / 12%);
	border-radius: var(--radius-large);
	background:
		radial-gradient(circle at 88% 12%, rgb(210 69 85 / 11%), transparent 13rem),
		#fffaf4;
	box-shadow: 0 1rem 2.5rem rgb(68 36 20 / 7%);
	scroll-behavior: smooth;
	scroll-padding-inline: clamp(0.55rem, 1.5vw, 0.8rem);
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	cursor: grab;
	overscroll-behavior-inline: contain;
	user-select: none;
}

.single-work__content .wp-block-gallery::-webkit-scrollbar,
.wp-block-gallery.is-style-portfolio-carousel::-webkit-scrollbar {
	display: none;
}

.single-work__content .wp-block-gallery.is-dragging,
.wp-block-gallery.is-style-portfolio-carousel.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
}

.single-work__content .wp-block-gallery > .blocks-gallery-grid,
.wp-block-gallery.is-style-portfolio-carousel > .blocks-gallery-grid {
	display: contents !important;
}

.single-work__content .wp-block-gallery > .wp-block-image,
.single-work__content .wp-block-gallery > .blocks-gallery-grid > .blocks-gallery-item,
.single-work__content .wp-block-gallery .portfolio-carousel__slide,
.wp-block-gallery.is-style-portfolio-carousel > .wp-block-image,
.wp-block-gallery.is-style-portfolio-carousel > .blocks-gallery-grid > .blocks-gallery-item,
.wp-block-gallery.is-style-portfolio-carousel .portfolio-carousel__slide {
	position: relative;
	display: grid !important;
	flex: 0 0 100% !important;
	place-items: center;
	overflow: hidden;
	height: clamp(14rem, 38vw, 28rem);
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	border-radius: calc(var(--radius-large) - 0.45rem);
	background: #fff;
	scroll-snap-align: start;
}

.single-work__content .wp-block-gallery .portfolio-carousel__slide,
.wp-block-gallery.is-style-portfolio-carousel .portfolio-carousel__slide {
	cursor: zoom-in;
}

.single-work__content .wp-block-gallery.is-dragging .portfolio-carousel__slide,
.wp-block-gallery.is-style-portfolio-carousel.is-dragging .portfolio-carousel__slide {
	cursor: grabbing;
}

.single-work__content .wp-block-gallery > .wp-block-image img,
.single-work__content .wp-block-gallery > .blocks-gallery-grid > .blocks-gallery-item img,
.single-work__content .wp-block-gallery .portfolio-carousel__slide img,
.wp-block-gallery.is-style-portfolio-carousel > .wp-block-image img,
.wp-block-gallery.is-style-portfolio-carousel > .blocks-gallery-grid > .blocks-gallery-item img,
.wp-block-gallery.is-style-portfolio-carousel .portfolio-carousel__slide img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: none;
	border-radius: inherit;
	object-fit: cover;
	object-position: center top;
	pointer-events: none;
}

.single-work__content .wp-block-gallery > .wp-block-image figcaption,
.single-work__content .wp-block-gallery > .blocks-gallery-grid > .blocks-gallery-item figcaption,
.single-work__content .wp-block-gallery .portfolio-carousel__slide figcaption,
.wp-block-gallery.is-style-portfolio-carousel > .wp-block-image figcaption,
.wp-block-gallery.is-style-portfolio-carousel > .blocks-gallery-grid > .blocks-gallery-item figcaption,
.wp-block-gallery.is-style-portfolio-carousel .portfolio-carousel__slide figcaption {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	left: 1rem;
	width: auto;
	max-height: none;
	padding: 0.75rem 0.9rem;
	border-radius: 1rem;
	background: rgb(255 250 244 / 90%);
	color: var(--color-text);
	font-size: 0.9rem;
	line-height: 1.35;
	text-align: left;
	backdrop-filter: blur(0.6rem);
}

.portfolio-carousel__open {
	position: absolute;
	right: clamp(0.75rem, 2vw, 1rem);
	top: clamp(0.75rem, 2vw, 1rem);
	z-index: 2;
	min-height: 2.35rem;
	padding: 0.55rem 0.85rem;
	border: 1px solid rgb(255 248 239 / 72%);
	border-radius: 999rem;
	background: rgb(255 250 244 / 92%);
	color: var(--color-brand);
	cursor: zoom-in;
	font: inherit;
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1;
	box-shadow: 0 0.65rem 1.4rem rgb(68 36 20 / 16%);
	opacity: 0.86;
	transition:
		background-color 180ms ease,
		color 180ms ease,
		opacity 180ms ease,
		transform 180ms ease;
}

.portfolio-carousel__slide:hover .portfolio-carousel__open,
.portfolio-carousel__open:hover,
.portfolio-carousel__open:focus-visible {
	background: var(--color-brand);
	color: var(--color-background);
	opacity: 1;
	transform: translateY(-0.08rem);
}

.portfolio-carousel__controls {
	display: flex;
	gap: 0.9rem;
	align-items: center;
	justify-content: center;
	margin-top: -1.5rem;
	margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.portfolio-carousel__button,
.portfolio-carousel__dot {
	border: 1px solid var(--color-line);
	background: var(--color-surface);
	color: var(--color-brand);
	cursor: pointer;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease,
		transform 180ms ease;
}

.portfolio-carousel__button {
	display: inline-grid;
	place-items: center;
	width: 2.85rem;
	height: 2.85rem;
	border-radius: 999rem;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 0.75rem 1.5rem rgb(68 36 20 / 8%);
}

.portfolio-carousel__button:hover,
.portfolio-carousel__button:focus-visible,
.portfolio-carousel__dot:hover,
.portfolio-carousel__dot:focus-visible,
.portfolio-carousel__dot.is-active {
	border-color: var(--color-brand);
	background: var(--color-brand);
	color: var(--color-background);
	transform: translateY(-0.08rem);
}

.portfolio-carousel__dots {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	align-items: center;
	justify-content: center;
}

.portfolio-carousel__dot {
	width: 0.75rem;
	height: 0.75rem;
	padding: 0;
	border-radius: 999rem;
}

body.has-lightbox-open {
	overflow: hidden;
}

.portfolio-lightbox {
	position: fixed;
	z-index: 9999;
	inset: 0;
	display: grid;
	place-items: center;
	padding: clamp(1rem, 3vw, 2rem);
	background: rgb(35 18 14 / 78%);
	backdrop-filter: blur(0.75rem);
}

.portfolio-lightbox[hidden] {
	display: none !important;
}

.portfolio-lightbox [hidden] {
	display: none !important;
}

.portfolio-lightbox__backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: transparent;
	cursor: zoom-out;
}

.portfolio-lightbox__dialog {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 0.85rem;
	width: min(100%, 76rem);
	max-height: calc(100dvh - 2rem);
}

.portfolio-lightbox__image-shell {
	position: relative;
	display: grid;
	place-items: center;
	overflow: hidden;
	padding: clamp(0.45rem, 1.5vw, 0.75rem);
	border: 1px solid rgb(255 248 239 / 42%);
	border-radius: var(--radius-large);
	background: #fffaf4;
	box-shadow: 0 1.25rem 4rem rgb(0 0 0 / 28%);
}

.portfolio-lightbox__image-shell img {
	display: block;
	width: 100%;
	max-height: min(76dvh, 48rem);
	border-radius: calc(var(--radius-large) - 0.6rem);
	object-fit: contain;
}

.portfolio-lightbox__close,
.portfolio-lightbox__nav {
	display: inline-grid;
	place-items: center;
	border: 1px solid rgb(255 248 239 / 64%);
	border-radius: 999rem;
	background: rgb(255 250 244 / 94%);
	color: var(--color-brand);
	cursor: pointer;
	font: inherit;
	font-weight: 900;
	box-shadow: 0 0.85rem 1.75rem rgb(0 0 0 / 18%);
	transition:
		background-color 180ms ease,
		color 180ms ease,
		transform 180ms ease;
}

.portfolio-lightbox__close:hover,
.portfolio-lightbox__close:focus-visible,
.portfolio-lightbox__nav:hover,
.portfolio-lightbox__nav:focus-visible {
	background: var(--color-brand);
	color: var(--color-background);
	transform: translateY(-0.08rem);
}

.portfolio-lightbox__close {
	justify-self: end;
	width: 2.75rem;
	height: 2.75rem;
	font-size: 1.65rem;
	line-height: 1;
}

.portfolio-lightbox__nav {
	position: absolute;
	top: 50%;
	width: clamp(2.7rem, 7vw, 3.4rem);
	height: clamp(2.7rem, 7vw, 3.4rem);
	font-size: clamp(1.65rem, 5vw, 2.25rem);
	line-height: 1;
	transform: translateY(-50%);
}

.portfolio-lightbox__nav:hover,
.portfolio-lightbox__nav:focus-visible {
	transform: translateY(calc(-50% - 0.08rem));
}

.portfolio-lightbox__nav--previous {
	left: clamp(0.55rem, 2vw, 1rem);
}

.portfolio-lightbox__nav--next {
	right: clamp(0.55rem, 2vw, 1rem);
}

.portfolio-lightbox__footer {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	align-items: center;
	justify-content: space-between;
	color: var(--color-background);
}

.portfolio-lightbox__caption,
.portfolio-lightbox__counter {
	margin: 0;
}

.portfolio-lightbox__caption {
	max-width: 48rem;
	font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.portfolio-lightbox__counter {
	margin-left: auto;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.project-navigation,
.posts-navigation,
.pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-top: clamp(2rem, 5vw, 4rem);
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	border: 1px solid var(--color-line);
	border-radius: 999rem;
	text-decoration: none;
}

.page-numbers.current {
	background: var(--color-brand);
	color: var(--color-background);
}

.wpcf7 form {
	display: grid;
	gap: 1rem;
}

.wpcf7 label {
	display: grid;
	gap: 0.45rem;
	color: var(--color-text);
	font-weight: 800;
}

.wpcf7 input:not([type="submit"]),
.wpcf7 textarea {
	width: 100%;
	padding: 0.95rem 1rem;
	border: 1px solid var(--color-line);
	border-radius: 1rem;
	background: #fffaf4;
	color: var(--color-text);
	font: inherit;
}

.wpcf7 textarea {
	min-height: 10rem;
	resize: vertical;
}

.wpcf7-submit {
	justify-self: start;
	min-height: 3rem;
	padding: 0.875rem 1.35rem;
	border: 0;
	border-radius: 999rem;
	background: var(--color-brand);
	color: var(--color-background);
	cursor: pointer;
	font: inherit;
	font-weight: 800;
}

.wpcf7-not-valid-tip {
	margin-top: 0.35rem;
	color: var(--color-brand);
	font-size: 0.9rem;
}

.wpcf7 form .wpcf7-response-output {
	margin: 0;
	padding: 1rem;
	border-radius: 1rem;
}

.error-404 {
	min-height: clamp(26rem, 60vh, 38rem);
}

.site-footer {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: clamp(1.25rem, 4vw, 3rem);
	align-items: center;
	width: min(calc(100% - 2rem), var(--page-width));
	margin: 0 auto 2rem;
	padding: 2rem 0 0;
	border-top: 0.125rem solid var(--color-brand);
	color: var(--color-muted);
}

.site-footer::before {
	position: absolute;
	top: -0.625rem;
	left: 0;
	width: min(12rem, 45vw);
	height: 0.5rem;
	background: repeating-linear-gradient(45deg, var(--color-brand) 0 0.45rem, transparent 0.45rem 0.9rem);
	content: "";
}

.site-footer p {
	margin: 0;
}

.site-footer__brand {
	display: inline-grid;
	place-items: center;
	width: clamp(2.25rem, 4vw, 3rem);
	text-decoration: none;
}

.site-footer__brand img {
	display: block;
	width: 100%;
	height: auto;
}

.site-footer__nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.85rem 1.35rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer a {
	text-decoration: none;
}

.site-footer__credit {
	text-align: right;
	font-size: 0.92rem;
}

@media (max-width: 56rem) {
	.site-footer {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.site-footer__credit {
		text-align: center;
	}

	.hero--home,
	.hero--page,
	.home-about,
	.about-story,
	.about-resume,
	.section--split,
	.about-layout,
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.hero--page {
		align-items: start;
	}

	.hero--home {
		gap: clamp(1.25rem, 4vw, 2rem);
		min-height: 0;
		background:
			radial-gradient(circle at 86% 18%, rgb(153 0 29 / 14%), transparent 12rem),
			radial-gradient(circle at 16% 12%, rgb(255 253 249 / 88%), transparent 10rem),
			linear-gradient(135deg, #fffdf9 0%, var(--color-background) 58%, var(--color-rose-paper) 100%);
	}

	.playful-hero h1 {
		max-width: 100%;
		font-size: clamp(2.85rem, 9vw, 4.7rem);
	}

	.hero__scene {
		min-height: clamp(14rem, 34vw, 18rem);
	}

	.hero__profile-card {
		width: min(100%, 16rem);
	}

	.hero__profile-image {
		aspect-ratio: 16 / 10;
	}

	.about-story__media img.portrait-image {
		width: min(72%, 18rem);
	}

	.hero__profile-body {
		padding-top: 0.8rem;
	}

	.hero__profile-body p {
		display: none;
	}

	.hero__mark {
		display: none;
	}

	.feature-grid--three {
		grid-template-columns: 1fr;
	}

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

	.home-about__visual {
		min-height: 18rem;
	}

	.home-about__photo {
		width: min(70%, 18rem);
	}

	.about-skill-groups {
		grid-template-columns: 1fr;
	}

	.case-study-meta,
	.case-study-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.case-study-screens > .wp-block-group__inner-container {
		grid-template-columns: 1fr;
	}

	.case-study-screen--desktop,
	.case-study-screen--mobile {
		max-height: 32rem;
	}

	.about-resume__heading {
		position: static;
	}

	.about-wave {
		clip-path: polygon(0 2%, 12% 1%, 26% 3%, 40% 1%, 55% 3%, 70% 1%, 86% 3%, 100% 2%, 100% 98%, 84% 97%, 68% 99%, 52% 97%, 36% 99%, 18% 97%, 0 98%);
	}

	.site-sticker--skills-trim {
		--sticker-size: min(16rem, 46%);
		opacity: 0.1;
	}
}

@media (max-width: 43.75rem) {
	.site-header {
		grid-template-columns: auto 1fr auto auto;
		column-gap: 0.75rem;
		row-gap: 0.875rem;
		min-height: auto;
		margin-top: 1.25rem;
		padding: 1rem 1.25rem;
	}

	.site-brand {
		grid-column: 1;
	}

	.site-brand img {
		height: 2.75rem;
	}

	.menu-toggle {
		display: inline-flex;
		grid-column: 4;
		justify-self: end;
	}

	.site-navigation {
		grid-column: 1 / -1;
		grid-row: 2;
		justify-self: stretch;
		width: 100%;
	}

	.site-navigation ul {
		display: grid;
		gap: 0.35rem;
		width: 100%;
		padding: 0.65rem;
		border: 1px solid rgb(153 0 29 / 12%);
		border-radius: 1.15rem;
		background: rgb(255 253 249 / 94%);
		box-shadow: 0 0.9rem 1.8rem rgb(68 36 20 / 10%);
	}

	.site-navigation a {
		display: block;
		padding: 0.75rem 0.85rem;
		border-radius: 0.85rem;
		font-size: 1rem;
		text-align: center;
	}

	.site-navigation a:hover,
	.site-navigation a:focus-visible {
		background: rgb(153 0 29 / 7%);
	}

	.language-switcher {
		grid-column: 3;
		grid-row: 1;
	}

	.has-js .site-navigation {
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		visibility: hidden;
		transition: max-height 220ms ease, opacity 180ms ease, visibility 180ms ease;
	}

	html.has-js .site-navigation.is-open {
		max-height: 18rem;
		opacity: 1;
		visibility: visible;
	}

	.site-main {
		padding-top: 2rem;
	}

	.hero--home,
	.hero--page,
	.content-card,
	.form-card {
		border-radius: 1.25rem;
	}

	.playful-hero h1 {
		font-size: clamp(2.65rem, 12vw, 4.1rem);
	}

	.hero__scene {
		min-height: 13.25rem;
	}

	.hero__profile-card {
		width: min(100%, 13.5rem);
		padding: 0.6rem;
		border-radius: 1.25rem;
	}

	.hero__sticker {
		min-height: 2.35rem;
		padding: 0.45rem 0.75rem;
		font-size: 0.85rem;
	}

	.hero__sticker--one {
		top: 24%;
		left: -0.25rem;
	}

	.hero__sticker--two {
		top: 7%;
		right: -0.25rem;
	}

	.hero__sticker--three {
		right: 6%;
		bottom: 5%;
	}

	.site-sticker--home-camera,
	.site-sticker--contact-envelope {
		display: none;
	}

	.site-sticker--hero-rose {
		--sticker-size: 3.75rem;
		top: 0.2rem;
		left: 1rem;
		opacity: 0.42;
	}

	.site-sticker--about-flower {
		--sticker-size: 4.25rem;
		opacity: 0.48;
	}

	.process-step {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.process-step__number {
		font-size: 2.5rem;
	}

	.about-story__media {
		min-height: 13rem;
	}

	.about-story__media img:not(.site-sticker) {
		width: min(34%, 6rem);
	}

	.single-work__media {
		height: clamp(11rem, 34vw, 16rem);
		margin-bottom: 1.75rem;
		border-radius: 1.25rem;
	}

	.program-tile {
		width: 4.45rem;
		padding: 0.7rem;
	}

	.program-tile img {
		max-width: 2.75rem;
		max-height: 2.75rem;
	}

	.program-tile__label {
		inset: 0.5rem;
		font-size: 0.68rem;
	}
}

@media (max-width: 30rem) {
	h1 {
		font-size: clamp(2.25rem, 11vw, 2.65rem);
	}

	.playful-hero h1 {
		font-size: clamp(2.4rem, 12vw, 3.2rem);
	}

	.hero--home,
	.hero--page,
	.about-wave,
	.content-card,
	.form-card,
	.contact-note,
	.feature-card,
	.final-cta {
		padding: 1.5rem;
	}

	.hero__scene {
		min-height: 9.5rem;
	}

	.hero__profile-card {
		width: min(100%, 11rem);
	}

	.hero__profile-body {
		display: none;
	}

	.hero__sticker--three {
		display: none;
	}

	.site-sticker--hero-rose,
	.site-sticker--about-flower,
	.site-sticker--skills-trim,
	.site-sticker--cta-trim,
	.site-sticker--contact-envelope {
		display: none;
	}

	.home-about {
		padding-block: 1.75rem;
	}

	.home-about__visual {
		min-height: 15rem;
	}

	.home-about__photo {
		width: min(78%, 16rem);
		border-width: 0.55rem;
		border-radius: 1.25rem;
	}

	.about-story__media {
		min-height: 10rem;
	}

	.single-work__media {
		height: clamp(10rem, 48vw, 14rem);
	}

	.about-story__media img.portrait-image {
		width: min(88%, 15rem);
		border-width: 0.55rem;
		border-radius: 1rem;
		object-position: 56% 48%;
	}

	.about-story__media::before {
		border-width: 0.45rem;
		border-radius: 1rem;
	}

	.about-doodle {
		display: none;
	}

	.about-chip-list span {
		flex: 1 1 8rem;
		justify-content: center;
	}

	.resume-timeline article {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.resume-timeline__meta {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
	}

	.case-study-meta,
	.case-study-steps {
		grid-template-columns: 1fr;
	}

	.case-study-screen--desktop,
	.case-study-screen--mobile {
		max-height: 28rem;
	}

	.single-work__content .wp-block-gallery,
	.wp-block-gallery.is-style-portfolio-carousel {
		padding: 0.45rem;
		border-radius: 1.25rem;
	}

	.single-work__content .wp-block-gallery > .wp-block-image,
	.single-work__content .wp-block-gallery > .blocks-gallery-grid > .blocks-gallery-item,
	.single-work__content .wp-block-gallery .portfolio-carousel__slide,
	.wp-block-gallery.is-style-portfolio-carousel > .wp-block-image,
	.wp-block-gallery.is-style-portfolio-carousel > .blocks-gallery-grid > .blocks-gallery-item,
	.wp-block-gallery.is-style-portfolio-carousel .portfolio-carousel__slide {
		height: clamp(11.5rem, 55vw, 17rem);
		border-radius: 0.95rem;
	}

	.single-work__content .wp-block-gallery > .wp-block-image figcaption,
	.single-work__content .wp-block-gallery > .blocks-gallery-grid > .blocks-gallery-item figcaption,
	.single-work__content .wp-block-gallery .portfolio-carousel__slide figcaption,
	.wp-block-gallery.is-style-portfolio-carousel > .wp-block-image figcaption,
	.wp-block-gallery.is-style-portfolio-carousel > .blocks-gallery-grid > .blocks-gallery-item figcaption,
	.wp-block-gallery.is-style-portfolio-carousel .portfolio-carousel__slide figcaption {
		right: 0.65rem;
		bottom: 0.65rem;
		left: 0.65rem;
		font-size: 0.82rem;
	}

	.portfolio-carousel__controls {
		gap: 0.65rem;
		margin-top: -1.1rem;
	}

	.portfolio-carousel__button {
		width: 2.45rem;
		height: 2.45rem;
		font-size: 1.45rem;
	}

	.portfolio-carousel__open {
		min-height: 2.25rem;
		padding: 0.5rem 0.7rem;
		font-size: 0.72rem;
		opacity: 1;
	}

	.portfolio-lightbox {
		padding: 0.75rem;
	}

	.portfolio-lightbox__dialog {
		gap: 0.65rem;
		max-height: calc(100dvh - 1.5rem);
	}

	.portfolio-lightbox__image-shell {
		padding: 0.35rem;
		border-radius: 1.15rem;
	}

	.portfolio-lightbox__image-shell img {
		max-height: 72dvh;
		border-radius: 0.9rem;
	}

	.portfolio-lightbox__close {
		width: 2.45rem;
		height: 2.45rem;
		font-size: 1.45rem;
	}

	.portfolio-lightbox__nav {
		width: 2.45rem;
		height: 2.45rem;
		font-size: 1.55rem;
	}

	.portfolio-lightbox__footer {
		justify-content: center;
		text-align: center;
	}

	.portfolio-lightbox__counter {
		margin-left: 0;
		width: 100%;
	}

	.work-card__body {
		padding-top: 0.9rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero__profile-card,
	.hero__profile-image img,
	.hero__sticker,
	.portfolio-carousel__button,
	.portfolio-carousel__dot,
	.button,
	.text-link,
	.work-card {
		animation: none !important;
		transition: none !important;
	}

	.hero__profile-card:hover,
	.hero__profile-card:hover .hero__profile-image img,
	.hero__sticker:hover,
	.hero__scene:has(.hero__profile-card:hover) .hero__profile-card,
	.hero__scene:has(.hero__profile-card:hover) .hero__profile-image img,
	.hero__scene:has(.hero__profile-card:hover) .hero__sticker,
	.hero__scene:has(.hero__sticker:hover) .hero__profile-card,
	.hero__scene:has(.hero__sticker:hover) .hero__profile-image img,
	.hero__scene:has(.hero__sticker:hover) .hero__sticker {
		transform: none;
	}
}
