:root {
	color-scheme: light;
}

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

[hidden] {
	display: none !important;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	margin: 0;
	overflow-x: hidden;
	background: var(--background);
	color: var(--foreground);
	font-family: 'Raleway', sans-serif;
	line-height: 1.5;
}

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

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

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

button {
	cursor: pointer;
}

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

.tsy-container {
	width: min(100% - 2rem, 1200px);
	margin: 0 auto;
}

.tsy-container--narrow {
	width: min(100% - 2rem, 960px);
}

/* Menús: mismo espaciado que container mx-auto px-4 max-w-4xl (ref React) */
.tsy-container--menus {
	width: min(100% - 2rem, 56rem);
	max-width: 56rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

/* Inquire form: mismo espaciado que container + max-w-2xl + px-4 + mx-auto */
.tsy-container--form {
	width: 100%;
	max-width: 42rem; /* max-w-2xl */
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;  /* px-4 */
	padding-right: 1rem;
}

.tsy-site-shell {
	min-height: 100vh;
}

.tsy-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(2px);
	transition: background 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
}

.tsy-nav.is-scrolled {
	background: rgba(26, 26, 26, 0.95);
	backdrop-filter: blur(14px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.16);
}

.tsy-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 5rem;
}

.tsy-nav__logo {
	height: 3.5rem;
	width: auto;
}

