/*
Theme Name: All Loving Senior Home Care
Theme URI: https://example.com/
Author: All Loving Senior Home Care Agency
Description: A warm, accessible custom theme for All Loving Senior Home Care Agency.
Version: 1.1.7
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: all-loving-care
*/

:root {
	--alc-plum: #3555a0;
	--alc-plum-dark: #193b70;
	--alc-plum-soft: #eaf0fb;
	--alc-coral: #3ba595;
	--alc-coral-dark: #287f75;
	--alc-cream: #f7fafc;
	--alc-sand: #e8f2f1;
	--alc-sage: #527d79;
	--alc-ink: #1e2a3a;
	--alc-muted: #657382;
	--alc-white: #fff;
	--alc-line: rgba(53, 85, 160, 0.14);
	--alc-shadow: 0 22px 60px rgba(25, 59, 112, 0.13);
	--alc-shadow-sm: 0 12px 34px rgba(25, 59, 112, 0.1);
	--alc-radius: 24px;
	--alc-radius-sm: 14px;
	--alc-container: 1200px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--alc-ink);
	background: var(--alc-white);
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

.alc-preloader {
	position: fixed;
	z-index: 9999;
	inset: 0;
	display: grid;
	place-items: center;
	overflow: hidden;
	background: #f8fbff;
	opacity: 1;
	visibility: visible;
	transition: opacity 450ms ease, visibility 450ms ease;
}

.alc-preloader::before,
.alc-preloader::after {
	position: absolute;
	width: min(55vw, 620px);
	aspect-ratio: 1;
	content: "";
	border: 1px solid rgba(53, 85, 160, 0.08);
	border-radius: 50%;
	pointer-events: none;
}

.alc-preloader::before {
	top: -34%;
	left: -16%;
	background: radial-gradient(circle, rgba(53, 85, 160, 0.06), transparent 68%);
}

.alc-preloader::after {
	right: -18%;
	bottom: -42%;
	background: radial-gradient(circle, rgba(59, 165, 149, 0.07), transparent 68%);
}

.alc-preloader.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.alc-preloader__content {
	position: relative;
	z-index: 1;
	display: flex;
	width: min(88vw, 560px);
	align-items: center;
	flex-direction: column;
	text-align: center;
	animation: alc-preloader-arrive 400ms ease both;
}

.alc-preloader__welcome {
	color: var(--alc-muted);
	font-size: clamp(0.7rem, 1.5vw, 0.82rem);
	font-weight: 800;
	letter-spacing: 0.24em;
	opacity: 0;
	text-transform: uppercase;
	transform: translateY(8px);
	animation: alc-preloader-fade-up 400ms ease 80ms forwards;
}

.alc-preloader__wordmark {
	display: grid;
	margin-top: 13px;
	place-items: center;
}

.alc-preloader__line {
	position: relative;
	display: block;
	width: max-content;
	overflow: hidden;
	font-family: "Lora", Georgia, serif;
	font-size: clamp(2.25rem, 7vw, 4.4rem);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.04;
}

.alc-preloader__line::after {
	position: absolute;
	inset: -0.06em -3px;
	content: "";
	background: #f8fbff;
	border-left: 3px solid var(--alc-coral);
	transform: translateX(0);
}

.alc-preloader__line--one {
	color: var(--alc-plum);
}

.alc-preloader__line--one::after {
	animation: alc-preloader-write 720ms steps(10, end) 300ms forwards;
}

.alc-preloader__line--two {
	margin-top: 2px;
	color: var(--alc-coral-dark);
}

.alc-preloader__line--two::after {
	border-left-color: var(--alc-plum);
	animation: alc-preloader-write 820ms steps(11, end) 980ms forwards;
}

.alc-preloader__flourish {
	width: 0;
	height: 2px;
	margin-top: 26px;
	overflow: hidden;
	background: linear-gradient(90deg, transparent, var(--alc-plum), var(--alc-coral), transparent);
	border-radius: 999px;
	animation: alc-preloader-flourish 460ms ease 1700ms forwards;
}

.alc-preloader .alc-preloader__values {
	margin: 14px 0 0;
	color: var(--alc-muted);
	font-family: "Manrope", sans-serif;
	font-size: 0.68rem;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.17em;
	opacity: 0;
	text-transform: uppercase;
	transform: translateY(6px);
	animation: alc-preloader-fade-up 400ms ease 1780ms forwards;
}

@keyframes alc-preloader-arrive {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes alc-preloader-fade-up {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes alc-preloader-write {
	to {
		transform: translateX(105%);
	}
}

@keyframes alc-preloader-flourish {
	to {
		width: 170px;
	}
}

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

a {
	color: var(--alc-plum);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

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

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

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

:focus-visible {
	outline: 3px solid rgba(59, 165, 149, 0.55);
	outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.65em;
	color: var(--alc-plum-dark);
	font-family: "Lora", Georgia, serif;
	font-weight: 600;
	line-height: 1.14;
	letter-spacing: -0.025em;
}

h1 {
	font-size: clamp(2.75rem, 6vw, 5.6rem);
}

h2 {
	font-size: clamp(2.15rem, 4vw, 3.6rem);
}

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

p {
	margin: 0 0 1.25em;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	z-index: 10000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	color: var(--alc-white);
	background: var(--alc-plum-dark);
	border-radius: 8px;
}

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

.alc-section {
	position: relative;
	padding: clamp(72px, 9vw, 128px) 0;
	overflow: hidden;
}

.alc-section--cream {
	background: var(--alc-cream);
}

.alc-section--plum {
	color: rgba(255, 255, 255, 0.86);
	background: var(--alc-plum-dark);
}

.alc-section--plum h2,
.alc-section--plum h3 {
	color: var(--alc-white);
}

.alc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--alc-coral-dark);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1;
	text-transform: uppercase;
}

.alc-eyebrow::before {
	width: 28px;
	height: 2px;
	content: "";
	background: currentcolor;
}

.alc-section--plum .alc-eyebrow {
	color: #82d2c6;
}

.alc-lead {
	max-width: 680px;
	color: var(--alc-muted);
	font-size: clamp(1.06rem, 1.5vw, 1.22rem);
}

.alc-section--plum .alc-lead {
	color: rgba(255, 255, 255, 0.72);
}

.alc-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 36px;
	margin-bottom: 52px;
}

