/* header */
/* L'Aforisma — Francesco Russo */

.afo-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99995;
	width: 100%;
	box-sizing: border-box;
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--_gold-dim);
	transition: background 0.35s ease, box-shadow 0.35s ease;
}

.afo-header.is-scrolled {
	background: rgba(10, 10, 10, 0.96);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.afo-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
	padding: 0 clamp(1.25rem, 4vw, 3rem);
	max-width: 1440px;
	margin: 0 auto;
	box-sizing: border-box;
}

.afo-header__logo {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	text-decoration: none;
}

.afo-header__logo-img {
	height: 44px;
	width: auto;
	object-fit: contain;
}

.afo-header__nav {
	display: none;
}

.afo-header__menu {
	display: flex;
	gap: 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.afo-header__link {
	position: relative;
	padding: 0.25em 0;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 0.8rem;
	color: var(--_white);
	text-decoration: none;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

.afo-header__link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--_gold);
	transition: width 0.3s ease;
}

.afo-header__link:hover, .afo-header__link[aria-current="page"] {
	color: var(--_gold-light);
}

.afo-header__link:hover::after, .afo-header__link[aria-current="page"]::after {
	width: 100%;
}

.afo-header__cta {
	display: none;
	flex-shrink: 0;
	padding: 0.65em 1.8em;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 0.75rem;
	color: var(--_black);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	background: var(--_gold);
	border: 1px solid var(--_gold);
	border-radius: 2px;
	transition: background 0.3s ease, color 0.3s ease;
}

.afo-header__cta:hover {
	color: var(--_gold-light);
	background: transparent;
}

.afo-header__burger {
	z-index: 10001;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	padding: 6px;
	background: none;
	border: none;
	cursor: pointer;
}

.afo-header__burger-line {
	display: block;
	width: 100%;
	height: 1.5px;
	background: var(--_white);
	border-radius: 1px;
	transition: transform 0.35s ease, opacity 0.35s ease;
	transform-origin: center;
}

.afo-header__burger[aria-expanded="true"] .afo-header__burger-line:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}

.afo-header__burger[aria-expanded="true"] .afo-header__burger-line:nth-child(2) {
	opacity: 0;
}

.afo-header__burger[aria-expanded="true"] .afo-header__burger-line:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

@media (min-width: 768px) {
	.afo-header__nav {
		display: block;
	}

	.afo-header__cta {
		display: inline-block;
	}

	.afo-header__burger {
		display: none;
	}
}

.afo-header__logo-testo {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.5rem;
	font-style: italic;
	color: var(--_white);
	letter-spacing: .02em;
}

/* mobile-nav */
/* L'Aforisma — Francesco Russo */

.afo-header__mobile {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99990;
	display: none;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	background-color: var(--_black);
}

.afo-header__mobile.is-open {
	display: block;
}

@media (min-width: 768px) {
	.afo-header__mobile,
	.afo-header__mobile.is-open {
		display: none;
	}
}

.afo-header__mobile-inner {
	padding: 120px 24px 60px;
	box-sizing: border-box;
	text-align: center;
}

.afo-header__mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.afo-header__mobile-item {
	display: block;
	margin-bottom: 24px;
}

.afo-header__mobile-link {
	display: inline-block;
	padding: 4px 0;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 300;
	font-size: 2rem;
	color: var(--_white);
	text-decoration: none;
	letter-spacing: 0.04em;
}

.afo-header__mobile-link:hover {
	color: var(--_gold-light);
}

.afo-header__mobile-cta {
	display: inline-block;
	margin-top: 32px;
	padding: 14px 40px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 0.8rem;
	color: var(--_black);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	background-color: var(--_gold);
	border: 1px solid var(--_gold);
	border-radius: 2px;
}

.afo-header__mobile-cta:hover {
	color: var(--_gold-light);
	background-color: transparent;
}

/* cookie-banner */
/* L'Aforisma — Francesco Russo */

#afo-cookie-banner {
	
	--_grey: rgba(245, 240, 232, 0.55);
	
	--_transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: fixed;
	bottom: clamp(1rem, 3vw, 2rem);
	left: 50%;
	z-index: 99999;
	width: min(680px, calc(100vw - 2rem));
	font-family: 'Montserrat', -apple-system, sans-serif;
	font-size: clamp(0.78rem, 1.1vw, 0.85rem);
	color: var(--_white);
	background: rgba(14, 14, 14, 0.97);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid var(--_gold-dim);
	border-radius: 6px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7), 0 1px 0 var(--_gold-dim);
	transform: translateX(-50%);
	animation: afoCbSlideUp 0.4s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

@keyframes afoCbSlideUp {
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}

@keyframes afoCbSlideUpMobile {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

#afo-cookie-banner[hidden] {
	display: none;
}

