/* =========================================================================
   Antonio Cozzi theme — design system
   Implements the shared contract used by the bundled Elementor templates.
   ========================================================================= */

/* ---- Tokens ---------------------------------------------------------- */
:root {
	--ac-bg: #F0EDE8;
	--ac-surface: #FAFAF8;
	--ac-border: #E2DDD6;
	--ac-border-soft: #D8D4CE;
	--ac-ink: #1A1917;
	--ac-body: #4E4B47;
	--ac-text-soft: #5A5654;
	--ac-muted: #8A8782;
	--ac-faint: #A8A4A0;
	--ac-blue: #336CE0;
	--ac-blue-dark: #2558C8;
	--ac-footer-bg: #111110;
	--ac-font: 'DM Sans', system-ui, sans-serif;
}

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

html,
body {
	margin: 0;
	padding: 0;
	background: var(--ac-bg);
	font-family: var(--ac-font);
}

body {
	color: var(--ac-ink);
	line-height: 1.5;
	overflow-x: hidden;
}

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

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

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

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link {
	left: -9999rem;
	position: absolute;
	top: 0;
	z-index: 999;
	background: var(--ac-blue);
	color: #fff;
	padding: 10px 18px;
	border-radius: 0 0 5px 0;
}

.skip-link:focus {
	left: 0;
	clip: auto;
	clip-path: none;
	height: auto;
	width: auto;
}

/* ---- Buttons (shared) -------------------------------------------------- */
.ac-btn {
	display: inline-block;
	background: var(--ac-blue);
	color: #fff;
	border: none;
	padding: 10px 22px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.01em;
	cursor: pointer;
	transition: background 0.15s;
}

.ac-btn:hover,
.ac-btn:focus {
	background: var(--ac-blue-dark);
	color: #fff;
}

/* Elementor button widget wrappers. The `body` prefix outranks Elementor's
   .elementor-button.elementor-size-sm sizing rules, which load after us. */
body .ac-btn-solid .elementor-button,
body .ac-btn-solid .elementor-button:visited {
	background: var(--ac-blue) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 5px !important;
	padding: 12px 22px !important;
	font-family: var(--ac-font) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	letter-spacing: 0.01em !important;
	transition: background 0.15s !important;
}

body .ac-btn-solid .elementor-button:hover,
body .ac-btn-solid .elementor-button:focus {
	background: var(--ac-blue-dark) !important;
	color: #fff !important;
}

body .ac-btn-outline .elementor-button,
body .ac-btn-outline .elementor-button:visited {
	background: transparent !important;
	color: var(--ac-blue) !important;
	border: 1.5px solid var(--ac-blue) !important;
	border-radius: 5px !important;
	padding: 12px 22px !important;
	font-family: var(--ac-font) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	transition: background 0.15s !important;
}

body .ac-btn-outline .elementor-button:hover,
body .ac-btn-outline .elementor-button:focus {
	background: #EEF3FD !important;
	color: var(--ac-blue) !important;
}

/* ---- Layout helpers ---------------------------------------------------- */
.ac-wrap {
	max-width: 1240px;
	margin-inline: auto;
	padding-inline: 48px;
	width: 100%;
}

/* Elementor full-width containers set max-width:100% at equal specificity and
   load after theme.css — outrank them so content stays at 1240px. */
.elementor .e-con.ac-wrap {
	max-width: 1240px;
	margin-inline: auto;
	padding-inline: 48px;
	width: 100%;
}

/* Grids applied to Elementor containers: beat .e-con { display:flex } */
.elementor .ac-grid-3,
.ac-grid-3 {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.elementor .ac-grid-2,
.ac-grid-2 {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.elementor .ac-grid-hero,
.ac-grid-hero {
	display: grid !important;
	grid-template-columns: 1fr 1.15fr;
	gap: 88px;
	align-items: center;
}

.elementor .ac-grid-bio,
.ac-grid-bio {
	display: grid !important;
	grid-template-columns: 200px 1fr;
	gap: 52px;
	align-items: start;
}

.elementor .ac-grid-chisono,
.ac-grid-chisono {
	display: grid !important;
	grid-template-columns: 260px 1fr;
	gap: 64px;
	align-items: start;
}

.elementor .ac-grid-contatti,
.ac-grid-contatti {
	display: grid !important;
	grid-template-columns: 340px 1fr;
	gap: 48px;
	align-items: start;
}

/* ---- Typography helpers ------------------------------------------------ */
.ac-eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--ac-faint);
}