.alc-section-heading h2 {
	max-width: 720px;
	margin-bottom: 0;
}

.alc-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 22px;
	padding: 9px 14px;
	color: var(--alc-plum);
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(53, 85, 160, 0.1);
	border-radius: 999px;
	box-shadow: 0 5px 20px rgba(25, 59, 112, 0.07);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

.alc-kicker svg {
	width: 16px;
	height: 16px;
	color: var(--alc-coral);
}

.alc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 14px 24px;
	color: var(--alc-white);
	background: var(--alc-plum);
	border: 2px solid var(--alc-plum);
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(53, 85, 160, 0.22);
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.alc-button:hover {
	color: var(--alc-white);
	background: var(--alc-plum-dark);
	border-color: var(--alc-plum-dark);
	box-shadow: 0 14px 30px rgba(25, 59, 112, 0.24);
	transform: translateY(-2px);
}

.alc-button--coral {
	background: var(--alc-coral);
	border-color: var(--alc-coral);
	box-shadow: 0 10px 24px rgba(59, 165, 149, 0.24);
}

.alc-button--coral:hover {
	background: var(--alc-coral-dark);
	border-color: var(--alc-coral-dark);
}

.alc-button--outline {
	color: var(--alc-plum);
	background: transparent;
	border-color: rgba(53, 85, 160, 0.3);
	box-shadow: none;
}

.alc-button--outline:hover {
	color: var(--alc-white);
	background: var(--alc-plum);
	border-color: var(--alc-plum);
}

.alc-button svg {
	width: 18px;
	height: 18px;
}

.alc-text-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 0.9rem;
	font-weight: 800;
	text-decoration: none;
}

.alc-text-link svg {
	width: 17px;
	height: 17px;
	transition: transform 180ms ease;
}

.alc-text-link:hover svg {
	transform: translateX(4px);
}

/* Header */
.site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	background: rgba(255, 255, 255, 0.95);
	border-bottom: 1px solid transparent;
	backdrop-filter: blur(16px);
	transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
	border-color: var(--alc-line);
	box-shadow: 0 8px 30px rgba(25, 59, 112, 0.07);
}

.alc-topbar {
	color: rgba(255, 255, 255, 0.82);
	background: var(--alc-plum-dark);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.alc-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 36px;
}

.alc-topbar p {
	margin: 0;
}

.alc-topbar a {
	color: var(--alc-white);
	text-decoration: none;
}

.alc-topbar__address {
	max-width: min(72%, 720px);
	font-weight: 600;
	letter-spacing: 0;
}

.alc-topbar__address:hover {
	text-decoration: underline;
}

.alc-topbar__actions {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-shrink: 0;
}

.alc-topbar__email {
	font-weight: 700;
	letter-spacing: 0.01em;
}

.alc-topbar__email:hover {
	text-decoration: underline;
}

.alc-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 96px;
	gap: 28px;
}

.alc-brand {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 11px;
	color: var(--alc-plum-dark);
	text-decoration: none;
}

.alc-brand:hover {
	color: var(--alc-plum-dark);
}

.alc-brand__logo {
	width: clamp(240px, 22vw, 320px);
	height: auto;
	border-radius: 6px;
}

.alc-brand__mark {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	color: var(--alc-white);
	background: linear-gradient(145deg, var(--alc-coral), var(--alc-plum));
	border-radius: 50% 50% 46% 54% / 52% 45% 55% 48%;
	box-shadow: 0 8px 18px rgba(53, 85, 160, 0.2);
}

.alc-brand__mark svg {
	width: 27px;
	height: 27px;
}

.alc-brand__text {
	display: flex;
	flex-direction: column;
	font-family: "Lora", Georgia, serif;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.05;
}