#afo-cookie-banner .afo-cb__inner {
	padding: clamp(1.2rem, 2.5vw, 1.8rem);
}

#afo-cookie-banner .afo-cb__title {
	margin: 0 0 0.5em;
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(1.1rem, 1.8vw, 1.3rem);
	font-weight: 400;
	color: var(--_white);
}

#afo-cookie-banner .afo-cb__desc {
	margin: 0 0 1.2em;
	color: var(--_grey);
	line-height: 1.7;
	font-weight: 300;
}

#afo-cookie-banner .afo-cb__link {
	color: var(--_gold);
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color var(--_transition);
}

#afo-cookie-banner .afo-cb__link:hover {
	color: var(--_gold-light);
}

#afo-cookie-banner .afo-cb__prefs {
	margin-bottom: 1.2em;
	padding-top: 1em;
	border-top: 1px solid var(--_gold-dim);
}

#afo-cookie-banner .afo-cb__prefs[hidden] {
	display: none;
}

#afo-cookie-banner .afo-cb__pref-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.7em 0;
	border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

#afo-cookie-banner .afo-cb__pref-row:last-child {
	border-bottom: none;
}

#afo-cookie-banner .afo-cb__pref-info {
	display: flex;
	flex-direction: column;
	gap: 0.2em;
	flex: 1;
}

#afo-cookie-banner .afo-cb__pref-name {
	font-weight: 500;
	font-size: 0.82rem;
	color: var(--_white);
}

#afo-cookie-banner .afo-cb__pref-desc {
	font-weight: 300;
	font-size: 0.72rem;
	color: var(--_grey);
	line-height: 1.5;
}

#afo-cookie-banner .afo-cb__checkbox {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	white-space: nowrap;
	clip: rect(0, 0, 0, 0);
}

#afo-cookie-banner .afo-cb__toggle {
	display: flex;
	align-items: center;
	gap: 0.5em;
	flex-shrink: 0;
	cursor: pointer;
}

#afo-cookie-banner .afo-cb__toggle-track {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 22px;
	background: rgba(245, 240, 232, 0.15);
	border: 1px solid rgba(245, 240, 232, 0.2);
	border-radius: 999px;
	transition: background var(--_transition), border-color var(--_transition);
}

#afo-cookie-banner .afo-cb__toggle-thumb {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 14px;
	height: 14px;
	background: var(--_grey);
	border-radius: 50%;
	transition: transform var(--_transition), background var(--_transition);
}

#afo-cookie-banner .afo-cb__checkbox:checked + .afo-cb__toggle-track {
	background: var(--_gold);
	border-color: var(--_gold);
}

#afo-cookie-banner .afo-cb__checkbox:checked + .afo-cb__toggle-track .afo-cb__toggle-thumb {
	background: var(--_black);
	transform: translateX(18px);
}

#afo-cookie-banner .afo-cb__toggle--locked {
	cursor: default;
}

#afo-cookie-banner .afo-cb__toggle-label {
	font-size: 0.7rem;
	color: var(--_gold);
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

#afo-cookie-banner .afo-cb__actions {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
}

#afo-cookie-banner .afo-cb__save-wrap {
	margin-top: 0.8em;
}

#afo-cookie-banner .afo-cb__save-wrap[hidden] {
	display: none;
}

#afo-cookie-banner .afo-cb__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55em 1.2em;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
	border: none;
	border-radius: 2px;
	transition: background var(--_transition), color var(--_transition), border-color var(--_transition);
	cursor: pointer;
}

#afo-cookie-banner .afo-cb__btn:focus-visible {
	outline: 2px solid var(--_gold);
	outline-offset: 3px;
}

#afo-cookie-banner .afo-cb__btn--primary {
	color: var(--_black);
	background: var(--_gold);
}

#afo-cookie-banner .afo-cb__btn--primary:hover {
	background: var(--_gold-light);
}

#afo-cookie-banner .afo-cb__btn--secondary {
	color: var(--_grey);
	background: transparent;
	border: 1px solid rgba(245, 240, 232, 0.2);
}

#afo-cookie-banner .afo-cb__btn--secondary:hover {
	color: var(--_white);
	border-color: rgba(245, 240, 232, 0.4);
}

#afo-cookie-banner .afo-cb__btn--outline {
	color: var(--_gold);
	background: transparent;
	border: 1px solid var(--_gold-dim);
}

#afo-cookie-banner .afo-cb__btn--outline:hover {
	border-color: var(--_gold);
	background: rgba(201, 168, 76, 0.07);
}

#afo-cookie-banner .afo-cb__btn--full {
	width: 100%;
}

#afo-cookie-reopen {
	position: fixed;
	bottom: 1.2rem;
	left: 1.2rem;
	z-index: 99998;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	color: rgba(245, 240, 232, 0.5);
	background: rgba(14, 14, 14, 0.92);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(201, 168, 76, 0.25);
	border-radius: 50%;
	transition: color 0.3s, border-color 0.3s, transform 0.3s;
	cursor: pointer;
}