.tsy-nav__links {
	display: none;
	align-items: center;
	gap: 2.5rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.tsy-nav__links a,
.tsy-nav__mobile a,
.tsy-footer__nav a {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

.tsy-nav__links a,
.tsy-nav__toggle,
.tsy-nav__mobile a {
	color: var(--primary-foreground);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.tsy-nav__links a:hover,
.tsy-nav__mobile a:hover,
.tsy-footer__nav a:hover,
.tsy-footer__contact a:hover {
	color: var(--accent);
}

.tsy-nav__toggle {
	display: inline-flex;
	flex-direction: column;
	gap: 0.325rem;
	background: transparent;
	border: 0;
	padding: 0;
}

.tsy-nav__toggle-line {
	width: 1.5rem;
	height: 2px;
	background: currentColor;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.tsy-nav__toggle[aria-expanded='true'] .tsy-nav__toggle-line:nth-child(2) {
	transform: translateY(7px) rotate(45deg);
}

.tsy-nav__toggle[aria-expanded='true'] .tsy-nav__toggle-line:nth-child(3) {
	opacity: 0;
}

.tsy-nav__toggle[aria-expanded='true'] .tsy-nav__toggle-line:nth-child(4) {
	transform: translateY(-7px) rotate(-45deg);
}

.tsy-nav__mobile {
	background: rgba(26, 26, 26, 0.98);
	backdrop-filter: blur(14px);
}

.tsy-nav__mobile ul {
	list-style: none;
	margin: 0;
	padding: 2rem 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.tsy-main-content {
	display: block;
}

.tsy-hero {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
}

.tsy-hero__bg,
.tsy-service-card__image,
.tsy-about__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tsy-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4));
}

.tsy-hero__content {
	position: relative;
	z-index: 2;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 8rem 1.5rem 100px;
}

.tsy-hero__title,
.tsy-section__title,
.tsy-service-card__title,
.tsy-menu-card__title,
.tsy-process__title {
	font-family: 'Playfair Display', serif;
}

.tsy-hero__title {
	margin: 0 0 2.5rem;
	color: var(--primary-foreground);
	font-size: clamp(2.75rem, 8vw, 8.75rem);
	line-height: 0.95;
	font-weight: 200;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.tsy-hero__title-emphasis {
	display: inline-block;
	font-style: italic;
	margin-left: 0.35rem;
}

.tsy-hero__bottom {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.tsy-hero__eyebrow,
.tsy-section__eyebrow,
.tsy-service-card__badge {
	display: block;
	color: var(--accent);
	font-size: 0.625rem;
	font-weight: 500;
	letter-spacing: 0.3em;
	text-transform: uppercase;
}

.tsy-hero__eyebrow {
	margin-bottom: 0.5rem;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.tsy-hero__description {
	margin: 0;
	color: rgba(250, 248, 245, 0.7);
	font-size: 0.85rem;
	letter-spacing: 0.02em;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.tsy-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 2.5rem;
	border: 1px solid var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.25em;
	font-size: 0.7rem;
	font-weight: 600;
	transition: background 0.5s ease, color 0.5s ease, border-color 0.5s ease;
	white-space: nowrap;
}

.tsy-button--ghost {
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(5px);
	color: var(--accent);
}

.tsy-button--outline {
	background: transparent;
	color: var(--accent);
}

.tsy-button--solid {
	background: var(--accent);
	color: var(--accent-foreground);
	border-color: var(--accent);
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

.tsy-button--block {
	width: 100%;
}

.tsy-button:hover {
	background: var(--accent);
	color: var(--accent-foreground);
}

.tsy-section {
	padding: 8rem 0;
}

.tsy-section--light {
	background: var(--background);
}

.tsy-section--muted {
	background: rgba(240, 238, 234, 0.5);
}

.tsy-section--dark {
	background: var(--primary);
	color: var(--primary-foreground);
}

.tsy-section--card {
	background: var(--card);
}

.tsy-section__header {
	text-align: center;
	margin-bottom: 5rem;
}

.tsy-section__eyebrow {
	margin-bottom: 1.5rem;
}

.tsy-section__eyebrow--left {
	text-align: left;
}

.tsy-section__title {
	margin: 0;
	font-size: clamp(2rem, 4.2vw, 4rem);
	line-height: 1.1;
	font-weight: 700;
}

.tsy-section__title--left {
	text-align: left;
}

.tsy-separator {
	width: 3rem;
	height: 1px;
	background: var(--accent);
	margin: 1.5rem auto 0;
}

.tsy-section__cta {
	text-align: center;
	margin-top: 3.5rem;
}

.tsy-reveal {
	opacity: 0;
	transform: translateY(2.5rem);
	transition: opacity 1s ease, transform 1s ease;
}

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

.tsy-animate-up {
	opacity: 0;
	transform: translateY(1.5rem);
	animation: tsyFadeUp 0.9s ease forwards;
}

.tsy-animate-up[data-delay='150'] {
	animation-delay: 0.15s;
}

.tsy-animate-up[data-delay='300'] {
	animation-delay: 0.3s;
}

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

.tsy-about {
	position: relative;
	max-width: 72rem;
	margin: 0 auto;
}

.tsy-about__image-wrap {
	position: relative;
	width: 100%;
	padding-top: 125%;
	overflow: hidden;
}

.tsy-about__content {
	margin-top: 2rem;
}

.tsy-about__quote {
	margin: 0 0 2rem;
	padding-left: 1.5rem;
	border-left: 2px solid var(--accent);
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.3rem, 3vw, 2rem);
	font-style: italic;
	color: rgba(26, 26, 26, 0.8);
	line-height: 1.5;
}

.tsy-about__body {
	display: grid;
	gap: 1.25rem;
	color: var(--muted-foreground);
	font-size: 0.95rem;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.tsy-services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	max-width: 72rem;
	margin: 0 auto 3rem;
}

.tsy-service-card {
	position: relative;
	min-height: 25rem;
	padding: 2.5rem;
	overflow: hidden;
	border: 1px solid rgba(250, 248, 245, 0.1);
	display: flex;
	align-items: flex-end;
	transition: border-color 0.5s ease;
}

.tsy-service-card:hover {
	border-color: rgba(197, 143, 103, 0.3);
}

.tsy-service-card__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top, var(--primary), rgba(26, 26, 26, 0.8), transparent);
}

.tsy-service-card__image {
	opacity: 0.3;
	transition: transform 0.7s ease, opacity 0.7s ease;
}

.tsy-service-card:hover .tsy-service-card__image {
	transform: scale(1.05);
	opacity: 0.4;
}

.tsy-service-card__content {
	position: relative;
	z-index: 2;
}

.tsy-service-card__badge {
	margin-bottom: 1rem;
}

.tsy-service-card__title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 3vw, 3rem);
	font-weight: 700;
}

.tsy-service-card--small .tsy-service-card__title {
	font-size: clamp(1.7rem, 2.8vw, 2.5rem);
}

.tsy-service-card__description {
	max-width: 32rem;
	margin: 0 0 1.5rem;
	color: rgba(250, 248, 245, 0.65);
	font-size: 0.92rem;
	line-height: 1.8;
}

.tsy-service-card__price-wrap {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.tsy-service-card__price {
	color: var(--accent);
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	font-weight: 700;
}

.tsy-service-card__price-suffix {
	color: rgba(250, 248, 245, 0.45);
	font-size: 0.75rem;
	letter-spacing: 0.05em;
}

.tsy-services-addons {
	max-width: 72rem;
	margin: 0 auto;
	padding-top: 2rem;
	border-top: 1px solid rgba(250, 248, 245, 0.1);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem 3rem;
	text-align: center;
}

.tsy-services-addons span {
	color: rgba(250, 248, 245, 0.45);
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

.tsy-services-addons span:hover {
	color: var(--accent);
}

.tsy-gallery {
	display: none;
	max-width: 72rem;
	margin: 0 auto;
	gap: 1rem;
}

.tsy-gallery--mobile {
	display: flex;
}

.tsy-gallery__column {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.tsy-gallery__item {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	overflow: hidden;
}

.tsy-gallery__item.is-tall {
	aspect-ratio: 4 / 5;
}

.tsy-gallery__item.is-square {
	aspect-ratio: 1 / 1;
}

.tsy-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.tsy-gallery__item:hover img {
	transform: scale(1.05);
}

.tsy-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: rgba(26, 26, 26, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.tsy-lightbox__close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: transparent;
	border: 0;
	color: rgba(250, 248, 245, 0.8);
	font-size: 2rem;
	line-height: 1;
}

.tsy-lightbox__close:hover {
	color: var(--accent);
}

.tsy-lightbox__image {
	max-width: 100%;
	max-height: 85vh;
	object-fit: contain;
}

.tsy-menu-list {
	display: grid;
	gap: 3rem;
}

/* Mismo espaciado que ref: border border-border bg-card p-8 md:p-10 */
.tsy-menu-card,
#menus .tsy-menu-card {
	border: 1px solid var(--border);
	background: var(--card);
	padding: 2rem; /* p-8 */
}

.tsy-menu-card__head {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 0.125rem;
}

.tsy-menu-card__title {
	margin: 0;
	font-size: clamp(1.35rem, 2vw, 2rem);
	font-weight: 700;
}

.tsy-menu-card__price {
	color: var(--accent);
	font-size: 0.95rem;
	font-weight: 500;
}

.tsy-menu-card__subtitle {
	min-height: 1.5rem;
	margin: 0 0 1.5rem;
	color: var(--muted-foreground);
	font-size: 0.95rem;
	font-style: italic;
}

.tsy-menu-card__subtitle--spacer {
	display: block;
}

.tsy-menu-card__item {
	display: flex;
	gap: 1rem;
	padding: 1rem 0;
	border-top: 1px solid rgba(227, 224, 221, 0.6);
}

.tsy-menu-card__item-number {
	width: 1.5rem;
	flex: 0 0 1.5rem;
	padding-top: 0.2rem;
	color: rgba(197, 143, 103, 0.65);
	font-size: 0.75rem;
	font-weight: 500;
}

.tsy-menu-card__item-name {
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: 1.05rem;
	font-weight: 600;
}

.tsy-menu-card__item-description {
	margin: 0.35rem 0 0;
	color: var(--muted-foreground);
	font-size: 0.92rem;
	line-height: 1.7;
}

.tsy-menu-note {
	margin: 3rem 0 0;
	text-align: center;
	color: var(--muted-foreground);
	font-size: 0.75rem;
	letter-spacing: 0.02em;
}

.tsy-process {
	max-width: 68rem;
	margin: 0 auto;
	position: relative;
}

.tsy-process--desktop {
	display: none;
}

.tsy-process--mobile {
	display: block;
	padding-left: 4rem;
}

.tsy-process__line {
	position: absolute;
	background: rgba(250, 248, 245, 0.1);
}

.tsy-process--mobile .tsy-process__line {
	left: 1.5rem;
	top: 0;
	bottom: 0;
	width: 1px;
}

.tsy-process--desktop .tsy-process__line {
	top: 2rem;
	left: 12.5%;
	right: 12.5%;
	height: 1px;
}

.tsy-process__step {
	position: relative;
}

.tsy-process--mobile .tsy-process__step + .tsy-process__step {
	margin-top: 3rem;
}

.tsy-process__number {
	display: block;
	color: rgba(197, 143, 103, 0.3);
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 4vw, 4rem);
	font-weight: 700;
	line-height: 1;
}

.tsy-process--mobile .tsy-process__number {
	position: absolute;
	left: -4rem;
	top: 0;
	font-size: 2rem;
}

.tsy-process__title {
	margin: 0.75rem 0;
	font-size: 1.125rem;
	font-weight: 600;
}

.tsy-process__description {
	margin: 0;
	color: rgba(250, 248, 245, 0.4);
	font-size: 0.92rem;
	line-height: 1.7;
}

.tsy-form {
	display: grid;
	gap: 2rem;
}

.tsy-form__grid {
	display: grid;
	gap: 2rem;
}

.tsy-form__field label,
.tsy-form__legend {
	display: block;
	margin-bottom: 0.75rem;
	color: var(--muted-foreground);
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.tsy-form input,
.tsy-form select,
.tsy-form textarea {
	width: 100%;
	padding: 0.85rem 0;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--border);
	border-radius: 0;
	color: var(--foreground);
	transition: border-color 0.3s ease;
}

.tsy-form input:focus,
.tsy-form select:focus,
.tsy-form textarea:focus {
	outline: 0;
	border-color: var(--accent);
}

.tsy-form input::placeholder,
.tsy-form textarea::placeholder {
	color: rgba(102, 102, 102, 0.5);
}

.tsy-select-wrap {
	position: relative;
}

.tsy-select-wrap::after {
	content: '';
	position: absolute;
	right: 0.25rem;
	top: 50%;
	width: 0.65rem;
	height: 0.65rem;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: translateY(-70%) rotate(45deg);
	pointer-events: none;
	color: var(--muted-foreground);
}

.tsy-form select {
	appearance: none;
}

.tsy-form textarea {
	resize: none;
}

.tsy-form__addons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	margin-top: 0.75rem;
}

.tsy-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 0.95rem;
	text-transform: none;
	letter-spacing: 0;
	color: var(--foreground);
	cursor: pointer;
}