.alc-brand__text small {
	margin-top: 5px;
	color: var(--alc-muted);
	font-family: "Manrope", sans-serif;
	font-size: 0.6rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.alc-header-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.alc-nav-panel {
	display: contents;
}

.alc-nav-panel__head,
.alc-nav-backdrop {
	display: none;
}

.alc-nav-panel__foot {
	display: contents;
}

.alc-nav-email {
	display: none;
}

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

.alc-menu {
	display: flex;
	align-items: center;
	gap: 6px;
}

.alc-menu > li {
	position: relative;
}

.alc-menu > li > a {
	display: block;
	padding: 13px 12px;
	color: var(--alc-ink);
	font-size: 0.83rem;
	font-weight: 800;
	text-decoration: none;
}

.alc-menu > li > a:hover,
.alc-menu > .current-menu-item > a,
.alc-menu > .current-menu-ancestor > a {
	color: var(--alc-plum);
}

.alc-menu .sub-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	width: 245px;
	padding: 10px;
	visibility: hidden;
	opacity: 0;
	background: var(--alc-white);
	border: 1px solid var(--alc-line);
	border-radius: 16px;
	box-shadow: var(--alc-shadow-sm);
	transform: translate(-50%, 8px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.alc-menu li:hover > .sub-menu,
.alc-menu li:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translate(-50%, 0);
}

.alc-menu .sub-menu a {
	display: block;
	padding: 10px 12px;
	color: var(--alc-ink);
	border-radius: 9px;
	font-size: 0.81rem;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
}

.alc-menu .sub-menu a:hover {
	color: var(--alc-plum);
	background: var(--alc-plum-soft);
}

.alc-menu-toggle {
	display: none;
	align-items: center;
	gap: 8px;
	min-height: 46px;
	padding: 0 16px 0 14px;
	color: var(--alc-white);
	background: var(--alc-plum-dark);
	border: 0;
	border-radius: 999px;
	box-shadow: 0 10px 22px rgba(25, 59, 112, 0.24);
	cursor: pointer;
	font-family: inherit;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

.alc-menu-toggle:hover,
.alc-menu-toggle:focus-visible {
	color: var(--alc-white);
	background: var(--alc-plum);
}

.alc-menu-toggle__bars {
	position: relative;
	display: block;
	width: 16px;
	height: 12px;
}

.alc-menu-toggle__bars span {
	position: absolute;
	left: 0;
	display: block;
	width: 16px;
	height: 2px;
	background: currentColor;
	border-radius: 99px;
	transition: transform 220ms ease, opacity 180ms ease, top 220ms ease;
}

.alc-menu-toggle__bars span:nth-child(1) {
	top: 0;
}

.alc-menu-toggle__bars span:nth-child(2) {
	top: 5px;
}

.alc-menu-toggle__bars span:nth-child(3) {
	top: 10px;
}

.alc-menu-toggle[aria-expanded="true"] .alc-menu-toggle__bars span:nth-child(1) {
	top: 5px;
	transform: rotate(45deg);
}

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

.alc-menu-toggle[aria-expanded="true"] .alc-menu-toggle__bars span:nth-child(3) {
	top: 5px;
	transform: rotate(-45deg);
}

.alc-submenu-toggle {
	display: none;
}

/* Hero */
.alc-hero {
	position: relative;
	min-height: min(820px, calc(100vh - 120px));
	padding: clamp(70px, 9vw, 122px) 0;
	overflow: hidden;
	background: linear-gradient(110deg, #f8fbff 0%, #eef8f6 56%, #e8f1fa 100%);
}

.alc-hero::before {
	position: absolute;
	top: -220px;
	left: -180px;
	width: 560px;
	height: 560px;
	content: "";
	background: radial-gradient(circle, rgba(59, 165, 149, 0.16), transparent 68%);
	border-radius: 50%;
}

.alc-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
	align-items: center;
	gap: clamp(44px, 7vw, 92px);
}

.alc-hero__content h1 {
	max-width: 780px;
	margin-bottom: 24px;
}

.alc-hero__content h1 em {
	position: relative;
	display: inline-block;
	min-width: 5.2em;
	padding-right: 0.08em;
	color: var(--alc-coral-dark);
	border-right: 3px solid var(--alc-coral);
	font-style: italic;
	white-space: nowrap;
	animation: alc-caret-blink 850ms step-end infinite;
}

.alc-hero__content h1 em::after {
	position: absolute;
	right: 0;
	bottom: -3px;
	left: 0;
	height: 9px;
	content: "";
	background: url("data:image/svg+xml,%3Csvg width='300' height='9' viewBox='0 0 300 9' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6.5C83 1 218 1 298 5' stroke='%233ba595' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
	opacity: 0.45;
}

@keyframes alc-caret-blink {
	0%,
	45% {
		border-right-color: var(--alc-coral);
	}

	46%,
	100% {
		border-right-color: transparent;
	}
}

.alc-hero__intro {
	max-width: 620px;
	margin-bottom: 32px;
	color: var(--alc-muted);
	font-size: clamp(1.05rem, 1.7vw, 1.23rem);
}

.alc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-bottom: 42px;
}

.alc-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	color: var(--alc-plum-dark);
	font-size: 0.8rem;
	font-weight: 800;
}

.alc-trust-row span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.alc-trust-row svg {
	width: 18px;
	height: 18px;
	color: var(--alc-coral);
}

.alc-hero__visual {
	position: relative;
	min-height: 570px;
}

.alc-hero__photo {
	position: absolute;
	inset: 0 0 38px 40px;
	overflow: hidden;
	border: 9px solid rgba(255, 255, 255, 0.78);
	border-radius: 230px 230px 45px 45px;
	box-shadow: var(--alc-shadow);
}

.alc-hero__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 55% center;
}

.alc-hero__badge {
	position: absolute;
	z-index: 3;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: 260px;
	padding: 17px 20px;
	background: var(--alc-white);
	border: 1px solid var(--alc-line);
	border-radius: 18px;
	box-shadow: var(--alc-shadow-sm);
}

.alc-hero__badge-icon {
	display: grid;
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	place-items: center;
	color: var(--alc-white);
	background: var(--alc-coral);
	border-radius: 50%;
}

.alc-hero__badge-icon svg {
	width: 24px;
	height: 24px;
}

.alc-hero__badge strong {
	display: block;
	color: var(--alc-plum-dark);
	font-family: "Lora", Georgia, serif;
	font-size: 1rem;
	line-height: 1.2;
}

.alc-hero__badge small {
	display: block;
	margin-top: 3px;
	color: var(--alc-muted);
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 1.35;
}