#afo-cookie-reopen:hover {
	color: var(--_gold);
	border-color: rgba(201, 168, 76, 0.6);
	transform: rotate(30deg);
}

#afo-cookie-reopen:focus-visible {
	outline: 2px solid var(--_gold);
	outline-offset: 3px;
}

#afo-cookie-reopen.is-hidden {
	opacity: 0;
	pointer-events: none;
}

@media (max-width: 480px) {
	#afo-cookie-banner {
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		width: 100% !important;
		max-width: 100% !important;
		border-radius: 8px 8px 0 0;
		border-left: none;
		border-right: none;
		border-bottom: none;
		transform: none !important;
		animation: afoCbSlideUpMobile 0.4s cubic-bezier(0.34, 1.2, 0.64, 1) both;
	}

	#afo-cookie-banner .afo-cb__actions {
		flex-direction: column;
	}

	#afo-cookie-banner .afo-cb__btn {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	#afo-cookie-banner {
		animation: none;
	}

	#afo-cookie-banner * {
		transition: none !important;
	}
}

/* menu */
/* L'Aforisma — Francesco Russo */

.afo-m {
	
	--_gold-glow: rgba(201, 168, 76, 0.08);
	
	--_grey-light: rgba(245, 240, 232, 0.15);
	color: var(--_white);
	background: var(--_black);
}

.afo-m__section {
	position: relative;
	padding: var(--_py) var(--_px);
	max-width: 1100px;
	margin: 0 auto;
}

.afo-m__section::after {
	content: '';
	display: block;
	width: 60px;
	height: 1px;
	margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
	background: var(--_gold-dim);
}

.afo-m__section:last-of-type::after {
	display: none;
}

.afo-m__section-header {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2vw, 1.5rem);
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.afo-m__number {
	flex-shrink: 0;
	min-width: 2ch;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 300;
	font-size: clamp(2.5rem, 5vw, 4rem);
	color: var(--_gold-dim);
	line-height: 1;
}

.afo-m__header-text {
	flex-shrink: 0;
}

.afo-m__kicker {
	display: block;
	margin-bottom: 0.3em;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: clamp(0.55rem, 0.8vw, 0.68rem);
	color: var(--_gold);
	letter-spacing: 0.25em;
	text-transform: uppercase;
}

.afo-m__title {
	margin: 0;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 300;
	font-style: italic;
	font-size: clamp(1.5rem, 3vw, 2.4rem);
	color: var(--_white);
	line-height: 1.2;
}

.afo-m__line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, var(--_gold-dim) 0%, transparent 100%);
}

.afo-m__prologo-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 4vw, 3rem);
}

.afo-m__welcome {
	position: relative;
}

.afo-m__welcome-inner {
	position: relative;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	overflow: hidden;
	border: 1px solid var(--_gold-dim);
	border-radius: 4px;
	background: var(--_gold-glow);
}

.afo-m__welcome-inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: linear-gradient(180deg, var(--_gold) 0%, transparent 80%);
}

.afo-m__welcome-label {
	margin: 0 0 clamp(0.8rem, 1.5vw, 1.2rem);
	padding-bottom: 0.5em;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 400;
	font-size: clamp(1.2rem, 1.8vw, 1.5rem);
	color: var(--_white);
	border-bottom: 1px solid var(--_gold-dim);
}

.afo-m__welcome-body {
	min-height: 180px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: clamp(0.72rem, 0.92vw, 0.82rem);
	color: var(--_grey);
	line-height: 2;
}

.afo-m__cursor {
	display: inline-block;
	width: 1.5px;
	height: 1em;
	margin-left: 2px;
	vertical-align: text-bottom;
	background: var(--_gold);
	animation: afo-blink 0.7s step-end infinite;
}