.ac-lead {
	font-size: 18px;
	font-weight: 300;
	line-height: 1.7;
	color: var(--ac-body);
}

.ac-kicker {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ac-faint);
}

.ac-kicker--blue {
	color: var(--ac-blue);
}

.ac-link,
.elementor a.ac-link {
	font-size: 14px;
	font-weight: 500;
	color: var(--ac-blue) !important;
	cursor: pointer;
}

.ac-link:hover,
.elementor a.ac-link:hover {
	color: var(--ac-blue-dark) !important;
}

.ac-scroll-hint {
	text-align: center;
	color: #9A9692;
	font-size: 18px;
	line-height: 1;
}

/* ---- Cards ------------------------------------------------------------- */
.ac-card {
	background: var(--ac-surface);
	border: 1px solid var(--ac-border);
	border-radius: 12px;
	padding: 36px;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s, border-color 0.2s;
}

.ac-card h3 {
	font-size: 22px;
	font-weight: 600;
	color: var(--ac-ink);
	line-height: 1.3;
	margin: 0 0 16px;
}

.ac-card p:not(.ac-kicker):not(.ac-link) {
	font-size: 15px;
	font-weight: 300;
	color: var(--ac-text-soft);
	line-height: 1.7;
	margin: 0;
}

.ac-card--hover:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
	border-color: #CCC8C1;
}

.ac-card--pad40 {
	padding: 40px;
}

.ac-card--sm h3 {
	font-size: 19px;
	margin-bottom: 14px;
}

.ac-card--sm p:not(.ac-kicker):not(.ac-link) {
	font-size: 14px;
}

/* Elementor containers carrying card classes */
.elementor .ac-card,
.elementor .ac-info-card {
	display: flex;
}

/* ---- Elementor widget-wrapper integration ------------------------------
   Utility classes sit on the widget wrapper; the inner markup (<p>) keeps
   UA margins unless reset here. Kickers are <p class="ac-kicker"> and are
   excluded from the generic .ac-card p rule on purpose. */
.ac-eyebrow p,
.ac-lead p,
.ac-cta-dark p {
	margin: 0;
}

/* Rhythm lives on the widget wrapper via Elementor's _margin setting; the
   inner <p> must stay flat or margins double up. */
.ac-card p.ac-kicker,
p.ac-kicker {
	margin: 0;
}

/* Lead paragraph max-widths (design constrains each page's intro) */
.ac-lead--w400 { max-width: 400px; }
.ac-lead--w520 { max-width: 520px; }
.ac-lead--w580 { max-width: 580px; }
.ac-lead--w600 { max-width: 600px; }

/* When no custom typography is set on a heading widget, inherit the theme
   font instead of any plugin default. */
.elementor .elementor-heading-title {
	font-family: inherit;
	line-height: inherit;
}

/* Body copy grows so trailing "Scopri →" links sit at the card bottom */
.elementor .ac-card--hover .elementor-widget-text-editor {
	flex-grow: 1;
	margin-bottom: 28px;
}

.elementor .ac-card--sm .elementor-widget-text-editor {
	margin-bottom: 24px;
}

/* ---- Widget strip ------------------------------------------------------ */
.ac-strip {
	border-top: 1px solid var(--ac-border);
	border-bottom: 1px solid var(--ac-border);
}

.ac-strip-row {
	max-width: 1240px;
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1fr 1px 1fr 1px 1fr;
}

.ac-strip-sep {
	background: var(--ac-border);
}

.ac-strip-item {
	padding: 22px 40px;
	display: flex;
	align-items: center;
	gap: 14px;
	cursor: pointer;
	transition: background 0.15s;
}

.ac-strip-item:hover {
	background: rgba(0, 0, 0, 0.015);
}

.ac-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ac-blue);
	flex-shrink: 0;
}

.ac-strip-txt strong {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--ac-ink);
	margin-bottom: 2px;
}

.ac-strip-txt em {
	display: block;
	font-style: normal;
	font-size: 12px;
	font-weight: 300;
	color: var(--ac-muted);
}