.alc-hero__heart {
	position: absolute;
	z-index: 3;
	top: 35px;
	right: -17px;
	display: grid;
	width: 72px;
	height: 72px;
	place-items: center;
	color: var(--alc-coral);
	background: rgba(255, 255, 255, 0.93);
	border-radius: 50%;
	box-shadow: var(--alc-shadow-sm);
	transform: rotate(8deg);
}

.alc-hero__heart svg {
	width: 34px;
	height: 34px;
}

/* Grids and cards */
.alc-grid {
	display: grid;
	gap: 24px;
}

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

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

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

.alc-service-card {
	position: relative;
	display: flex;
	min-height: 440px;
	flex-direction: column;
	padding: 0;
	overflow: hidden;
	color: var(--alc-ink);
	background: var(--alc-white);
	border: 1px solid var(--alc-line);
	border-radius: var(--alc-radius);
	box-shadow: 0 4px 0 transparent;
	text-decoration: none;
	transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.alc-service-card__image {
	position: relative;
	z-index: 1;
	display: block;
	flex: 0 0 auto;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--alc-plum-soft);
}

.alc-service-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 350ms ease;
}

.alc-service-card:hover .alc-service-card__image img {
	transform: scale(1.045);
}

.alc-service-card__body {
	position: relative;
	z-index: 2;
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px 26px 28px;
}

.alc-service-card::after {
	position: absolute;
	right: -28px;
	bottom: -40px;
	width: 130px;
	height: 130px;
	content: "";
	background: var(--alc-plum-soft);
	border-radius: 50%;
	transition: transform 250ms ease;
}

.alc-service-card:hover {
	color: var(--alc-ink);
	border-color: rgba(53, 85, 160, 0.2);
	box-shadow: var(--alc-shadow-sm);
	transform: translateY(-7px);
}

.alc-service-card:hover::after {
	transform: scale(1.15);
}

.alc-icon-bubble {
	display: grid;
	width: 58px;
	height: 58px;
	margin-bottom: 26px;
	place-items: center;
	color: var(--alc-plum);
	background: var(--alc-plum-soft);
	border-radius: 18px;
}

.alc-icon-bubble svg {
	width: 28px;
	height: 28px;
}

.alc-service-card:nth-child(2n) .alc-icon-bubble {
	color: var(--alc-coral-dark);
	background: #e6f6f3;
}

.alc-service-card .alc-icon-bubble {
	width: 52px;
	height: 52px;
	margin-top: -52px;
	margin-bottom: 16px;
	border: 5px solid var(--alc-white);
	border-radius: 17px;
	box-sizing: content-box;
	box-shadow: 0 8px 20px rgba(25, 59, 112, 0.12);
}

.alc-service-card .alc-icon-bubble svg {
	width: 25px;
	height: 25px;
}

.alc-service-card h3 {
	margin-bottom: 10px;
	font-size: 1.34rem;
}

.alc-service-card p {
	margin-bottom: 22px;
	color: var(--alc-muted);
	font-size: 0.86rem;
	line-height: 1.65;
}

.alc-service-card .alc-text-link {
	position: relative;
	z-index: 2;
	margin-top: auto;
}

/* Text-only cards (Careers, Media) — no image body wrapper */
.alc-service-card--simple,
.alc-service-card:not(:has(.alc-service-card__image)) {
	min-height: 280px;
	padding: 28px 26px 30px;
	overflow: visible;
}

.alc-service-card--simple .alc-icon-bubble,
.alc-service-card:not(:has(.alc-service-card__image)) .alc-icon-bubble {
	margin-top: 0;
	margin-bottom: 18px;
	border: 0;
	box-shadow: none;
	box-sizing: border-box;
}

.alc-service-card--simple .alc-text-link,
.alc-service-card:not(:has(.alc-service-card__image)) .alc-text-link {
	display: inline-flex;
	padding-top: 4px;
}

.alc-feature-card {
	padding: 30px;
	background: var(--alc-white);
	border: 1px solid var(--alc-line);
	border-radius: var(--alc-radius);
	box-shadow: 0 3px 0 transparent;
}

.alc-feature-card h3 {
	margin-bottom: 10px;
}

.alc-feature-card p {
	margin: 0;
	color: var(--alc-muted);
	font-size: 0.92rem;
}

.alc-feature-card .alc-icon-bubble {
	margin-bottom: 20px;
}

.alc-number-card {
	position: relative;
	padding: 38px 30px 30px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--alc-radius);
}

.alc-number-card__number {
	position: absolute;
	top: -20px;
	left: 28px;
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	color: var(--alc-plum-dark);
	background: #72c8bb;
	border-radius: 50%;
	font-size: 0.78rem;
	font-weight: 900;
}

.alc-number-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.67);
	font-size: 0.88rem;
}

/* Story and imagery */
.alc-split {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: center;
	gap: clamp(50px, 8vw, 105px);
}

.alc-split--reverse > :first-child {
	order: 2;
}

.alc-image-stack {
	position: relative;
	min-height: 580px;
}

.alc-image-stack__main {
	position: absolute;
	inset: 0 54px 52px 0;
	overflow: hidden;
	border-radius: 220px 220px 32px 32px;
	box-shadow: var(--alc-shadow);
}

.alc-image-stack__main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.alc-image-stack__accent {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 46%;
	overflow: hidden;
	border: 7px solid var(--alc-white);
	border-radius: 24px;
	box-shadow: var(--alc-shadow-sm);
}

.alc-image-stack__accent img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.alc-check-list {
	display: grid;
	padding: 0;
	margin: 28px 0 34px;
	gap: 14px;
	list-style: none;
}

.alc-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	color: var(--alc-plum-dark);
	font-size: 0.91rem;
	font-weight: 750;
}