.tsy-checkbox input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.tsy-checkbox__box {
	width: 1.125rem;
	height: 1.125rem;
	border: 1px solid var(--border);
	display: inline-block;
	position: relative;
}

.tsy-checkbox input:checked + .tsy-checkbox__box::after {
	content: '';
	position: absolute;
	left: 0.27rem;
	top: 0.05rem;
	width: 0.28rem;
	height: 0.6rem;
	border-right: 2px solid var(--accent);
	border-bottom: 2px solid var(--accent);
	transform: rotate(40deg);
}

.tsy-footer {
	background: var(--primary);
	color: var(--primary-foreground);
}

.tsy-footer .tsy-container {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.tsy-footer__brand {
	text-align: center;
	margin-bottom: 3rem;
}

.tsy-footer__logo {
	height: 6rem;
	width: auto;
	margin: 0 auto;
}

.tsy-footer__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem 2rem;
	margin-bottom: 3rem;
}

.tsy-footer__separator {
	width: 100%;
	height: 1px;
	background: rgba(250, 248, 245, 0.1);
	margin-bottom: 3rem;
}

.tsy-footer__contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem 2.5rem;
	margin-bottom: 3rem;
}

.tsy-footer__contact a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(250, 248, 245, 0.4);
	font-size: 0.75rem;
	letter-spacing: 0.02em;
	transition: color 0.3s ease;
}