/* ---- Photo placeholders ------------------------------------------------ */
.ac-photo {
	aspect-ratio: 3 / 4;
	border-radius: 7px;
	overflow: hidden;
	position: relative;
	background: linear-gradient(160deg, #CECAC4 0%, #B0AAA4 100%);
}

.ac-photo-label {
	position: absolute;
	left: 14px;
	bottom: 14px;
	color: rgba(255, 255, 255, 0.35);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.ac-photo--hero {
	aspect-ratio: 4 / 3;
	border-radius: 6px;
	background: linear-gradient(145deg, #3E3830 0%, #1C1A17 55%, #2D2922 100%);
}

.ac-photo--hero .ac-photo-label {
	left: 20px;
	bottom: 20px;
	color: rgba(255, 255, 255, 0.2);
	font-size: 11px;
	letter-spacing: 0.12em;
}

.ac-sticky,
.elementor .ac-sticky,
.elementor-widget.ac-sticky {
	position: sticky;
	top: 84px;
}

/* ---- Group titles / chips / timeline / note ---------------------------- */
.ac-group-title {
	font-size: 17px;
	font-weight: 600;
	color: var(--ac-ink);
	padding-bottom: 14px;
	border-bottom: 1px solid var(--ac-border);
	margin: 0 0 20px;
}

.ac-group-title--lg {
	font-size: 20px;
	margin-bottom: 24px;
}

.ac-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ac-chip {
	display: inline-block;
	padding: 9px 18px;
	border: 1.5px solid var(--ac-border-soft);
	border-radius: 100px;
	font-size: 14px;
	font-weight: 400;
	color: #3A3835;
	background: var(--ac-surface);
	cursor: default;
	transition: border-color 0.15s, color 0.15s;
}

.ac-chip:hover {
	border-color: var(--ac-blue);
	color: var(--ac-blue);
}

.ac-timeline {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.ac-tl-row {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 24px;
}

.ac-tl-year {
	font-size: 12px;
	font-weight: 600;
	color: var(--ac-faint);
	padding-top: 3px;
	line-height: 1.4;
}

.ac-tl-title {
	font-size: 15px;
	font-weight: 500;
	color: var(--ac-ink);
	margin: 0 0 4px;
}

.ac-tl-sub {
	font-size: 14px;
	font-weight: 300;
	color: var(--ac-muted);
	margin: 0;
}

.ac-note {
	background: var(--ac-surface);
	border: 1px solid var(--ac-border);
	border-radius: 10px;
	padding: 22px 28px;
}

.ac-note p {
	font-size: 14px;
	font-weight: 300;
	color: var(--ac-body);
	line-height: 1.8;
	margin: 0;
}

.ac-note strong {
	font-weight: 600;
}

/* ---- Dark CTA band ----------------------------------------------------- */
.ac-cta-dark {
	background: #1A1917;
}

.ac-cta-dark h3 {
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 8px;
}

.ac-cta-dark p {
	font-size: 15px;
	font-weight: 300;
	color: var(--ac-muted);
	margin: 0;
}

/* ---- Info card (Contatti) ---------------------------------------------- */
.ac-info-card {
	background: var(--ac-surface);
	border: 1px solid var(--ac-border);
	border-radius: 12px;
	padding: 36px;
	display: flex;
	flex-direction: column;
}

.ac-info-name {
	font-size: 15px;
	font-weight: 600;
	color: var(--ac-ink);
	margin: 0 0 4px;
}

.ac-info-role {
	font-size: 12px;
	color: var(--ac-faint);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 28px;
}

.ac-info-rows {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.ac-info-row {
	display: flex;
	gap: 12px;
	align-items: baseline;
}

.ac-info-key {
	font-size: 11px;
	font-weight: 600;
	color: var(--ac-faint);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	min-width: 38px;
}

.ac-info-val {
	font-size: 14px;
	font-weight: 300;
	color: #2A2825;
}

.ac-info-note {
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid var(--ac-border);
}

.ac-info-note p {
	font-size: 12px;
	font-weight: 300;
	color: var(--ac-muted);
	line-height: 1.7;
	margin: 0;
}

/* ---- Map placeholder --------------------------------------------------- */
.ac-map {
	height: 220px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--ac-border);
	background: linear-gradient(135deg, #CECAC3 0%, #C4BFB9 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 8px;
}

.ac-map-kicker {
	font-size: 12px;
	font-weight: 600;
	color: var(--ac-muted);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.ac-map-addr {
	font-size: 14px;
	font-weight: 300;
	color: #6A6662;
}

/* ---- Contact form ------------------------------------------------------ */
.ac-hp {
	position: absolute !important;
	left: -9999px;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.ac-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.ac-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 16px;
}

.ac-field label {
	font-size: 12px;
	font-weight: 500;
	color: #6A6662;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.ac-field input,
.ac-field textarea {
	border: 1px solid var(--ac-border-soft);
	border-radius: 5px;
	padding: 12px 14px;
	font-size: 15px;
	font-weight: 300;
	background: var(--ac-surface);
	color: var(--ac-ink);
	width: 100%;
}

.ac-field textarea {
	resize: vertical;
}

.ac-field input:focus,
.ac-field textarea:focus {
	outline: 2px solid var(--ac-blue);
	outline-offset: -1px;
}

.ac-privacy {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 24px;
}

.ac-privacy input[type="checkbox"] {
	margin-top: 2px;
	accent-color: var(--ac-blue);
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.ac-privacy label {
	font-size: 13px;
	font-weight: 300;
	color: #6A6662;
	line-height: 1.6;
	cursor: pointer;
}

.ac-btn--submit {
	padding: 14px 32px;
	font-size: 15px;
}

.ac-form-error {
	background: #FDF0EE;
	border: 1px solid #E8C4BD;
	color: #A4372A;
	border-radius: 5px;
	padding: 12px 16px;
	font-size: 14px;
	margin: 0 0 16px;
}

.ac-form-success {
	background: var(--ac-surface);
	border: 1px solid var(--ac-border);
	border-radius: 12px;
	padding: 52px;
	text-align: center;
}

.ac-form-check {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--ac-blue);
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ac-form-check span {
	color: #fff;
	font-size: 22px;
	line-height: 1;
}

.ac-form-success h3 {
	font-size: 22px;
	font-weight: 600;
	color: var(--ac-ink);
	margin: 0 0 12px;
}

.ac-form-success p {
	font-size: 15px;
	font-weight: 300;
	color: var(--ac-text-soft);
	line-height: 1.7;
	margin: 0;
}

/* ---- Navbar ------------------------------------------------------------ */
.ac-nav {
	position: sticky;
	top: 0;
	z-index: 200;
	background: var(--ac-bg);
	border-bottom: 1px solid var(--ac-border);
	height: 68px;
	display: flex;
	align-items: center;
	padding: 0 48px;
	gap: 48px;
}

.ac-nav__brand {
	flex-shrink: 0;
}

.ac-nav__brand a {
	display: block;
}

.ac-nav__brand img,
.ac-nav__logo,
.ac-nav__brand .custom-logo {
	height: 38px;
	width: auto;
	display: block;
}

.ac-nav__menu {
	flex: 1;
	min-width: 0;
}

.ac-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 28px;
	align-items: center;
}

.ac-menu a {
	display: inline-block;
	font-size: 13px;
	font-weight: 400;
	color: #6A6662;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	padding-bottom: 3px;
	border-bottom: 2px solid transparent;
	white-space: nowrap;
	transition: color 0.15s, border-color 0.15s;
}

.ac-menu a:hover {
	color: var(--ac-ink);
}

.ac-menu .current-menu-item > a,
.ac-menu .current_page_item > a,
.ac-menu .current-menu-ancestor > a {
	font-weight: 600;
	color: var(--ac-ink);
	border-bottom-color: var(--ac-ink);
}

.ac-nav__cta {
	flex-shrink: 0;
	white-space: nowrap;
}

.ac-nav-toggle {
	display: none;
	background: none;
	border: none;
	padding: 8px;
	cursor: pointer;
	margin-left: auto;
}

.ac-nav-toggle__bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--ac-ink);
	margin: 5px 0;
	transition: transform 0.2s, opacity 0.2s;
}

/* ---- Footer ------------------------------------------------------------ */
.ac-footer {
	background: var(--ac-footer-bg);
	color: #DEDBD6;
	padding: 64px 48px 32px;
}

.ac-footer__inner {
	max-width: 1240px;
	margin-inline: auto;
}

.ac-footer__cols {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 52px;
}

.ac-footer__name {
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 3px;
}

.ac-footer__role {
	font-size: 11px;
	color: #6A6662;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin: 0 0 24px;
}

.ac-footer__contacts {
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin-bottom: 24px;
}

.ac-footer__contacts p {
	font-size: 13px;
	font-weight: 300;
	margin: 0;
}

.ac-footer__contacts p span {
	display: inline-block;
	color: #5A5652;
	min-width: 38px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.ac-footer__albo {
	border-left: 2px solid var(--ac-blue);
	padding-left: 14px;
}

.ac-footer__albo p {
	font-size: 12px;
	font-weight: 300;
	color: #5A5652;
	line-height: 1.8;
	margin: 0;
}

.ac-footer__title {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #4A4642;
	margin: 0 0 18px;
}

.ac-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.ac-footer__links li,
.ac-footer__links a,
.ac-footer__links span {
	font-size: 14px;
	font-weight: 300;
	color: #AEABA7;
}

.ac-footer__links a:hover {
	color: #fff;
}

.ac-footer__bottom {
	border-top: 1px solid #2A2825;
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.ac-footer__bottom p {
	font-size: 12px;
	font-weight: 300;
	color: #4A4642;
	margin: 0;
}

.ac-footer__legal {
	display: flex;
	gap: 22px;
}

.ac-footer__legal a {
	font-size: 12px;
	font-weight: 300;
	color: #4A4642;
}

.ac-footer__legal a:hover {
	color: #AEABA7;
}

/* ---- Blog / archive fallback ------------------------------------------- */
.ac-archive {
	padding-block: 64px;
}

.ac-archive__item {
	margin-bottom: 40px;
}

.ac-archive__title {
	color: var(--ac-ink);
	letter-spacing: -0.02em;
}

.ac-archive__title a:hover {
	color: var(--ac-blue);
}

/* =========================================================================
   Responsive
   ========================================================================= */

@media (max-width: 1024px) {
	.ac-wrap {
		padding-inline: 32px;
	}

	.ac-nav {
		padding: 0 32px;
		gap: 28px;
	}

	.ac-footer {
		padding: 56px 32px 28px;
	}

	.elementor .ac-grid-3,
	.ac-grid-3 {
		grid-template-columns: 1fr;
	}

	.elementor .ac-grid-hero,
	.ac-grid-hero {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.ac-footer__cols {
		grid-template-columns: 1fr 1fr;
	}

	.ac-strip-row {
		grid-template-columns: 1fr;
	}

	.ac-strip-sep {
		display: none;
	}
}

@media (max-width: 900px) {
	.elementor .ac-grid-2,
	.ac-grid-2,
	.elementor .ac-grid-bio,
	.ac-grid-bio,
	.elementor .ac-grid-chisono,
	.ac-grid-chisono,
	.elementor .ac-grid-contatti,
	.ac-grid-contatti {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.ac-sticky,
	.elementor .ac-sticky,
	.elementor-widget.ac-sticky {
		position: static;
		top: auto;
	}

	.ac-photo,
	.ac-photo--hero {
		max-width: 420px;
	}

	/* Navbar collapses */
	.ac-nav {
		gap: 16px;
		flex-wrap: wrap;
	}

	.ac-nav-toggle {
		display: block;
	}

	.ac-nav__cta {
		display: none;
	}

	.ac-nav__menu {
		display: none;
		position: absolute;
		top: 68px;
		left: 0;
		right: 0;
		background: var(--ac-bg);
		border-bottom: 1px solid var(--ac-border);
		padding: 12px 32px 20px;
	}

	.ac-nav.ac-nav-open .ac-nav__menu {
		display: block;
	}

	.ac-nav.ac-nav-open .ac-nav-toggle__bar:nth-child(2) {
		transform: translateY(7px) rotate(45deg);
	}

	.ac-nav.ac-nav-open .ac-nav-toggle__bar:nth-child(3) {
		opacity: 0;
	}

	.ac-nav.ac-nav-open .ac-nav-toggle__bar:nth-child(4) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.ac-menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}
}

@media (max-width: 640px) {
	.ac-wrap {
		padding-inline: 20px;
	}

	.ac-nav {
		padding: 0 20px;
	}

	.ac-footer {
		padding: 48px 20px 24px;
	}

	.ac-footer__cols {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.ac-form-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.ac-strip-item {
		padding: 18px 20px;
	}

	.ac-card,
	.ac-card--pad40,
	.ac-info-card {
		padding: 26px;
	}

	.ac-form-success {
		padding: 36px 24px;
	}

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