.alc-check-list svg {
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	margin-top: 4px;
	color: var(--alc-coral);
}

.alc-quote {
	position: relative;
	padding: 34px;
	margin: 28px 0;
	background: var(--alc-cream);
	border-left: 4px solid var(--alc-coral);
	border-radius: 0 var(--alc-radius) var(--alc-radius) 0;
}

.alc-quote p {
	margin: 0;
	color: var(--alc-plum-dark);
	font-family: "Lora", Georgia, serif;
	font-size: 1.2rem;
	font-style: italic;
	line-height: 1.55;
}

/* Testimonials */
.alc-testimonial {
	display: flex;
	min-height: 330px;
	flex-direction: column;
	padding: 34px;
	color: var(--alc-ink);
	background: var(--alc-white);
	border-radius: var(--alc-radius);
	box-shadow: var(--alc-shadow-sm);
}

.alc-stars {
	margin-bottom: 24px;
	color: #e8a13c;
	font-size: 0.94rem;
	letter-spacing: 0.16em;
}

.alc-testimonial blockquote {
	padding: 0;
	margin: 0 0 28px;
	color: var(--alc-plum-dark);
	font-family: "Lora", Georgia, serif;
	font-size: 1.08rem;
	font-style: italic;
	line-height: 1.6;
}

.alc-testimonial footer {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
}

.alc-avatar {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	color: var(--alc-white);
	background: linear-gradient(145deg, var(--alc-coral), var(--alc-plum));
	border-radius: 50%;
	font-family: "Lora", Georgia, serif;
	font-weight: 700;
}

.alc-testimonial footer strong {
	display: block;
	color: var(--alc-ink);
	font-size: 0.84rem;
}

.alc-testimonial footer span {
	display: block;
	color: var(--alc-muted);
	font-size: 0.7rem;
}

/* CTA */
.alc-cta {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 40px;
	padding: clamp(42px, 6vw, 72px);
	overflow: hidden;
	color: rgba(255, 255, 255, 0.78);
	background: linear-gradient(125deg, var(--alc-plum-dark), var(--alc-plum));
	border-radius: 34px;
	box-shadow: var(--alc-shadow);
}

.alc-cta::after {
	position: absolute;
	right: -110px;
	bottom: -130px;
	width: 330px;
	height: 330px;
	content: "";
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
}

.alc-cta h2 {
	max-width: 720px;
	margin-bottom: 14px;
	color: var(--alc-white);
}

.alc-cta p {
	max-width: 680px;
	margin: 0;
}

.alc-cta .alc-button {
	position: relative;
	z-index: 2;
}

/* Interior pages */
.alc-page-hero {
	position: relative;
	padding: clamp(86px, 10vw, 142px) 0 clamp(72px, 8vw, 112px);
	overflow: hidden;
	background: linear-gradient(115deg, var(--alc-cream), #e8f5f3);
}

.alc-page-hero::after {
	position: absolute;
	top: -220px;
	right: -150px;
	width: 520px;
	height: 520px;
	content: "";
	background: rgba(59, 165, 149, 0.11);
	border: 1px solid rgba(53, 85, 160, 0.08);
	border-radius: 50%;
}

.alc-page-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 850px;
}

.alc-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 22px;
	color: var(--alc-muted);
	font-size: 0.76rem;
	font-weight: 800;
	text-transform: uppercase;
}

.alc-breadcrumb a {
	color: var(--alc-plum);
	text-decoration: none;
}

.alc-page-hero h1 {
	margin-bottom: 20px;
	font-size: clamp(2.7rem, 6vw, 5rem);
}

.alc-page-hero p {
	max-width: 720px;
	margin: 0;
	color: var(--alc-muted);
	font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}

.alc-page-content {
	max-width: 850px;
	margin-inline: auto;
}

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

.alc-page-content h2 {
	margin-top: 1.5em;
	font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.alc-page-content h3 {
	margin-top: 1.6em;
}

.alc-values-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.alc-value-card {
	padding: 26px;
	background: var(--alc-white);
	border: 1px solid var(--alc-line);
	border-radius: 20px;
}

.alc-value-card h3 {
	margin: 0 0 8px;
	font-size: 1.18rem;
}

.alc-value-card p {
	margin: 0;
	color: var(--alc-muted);
	font-size: 0.84rem;
}

.alc-service-detail {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
	align-items: start;
	gap: clamp(48px, 8vw, 100px);
}

.alc-service-detail__image {
	margin: 0 0 34px;
	overflow: hidden;
	background: var(--alc-plum-soft);
	border-radius: var(--alc-radius);
	box-shadow: var(--alc-shadow-sm);
}

.alc-service-detail__image img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.alc-service-aside {
	position: sticky;
	top: 145px;
	padding: 30px;
	background: var(--alc-cream);
	border: 1px solid var(--alc-line);
	border-radius: var(--alc-radius);
}

.alc-service-aside h3 {
	margin-bottom: 10px;
}

.alc-service-aside p {
	color: var(--alc-muted);
	font-size: 0.88rem;
}

.alc-service-aside .alc-button {
	width: 100%;
}

.alc-detail-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	padding: 0;
	margin: 32px 0;
	gap: 12px 24px;
	list-style: none;
}

.alc-detail-list li {
	display: flex;
	gap: 9px;
	color: var(--alc-plum-dark);
	font-size: 0.88rem;
	font-weight: 750;
}

.alc-detail-list svg {
	flex: 0 0 19px;
	width: 19px;
	height: 19px;
	margin-top: 4px;
	color: var(--alc-coral);
}

/* FAQs */
.alc-faq-list {
	display: grid;
	gap: 12px;
	max-width: 900px;
	margin: 0 auto;
}