.tsy-icon {
	display: inline-flex;
	width: 0.95rem;
	height: 0.95rem;
}

.tsy-icon svg {
	width: 100%;
	height: 100%;
}

.tsy-footer__copyright,
.tsy-footer__credit {
	margin: 0;
	text-align: center;
	color: rgba(250, 248, 245, 0.2);
	font-size: 0.625rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
}

.tsy-footer__credit {
	margin-top: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: none;
}

.tsy-footer__credit a {
	color: rgba(197, 143, 103, 0.6);
	margin-left: 0.25rem;
	transition: color 0.3s ease;
}

.tsy-footer__credit a:hover {
	color: var(--accent);
}

.tsy-toast {
	position: fixed;
	right: 1.5rem;
	bottom: 1.5rem;
	z-index: 120;
	width: min(100% - 2rem, 24rem);
	padding: 1rem 1.25rem;
	background: var(--primary);
	color: var(--primary-foreground);
	border: 1px solid rgba(250, 248, 245, 0.1);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.tsy-toast__title {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tsy-toast__message {
	margin: 0;
	color: rgba(250, 248, 245, 0.75);
	font-size: 0.9rem;
	line-height: 1.6;
}

@media (min-width: 640px) {
	.tsy-form__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tsy-menu-card__head {
		flex-direction: row;
		align-items: baseline;
		justify-content: space-between;
	}
}

@media (min-width: 768px) {
	.tsy-container {
		width: min(100% - 3rem, 1200px);
	}

	.tsy-container--menus {
		width: min(100% - 3rem, 56rem);
	}

	.tsy-nav__inner {
		height: 6rem;
	}

	.tsy-nav__logo {
		height: 5rem;
	}

	.tsy-hero__content {
		padding: 10rem 3rem 100px;
	}

	.tsy-hero__bottom {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}

	.tsy-section {
		padding: 180px 0;
	}

	#about {
		padding-top: 185px;
		padding-bottom: 185px;
	}

	.tsy-about {
		min-height: 40rem;
	}

	.tsy-about__image-wrap {
		width: 55%;
		padding-top: 68.75%;
	}

	.tsy-about__content {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 50%;
		background: var(--background);
		padding: 3rem;
		margin-top: 0;
	}

	.tsy-services-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.tsy-service-card--large {
		grid-column: span 3;
	}

	.tsy-service-card--small {
		grid-column: span 2;
	}

	.tsy-gallery {
		gap: 1.5rem;
	}

	.tsy-gallery__column {
		gap: 1.5rem;
	}

	.tsy-gallery--mobile {
		display: none;
	}

	.tsy-gallery--tablet {
		display: flex;
	}

	.tsy-menu-card,
	#menus .tsy-menu-card {
		padding: 2.5rem; /* md:p-10 */
	}
}

@media (min-width: 1024px) {
	.tsy-nav__links {
		display: flex;
	}

	.tsy-nav__toggle,
	.tsy-nav__mobile {
		display: none;
	}

	.tsy-about__content {
		padding: 4rem;
	}

	.tsy-gallery--tablet {
		display: none;
	}

	.tsy-gallery--desktop {
		display: flex;
	}

	.tsy-process--desktop {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 2rem;
	}

	.tsy-process--desktop .tsy-process__step {
		text-align: center;
	}

	.tsy-process--desktop .tsy-process__number {
		position: relative;
		z-index: 2;
		background: var(--primary);
		margin-bottom: 1.5rem;
	}

	.tsy-process--mobile {
		display: none;
	}
}