@keyframes afo-blink {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

.afo-m__welcome-sig {
	display: block;
	margin-top: 1.5em;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 400;
	font-style: italic;
	font-size: clamp(1.05rem, 1.3vw, 1.2rem);
	color: var(--_gold);
}

.afo-m__content {
	max-width: 750px;
}

.afo-m__cat {
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.afo-m__cat-title {
	position: relative;
	padding-bottom: 0.6em;
	margin: 0 0 clamp(1.2rem, 2vw, 1.8rem);
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	color: var(--_white);
	letter-spacing: 0.06em;
	border-bottom: 1px solid var(--_gold-dim);
}

.afo-m__cat-title::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 30px;
	height: 1px;
	background: var(--_gold);
}

.afo-m__item {
	margin-bottom: clamp(1rem, 2vw, 1.4rem);
	padding-left: clamp(0.8rem, 1.5vw, 1.2rem);
	border-left: 1px solid var(--_grey-light);
	transition: border-color 0.3s var(--_ease);
}

.afo-m__item:hover {
	border-left-color: var(--_gold-dim);
}

.afo-m__item-row {
	display: flex;
	align-items: baseline;
	gap: 0.5em;
}

.afo-m__item-name {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: clamp(0.78rem, 1vw, 0.88rem);
	color: var(--_white);
}

.afo-m__item-dots {
	flex: 1;
	min-width: 16px;
	margin-bottom: 0.25em;
	border-bottom: 1px dotted var(--_grey-light);
}

.afo-m__item-price {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: clamp(0.78rem, 1vw, 0.88rem);
	color: var(--_gold);
	white-space: nowrap;
}

.afo-m__item-desc {
	margin: 0.25em 0 0;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: clamp(0.68rem, 0.88vw, 0.76rem);
	color: var(--_grey);
	line-height: 1.7;
}

.afo-m__item-note {
	margin: 0.2em 0 0;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 400;
	font-style: italic;
	font-size: clamp(0.72rem, 0.9vw, 0.8rem);
	color: var(--_gold-light);
}

.afo-m__group-price {
	padding-top: clamp(0.6rem, 1vw, 0.8rem);
	margin-top: clamp(0.5rem, 1vw, 0.8rem);
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: clamp(0.68rem, 0.88vw, 0.78rem);
	color: var(--_gold);
	text-align: right;
	letter-spacing: 0.06em;
	border-top: 1px solid var(--_gold-dim);
}

.afo-m__intro-text {
	margin: 0 0 clamp(2rem, 3vw, 2.5rem);
	padding-left: clamp(0.8rem, 1.5vw, 1.2rem);
	font-family: 'Cormorant Garamond', serif;
	font-weight: 300;
	font-style: italic;
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	color: var(--_grey);
	border-left: 2px solid var(--_gold-dim);
}

.afo-m__quote {
	margin: clamp(1.5rem, 3vw, 2.5rem) 0 0;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 300;
	font-style: italic;
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	color: var(--_grey);
	text-align: center;
	letter-spacing: 0.02em;
}

.afo-m__quote-mark {
	vertical-align: -0.15em;
	margin-right: 0.1em;
	color: var(--_gold-dim);
	font-size: 1.5em;
	line-height: 0;
}

.afo-m__bev-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.5rem, 3vw, 2rem);
}

.afo-m__bev-card {
	padding: clamp(1.5rem, 2.5vw, 2rem);
	border: 1px solid var(--_gold-dim);
	border-radius: 4px;
	background: var(--_gold-glow);
	transition: border-color 0.4s var(--_ease), box-shadow 0.4s var(--_ease);
}

.afo-m__bev-card:hover {
	border-color: var(--_gold);
	box-shadow: 0 0 30px rgba(201, 168, 76, 0.08);
}

.afo-m__bev-card-title {
	margin: 0 0 clamp(0.8rem, 1.5vw, 1.2rem);
	padding-bottom: 0.5em;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
	font-size: clamp(1rem, 1.3vw, 1.15rem);
	color: var(--_white);
	border-bottom: 1px solid var(--_gold-dim);
}

.afo-m__bev-item {
	margin-bottom: 0.8em;
}

.afo-m__bev-name {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: clamp(0.72rem, 0.9vw, 0.82rem);
	color: var(--_white);
}

.afo-m__bev-desc {
	margin: 0.15em 0 0;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: clamp(0.62rem, 0.78vw, 0.7rem);
	color: var(--_grey);
	line-height: 1.5;
}

.afo-m__bev-price {
	padding-top: 0.8em;
	margin-top: 0.8em;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: clamp(0.65rem, 0.85vw, 0.75rem);
	color: var(--_gold);
	letter-spacing: 0.06em;
	border-top: 1px solid var(--_gold-dim);
}

.afo-m__footer {
	padding: clamp(2rem, 4vw, 3rem) var(--_px);
	max-width: 1100px;
	margin: 0 auto;
}

.afo-m__footer-inner {
	padding-top: clamp(1.5rem, 3vw, 2rem);
	text-align: center;
	border-top: 1px solid var(--_gold-dim);
}

.afo-m__footer-note {
	margin: 0 0 0.2em;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: clamp(0.58rem, 0.75vw, 0.68rem);
	color: var(--_grey);
	line-height: 1.8;
}

@media (min-width: 768px) {
	.afo-m__prologo-grid {
		grid-template-columns: 5fr 4fr;
		gap: clamp(2rem, 4vw, 4rem);
	}

	.afo-m__bev-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 1024px) {
	.afo-m__prologo-grid {
		grid-template-columns: 5fr 4fr;
		gap: clamp(3rem, 5vw, 5rem);
	}
}