.alc-faq {
	background: var(--alc-white);
	border: 1px solid var(--alc-line);
	border-radius: 16px;
}

.alc-faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 24px;
	color: var(--alc-plum-dark);
	cursor: pointer;
	font-family: "Lora", Georgia, serif;
	font-size: 1.03rem;
	font-weight: 700;
	list-style: none;
}

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

.alc-faq summary::after {
	display: grid;
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	content: "+";
	place-items: center;
	color: var(--alc-plum);
	background: var(--alc-plum-soft);
	border-radius: 50%;
	font-family: "Manrope", sans-serif;
}

.alc-faq[open] summary::after {
	content: "−";
}

.alc-faq__answer {
	padding: 0 24px 22px;
	color: var(--alc-muted);
	font-size: 0.9rem;
}

.alc-faq__answer p:last-child {
	margin-bottom: 0;
}

/* Forms */
.alc-contact-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.2fr);
	align-items: start;
	gap: clamp(46px, 8vw, 96px);
}

.alc-contact-card {
	padding: 32px;
	color: rgba(255, 255, 255, 0.76);
	background: var(--alc-plum-dark);
	border-radius: var(--alc-radius);
}

.alc-contact-card h2,
.alc-contact-card h3 {
	color: var(--alc-white);
}

.alc-contact-point {
	display: flex;
	gap: 14px;
	padding: 18px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.alc-contact-point:last-child {
	border-bottom: 0;
}

.alc-contact-point svg {
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	margin-top: 2px;
	color: #82d2c6;
}

.alc-contact-point strong {
	display: block;
	color: var(--alc-white);
	font-size: 0.82rem;
}

.alc-contact-point span {
	display: block;
	margin-top: 3px;
	font-size: 0.78rem;
	line-height: 1.5;
}

.alc-address {
	display: grid;
	margin: 0;
	font-style: normal;
	line-height: 1.55;
}

.alc-address span {
	display: block;
	margin: 0;
}

.alc-address__name {
	font-weight: 700;
}

.alc-address--contact {
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.82);
}

.alc-contact-point .alc-address span {
	margin-top: 0;
	font-size: 0.78rem;
	line-height: 1.5;
}

.alc-contact-map-link {
	display: inline-block;
	margin-top: 8px;
	color: #82d2c6;
	font-size: 0.76rem;
	font-weight: 700;
	text-decoration: none;
}

.alc-contact-email {
	display: inline-block;
	margin-top: 4px;
	color: #82d2c6;
	font-size: 0.92rem;
	font-weight: 700;
	text-decoration: none;
}

.alc-contact-email:hover,
.alc-contact-map-link:hover {
	color: var(--alc-white);
}

.alc-map {
	overflow: hidden;
	border-radius: var(--alc-radius);
	box-shadow: var(--alc-shadow-sm);
}

.alc-map iframe {
	display: block;
	width: 100%;
	height: 380px;
	border: 0;
}

.alc-address--footer {
	margin: 0 0 18px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.82rem;
}

.alc-address--nav {
	display: none;
	margin: 0 0 16px;
	color: var(--alc-muted);
	font-size: 0.78rem;
}

.alc-form {
	padding: clamp(28px, 5vw, 48px);
	background: var(--alc-white);
	border: 1px solid var(--alc-line);
	border-radius: var(--alc-radius);
	box-shadow: var(--alc-shadow-sm);
}

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

.alc-field--full {
	grid-column: 1 / -1;
}

.alc-field label {
	display: block;
	margin-bottom: 7px;
	color: var(--alc-plum-dark);
	font-size: 0.78rem;
	font-weight: 800;
}

.alc-field input,
.alc-field select,
.alc-field textarea {
	width: 100%;
	padding: 13px 15px;
	color: var(--alc-ink);
	background: var(--alc-cream);
	border: 1px solid transparent;
	border-radius: 10px;
	outline: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.alc-field input:focus,
.alc-field select:focus,
.alc-field textarea:focus {
	background: var(--alc-white);
	border-color: var(--alc-coral);
	box-shadow: 0 0 0 4px rgba(59, 165, 149, 0.14);
}

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

.alc-form__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 24px;
}

.alc-form__note {
	max-width: 380px;
	margin: 0;
	color: var(--alc-muted);
	font-size: 0.72rem;
}

.alc-alert {
	padding: 14px 18px;
	margin-bottom: 24px;
	color: #245b3c;
	background: #e9f5ed;
	border: 1px solid #bcdcc6;
	border-radius: 10px;
	font-size: 0.86rem;
	font-weight: 700;
}

/* Blog */
.alc-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.alc-post-card {
	overflow: hidden;
	background: var(--alc-white);
	border: 1px solid var(--alc-line);
	border-radius: var(--alc-radius);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.alc-post-card:hover {
	box-shadow: var(--alc-shadow-sm);
	transform: translateY(-5px);
}

.alc-post-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--alc-plum-soft);
}

.alc-post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}

.alc-post-card:hover .alc-post-card__image img {
	transform: scale(1.035);
}

.alc-post-card__content {
	padding: 24px;
}

.alc-post-card__meta {
	margin-bottom: 10px;
	color: var(--alc-coral-dark);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.alc-post-card h2,
.alc-post-card h3 {
	margin-bottom: 11px;
	font-size: 1.35rem;
}

.alc-post-card h2 a,
.alc-post-card h3 a {
	color: var(--alc-plum-dark);
	text-decoration: none;
}

.alc-post-card p {
	color: var(--alc-muted);
	font-size: 0.84rem;
}

.alc-pagination {
	margin-top: 42px;
	text-align: center;
}

.nav-links {
	display: inline-flex;
	gap: 8px;
}

.page-numbers {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	color: var(--alc-plum);
	background: var(--alc-cream);
	border-radius: 50%;
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
	color: var(--alc-white);
	background: var(--alc-plum);
}

.alc-article {
	max-width: 820px;
	margin: 0 auto;
}

.alc-article__meta {
	margin-bottom: 28px;
	color: var(--alc-muted);
	font-size: 0.78rem;
	font-weight: 700;
}

.alc-article__content {
	font-size: 1.02rem;
}

.alc-article__content h2,
.alc-article__content h3 {
	margin-top: 1.6em;
}

/* Footer */
.site-footer {
	color: rgba(255, 255, 255, 0.7);
	background: #102c4f;
}

.alc-footer-main {
	display: grid;
	grid-template-columns: 1.45fr repeat(3, 0.75fr);
	padding: 80px 0 56px;
	gap: 48px;
}

.site-footer .alc-brand {
	margin-bottom: 22px;
	padding: 0;
	color: var(--alc-white);
	background: var(--alc-white);
	border-radius: 8px;
	overflow: hidden;
}

.site-footer .alc-brand:hover {
	color: var(--alc-white);
}

.site-footer .alc-brand__text small {
	color: rgba(255, 255, 255, 0.55);
}

.alc-footer-about p {
	max-width: 390px;
	font-size: 0.84rem;
}

.alc-footer-column h2 {
	margin-bottom: 20px;
	color: var(--alc-white);
	font-family: "Manrope", sans-serif;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.alc-footer-column ul {
	display: grid;
	padding: 0;
	margin: 0;
	gap: 11px;
	list-style: none;
}

.alc-footer-column a {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.82rem;
	text-decoration: none;
}

.alc-footer-column a:hover {
	color: var(--alc-white);
}

.alc-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 0 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.7rem;
}

.alc-footer-bottom p {
	margin: 0;
}

.alc-footer-bottom a {
	color: rgba(255, 255, 255, 0.76);
}

.alc-empty {
	padding: 70px 20px;
	text-align: center;
}

/* Animation */
[data-reveal] {
	opacity: 1;
	transform: none;
	transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

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

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

	[data-reveal] {
		opacity: 1;
		transform: none;
	}

	.alc-typewriter {
		padding-right: 0;
		border-right: 0;
	}

	.alc-preloader__content,
	.alc-preloader__welcome,
	.alc-preloader__flourish,
	.alc-preloader__values {
		animation: none;
	}

	.alc-preloader__welcome,
	.alc-preloader .alc-preloader__values {
		opacity: 1;
		transform: none;
	}

	.alc-preloader__line::after {
		display: none;
	}

	.alc-preloader__flourish {
		width: 170px;
	}
}

@media (max-width: 1100px) {
	.alc-menu > li > a {
		padding-inline: 9px;
		font-size: 0.78rem;
	}

	.alc-hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
	}

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

	.alc-footer-main {
		grid-template-columns: 1.4fr repeat(2, 0.8fr);
	}

	.alc-footer-column:last-child {
		grid-column: 2 / -1;
	}
}

@media (max-width: 880px) {
	.site-header {
		background: var(--alc-white);
		backdrop-filter: none;
	}

	.alc-topbar {
		display: block;
	}

	.alc-topbar__address {
		display: none;
	}

	.alc-topbar__inner {
		justify-content: center;
		gap: 14px;
		min-height: 38px;
	}

	.alc-topbar__actions {
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
		gap: 10px 16px;
	}

	.alc-header-inner {
		min-height: 72px;
		gap: 12px;
	}

	.alc-brand__logo {
		width: min(186px, 52vw);
	}

	.alc-menu-toggle {
		display: inline-flex;
		position: relative;
		z-index: 1002;
		flex: 0 0 auto;
	}

	.alc-header-inner > a {
		position: relative;
		z-index: 1002;
	}

	.alc-nav-backdrop {
		position: fixed;
		z-index: 1000;
		inset: 0;
		display: block;
		background: rgba(15, 32, 58, 0.52);
		opacity: 0;
		visibility: hidden;
		backdrop-filter: blur(6px);
		transition: opacity 240ms ease, visibility 240ms ease;
	}

	.menu-open .alc-nav-backdrop {
		opacity: 1;
		visibility: visible;
	}

	.alc-header-nav {
		position: fixed;
		z-index: 1001;
		top: 0;
		right: 0;
		bottom: 0;
		left: auto;
		display: block;
		width: min(100%, 400px);
		padding: 0;
		overflow: hidden;
		visibility: hidden;
		background: transparent;
		transform: translateX(18px);
		opacity: 0;
		transition: opacity 240ms ease, transform 280ms ease, visibility 240ms ease;
	}

	.menu-open .alc-header-nav {
		visibility: visible;
		opacity: 1;
		transform: translateX(0);
	}

	.alc-nav-panel {
		display: flex;
		flex-direction: column;
		height: 100%;
		background: var(--alc-white);
		box-shadow: -24px 0 60px rgba(15, 32, 58, 0.18);
	}

	.alc-nav-panel__head {
		display: flex;
		flex: 0 0 auto;
		align-items: center;
		justify-content: space-between;
		padding: 22px 22px 18px;
		border-bottom: 1px solid var(--alc-line);
	}

	.alc-nav-panel__head p {
		margin: 0;
		color: var(--alc-plum-dark);
		font-family: "Lora", Georgia, serif;
		font-size: 1.35rem;
		font-weight: 600;
	}

	.alc-nav-close {
		display: grid;
		width: 44px;
		height: 44px;
		place-items: center;
		padding: 0;
		color: var(--alc-plum-dark);
		background: var(--alc-plum-soft);
		border: 0;
		border-radius: 50%;
		cursor: pointer;
	}

	.alc-nav-close svg {
		width: 18px;
		height: 18px;
	}

	.alc-menu {
		display: block;
		flex: 1 1 auto;
		padding: 10px 14px 8px;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.alc-menu > li {
		border-bottom: 1px solid var(--alc-line);
	}

	.alc-menu > li > a {
		flex: 1 1 auto;
		padding: 16px 10px;
		font-size: 1.05rem;
	}

	.alc-menu .menu-item-has-children {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.alc-submenu-toggle {
		display: grid;
		width: 44px;
		height: 44px;
		flex: 0 0 auto;
		place-items: center;
		margin-right: 4px;
		padding: 0;
		color: var(--alc-plum-dark);
		background: var(--alc-plum-soft);
		border: 0;
		border-radius: 50%;
		cursor: pointer;
	}

	.alc-submenu-toggle svg {
		width: 18px;
		height: 18px;
		transition: transform 200ms ease;
	}

	.alc-submenu-toggle[aria-expanded="true"] svg {
		transform: rotate(180deg);
	}

	.alc-menu .sub-menu {
		position: static;
		display: none;
		width: 100%;
		padding: 0 8px 14px 12px;
		visibility: visible;
		opacity: 1;
		background: var(--alc-cream);
		border: 0;
		border-radius: 16px;
		box-shadow: none;
		transform: none;
	}

	.js .alc-menu .sub-menu {
		display: none;
	}

	.alc-menu .is-open > .sub-menu,
	html:not(.js) .alc-menu .sub-menu {
		display: block;
	}

	.alc-menu .sub-menu a {
		padding: 12px 12px;
		font-size: 0.95rem;
	}

	.alc-nav-panel__foot {
		display: block;
		flex: 0 0 auto;
		padding: 16px 22px calc(18px + env(safe-area-inset-bottom, 0px));
		background: linear-gradient(180deg, #f8fbff, #eef7f5);
		border-top: 1px solid var(--alc-line);
	}

	.alc-address--nav {
		display: grid;
	}

	.alc-nav-email {
		display: block;
		margin: 0 0 12px;
		color: var(--alc-plum-dark);
		font-size: 0.88rem;
		font-weight: 800;
		text-decoration: none;
	}

	.alc-nav-email:hover {
		color: var(--alc-coral-dark);
		text-decoration: underline;
	}

	.alc-nav-panel__foot .alc-button {
		width: 100%;
	}

	.alc-hero {
		padding-top: 70px;
	}

	.alc-hero__inner,
	.alc-split,
	.alc-contact-layout,
	.alc-service-detail {
		grid-template-columns: 1fr;
	}

	.alc-hero__visual {
		min-height: 600px;
	}

	.alc-split--reverse > :first-child {
		order: initial;
	}

	.alc-grid--3,
	.alc-values-grid,
	.alc-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.alc-section-heading {
		display: block;
	}

	.alc-section-heading .alc-button {
		margin-top: 24px;
	}

	.alc-cta {
		grid-template-columns: 1fr;
	}

	.alc-service-aside {
		position: static;
	}

	.alc-footer-main {
		grid-template-columns: repeat(2, 1fr);
	}

	.alc-footer-about {
		grid-column: 1 / -1;
	}

	.alc-footer-column:last-child {
		grid-column: auto;
	}
}

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

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

	.alc-brand__mark {
		width: 42px;
		height: 42px;
	}

	.alc-topbar__actions a:last-child {
		display: none;
	}

	.alc-brand__text {
		font-size: 0.92rem;
	}

	.alc-brand__text small {
		font-size: 0.53rem;
	}

	.alc-hero__content h1 {
		font-size: clamp(2.65rem, 13vw, 4.1rem);
	}

	.alc-hero__content h1 .alc-typewriter {
		min-width: 5.2em;
		white-space: nowrap;
	}

	.alc-hero__actions {
		display: grid;
	}

	.alc-hero__actions .alc-button {
		width: 100%;
	}

	.alc-trust-row {
		display: grid;
		gap: 12px;
	}

	.alc-hero__visual {
		min-height: 465px;
	}

	.alc-hero__photo {
		inset: 0 0 30px 20px;
		border-width: 6px;
		border-radius: 170px 170px 30px 30px;
	}

	.alc-hero__badge {
		max-width: 225px;
		padding: 13px 15px;
	}

	.alc-hero__heart {
		top: 18px;
		right: -4px;
		width: 58px;
		height: 58px;
	}

	.alc-service-grid,
	.alc-grid--3,
	.alc-grid--4,
	.alc-values-grid,
	.alc-post-grid,
	.alc-form-grid,
	.alc-detail-list {
		grid-template-columns: 1fr;
	}

	.alc-service-card {
		min-height: 0;
	}

	.alc-image-stack {
		min-height: 470px;
	}

	.alc-image-stack__main {
		inset: 0 30px 40px 0;
	}

	.alc-cta {
		padding: 36px 26px;
		border-radius: 24px;
	}

	.alc-form {
		padding: 24px 18px;
	}

	.alc-form__footer {
		align-items: stretch;
		flex-direction: column;
	}

	.alc-form__footer .alc-button {
		width: 100%;
	}

	.alc-footer-main {
		grid-template-columns: 1fr;
		padding-top: 60px;
	}

	.alc-footer-about,
	.alc-footer-column:last-child {
		grid-column: auto;
	}

	.alc-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}
}
