﻿/*
Theme Name: Ahtapot
Theme URI: https://www.ahtapottasarim.com.tr
Author: Ahtapot
Author URI: https://www.ahtapottasarim.com.tr
Description: Ahtapot Tasarim ozel temasi. Hazir tema degildir. Figma Make design system.
Version: 3.1.5
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: ahtapot
License: GNU General Public License v2 or later
*/
:root {
	--ink: #18181b;
	--ink-soft: #52525b;
	--ink-mid: #71717a;
	--paper: #ffffff;
	--paper-2: #ffffff;
	--muted: #f4f4f5;
	--lilac: #fce7f3;
	--line: #e4e4e7;
	--accent: #eb058b;
	--accent-2: #c4046e;
	--header: rgba(255, 255, 255, 0.95);
	--hero-h: 36rem;
	--max: 80rem;
	--font: "DM Sans", system-ui, sans-serif;
	--display: "DM Serif Display", Georgia, serif;
	--radius: 0.5rem;
	--radius-xl: 0.75rem;
	--radius-2xl: 1rem;
	--header-h: 4rem;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font);
	font-size: 1rem;
	line-height: 1.55;
}

.site-main {
	flex: 1;
	min-width: 0;
}

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

a {
	color: var(--accent);
}

a:hover {
	color: var(--accent-2);
}

.wrap {
	width: min(100% - 3rem, var(--max));
	margin-inline: auto;
	max-width: 100%;
}

.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 {
	position: absolute;
	left: 1rem;
	top: -100%;
	z-index: 200;
	padding: 0.6rem 1rem;
	background: var(--ink);
	color: #fff;
}

.skip-link:focus {
	top: 1rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	background: var(--accent);
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9375rem;
	letter-spacing: -0.01em;
	border: 2px solid transparent;
	border-radius: var(--radius);
	cursor: pointer;
	font-family: inherit;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
	background: var(--accent-2);
	color: #fff;
}

.btn--ghost {
	background: transparent;
	color: var(--accent);
	border-color: var(--accent);
}

.btn--ghost:hover {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
}

.btn--light {
	background: #fff;
	color: var(--accent);
}

.btn--ghost-light {
	background: transparent;
	color: #fff;
	border-color: var(--accent);
}

.btn--ghost-light:hover {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	min-height: var(--header-h);
	background: #fff;
	color: var(--ink);
	border-bottom: 1px solid var(--line);
}

.site-header a {
	color: inherit;
	text-decoration: none;
}

.site-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	height: var(--header-h);
	min-width: 0;
}

.site-brand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	line-height: 1;
	text-decoration: none;
	color: inherit;
	min-width: 0;
}

.site-brand__at {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: var(--radius);
	background: var(--accent);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: -0.04em;
	flex: 0 0 auto;
}

.site-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.site-brand__mark {
	font-family: var(--display);
	font-size: 0.9375rem;
	font-weight: 400;
	color: var(--ink);
}

.site-brand__sub {
	margin-top: 0.15rem;
	font-size: 0.625rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 500;
	color: #a1a1aa;
}

.custom-logo-link {
	display: block;
	flex: 0 1 auto;
	max-width: min(240px, 52vw);
	min-width: 0;
}

.custom-logo-link img,
.custom-logo {
	display: block;
	max-height: 48px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

.nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: var(--ink);
	padding: 0.5rem;
	cursor: pointer;
	flex: 0 0 auto;
}

.nav-toggle__box {
	display: flex;
	flex-direction: column;
	gap: 6px;
	width: 1.25rem;
}

.nav-toggle__line {
	display: block;
	height: 2px;
	background: currentColor;
}

.site-header__nav {
	display: none;
	min-width: 0;
}

body.nav-open .site-header__nav {
	display: flex;
	flex-direction: column;
}

.nav-primary__list,
.nav-primary .menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-primary a {
	position: relative;
	display: inline-block;
	padding: 0.25rem 0 0.35rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: #52525b;
}

.nav-primary a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: width 0.2s ease;
}

.nav-primary a:hover,
.nav-primary .current-menu-item > a,
.nav-primary a[aria-current="page"] {
	color: var(--ink);
}

.nav-primary a:hover::after,
.nav-primary .current-menu-item > a::after,
.nav-primary a[aria-current="page"]::after {
	width: 100%;
}

.site-header__tools {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
}

.site-header__tel {
	font-size: 0.875rem;
	font-weight: 500;
	color: #52525b !important;
}

.site-header__tel:hover {
	color: var(--ink) !important;
}

.lang-switch {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin: 0;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
}

.lang-switch a,
.lang-switch__link {
	color: var(--ink-soft);
	text-decoration: none;
	font-weight: 600;
	cursor: pointer;
}

.lang-switch a:hover,
.lang-switch__link:hover {
	color: var(--accent);
}

.lang-switch__current {
	font-weight: 700;
	color: var(--accent);
}

.header-cta {
	display: inline-flex;
	padding: 0.5rem 1rem;
	border-radius: var(--radius);
	background: var(--accent);
	color: #fff !important;
	font-size: 0.875rem;
	font-weight: 500;
}

.header-cta:hover {
	background: var(--accent-2);
	color: #fff !important;
}

.hero {
	position: relative;
	z-index: 1;
	isolation: isolate;
	height: var(--hero-h);
	min-height: 28rem;
	overflow: hidden;
	color: #fff;
	background: #18181b;
}

.hero__track {
	position: relative;
	height: 100%;
}

.hero__slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}

.hero__slide.is-active .hero__bg {
	animation: fadeIn 0.7s ease forwards;
}

.hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: cover;
	opacity: 0.55;
}

.hero__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(24, 24, 27, 0.95) 0%, rgba(24, 24, 27, 0.3) 60%, transparent 100%);
}

.hero .wrap,
.hero__inner {
	position: relative;
	z-index: 2;
	width: min(100% - 3rem, var(--max));
	margin-inline: auto;
	padding: 2.5rem 0 3rem;
	min-width: 0;
	box-sizing: border-box;
}

.hero__kicker {
	margin: 0 0 1rem;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.4);
}

.hero__title {
	margin: 0 0 1rem;
	max-width: 18ch;
	font-family: var(--display);
	font-size: clamp(1.75rem, 5vw, 3.25rem);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.1;
	color: #fff;
	overflow-wrap: anywhere;
}

.hero__text {
	margin: 0 0 2rem;
	max-width: 32rem;
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.7);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 0;
}

.hero__nav {
	position: absolute;
	right: 4.5rem;
	bottom: 1.5rem;
	z-index: 3;
	display: flex;
	gap: 0.5rem;
}

.hero__arrow {
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: var(--radius);
	background: rgba(24, 24, 27, 0.45);
	color: #fff;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
}

.hero__arrow:hover {
	border-color: #fff;
	background: var(--accent);
}

.hero__pips {
	position: absolute;
	top: 50%;
	right: 2rem;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	transform: translateY(-50%);
}

.hero__pip {
	width: 4px;
	height: 0.75rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #fff;
	opacity: 0.4;
	cursor: pointer;
	transition: height 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.hero__pip.is-active {
	height: 2rem;
	background: var(--accent);
	opacity: 1;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(1.03);
	}
	to {
		opacity: 0.55;
		transform: scale(1);
	}
}

@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.marquee {
	position: relative;
	z-index: 2;
	padding: 1.5rem 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: #fff;
	overflow: hidden;
}

.marquee__inner {
	overflow: hidden;
}

.marquee-track {
	display: flex;
	width: max-content;
	animation: marquee 24s linear infinite;
}

.marquee-track:hover {
	animation-play-state: paused;
}

.marquee__item {
	display: flex;
	align-items: center;
	padding: 0 2rem;
	flex-shrink: 0;
}

.marquee__item span {
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #a1a1aa;
	white-space: nowrap;
}

.trust {
	background: var(--paper-2);
	border-bottom: 1px solid var(--line);
}

.band {
	padding: 6rem 0;
}

.band--muted {
	background: var(--muted);
}

.band--lilac {
	background: var(--lilac);
}

.promise {
	background: #fff;
	padding: 4rem 0;
	border-bottom: 1px solid var(--line);
}

.promise__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
}

.promise__facts li {
	padding: 0.4rem 0.85rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--lilac);
	color: var(--accent);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.promise__flow {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.promise__flow li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--display);
	font-size: 1.15rem;
}

.promise__flow span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: var(--radius-xl);
	background: var(--accent);
	color: #fff;
	font-family: var(--display);
	font-size: 1.1rem;
	flex: 0 0 auto;
}

.trust__grid {
	display: grid;
	gap: 0;
}

.trust__card {
	padding: 1.35rem 0;
	border-bottom: 1px solid var(--line);
	min-width: 0;
}

.trust__num {
	display: block;
	margin-bottom: 0.3rem;
	color: var(--accent);
	font-weight: 700;
}

.trust__title {
	margin: 0 0 0.3rem;
	font-family: var(--display);
	font-size: 1.15rem;
}

.trust__card p {
	margin: 0;
	color: var(--ink-soft);
}

.section-kicker {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 600;
}

.section-kicker::before {
	content: "";
	width: 1rem;
	height: 2px;
	background: var(--accent);
	flex: 0 0 auto;
}

.section-head--center {
	text-align: center;
	margin-bottom: 3.5rem;
}

.section-head--center .section-kicker {
	justify-content: center;
}

.section-title {
	margin: 0 0 0.75rem;
	font-family: var(--display);
	font-size: clamp(1.75rem, 3.2vw, 2.25rem);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.2;
	color: var(--ink);
}

.section-lead {
	margin: 0 0 1.5rem;
	max-width: 40rem;
	color: var(--ink-mid);
	font-size: 1.05rem;
}

.page-hero .section-lead {
	color: rgba(255, 255, 255, 0.6);
}

.stand-index {
	padding: 6rem 0;
}

.stand-index--soft {
	background: var(--muted);
}

.stand-spot {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin: 0 0 3rem;
}

.stand-spot > article {
	min-width: 0;
	height: 100%;
}

.stand-spot__card {
	display: grid;
	height: 100%;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-2xl);
	overflow: hidden;
	min-width: 0;
	color: inherit;
	text-decoration: none;
}

.stand-spot__card:hover {
	color: inherit;
}

.stand-spot__media {
	display: block;
	aspect-ratio: 16 / 10;
	min-height: 14rem;
	overflow: hidden;
	background: #18181b;
}

.stand-spot__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.stand-spot__card:hover .stand-spot__media img {
	transform: scale(1.04);
}

.stand-spot__ph {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #27272a, #3f3f46);
}

.stand-spot__body {
	padding: 1.5rem 1.5rem 1.75rem;
}

.stand-spot__kicker {
	margin: 0 0 0.5rem;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--accent);
}

.stand-spot__title {
	margin: 0 0 0.75rem;
	font-family: var(--display);
	font-size: clamp(1.6rem, 3vw, 2.15rem);
	font-weight: 400;
	line-height: 1.15;
	color: var(--ink);
}

.stand-spot__text {
	margin: 0 0 1.15rem;
	color: var(--ink-mid);
	line-height: 1.65;
	font-size: 0.98rem;
}

.stand-spot__more {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--accent);
}

.stand-spot__card:hover .stand-spot__more {
	color: var(--accent-2);
}

.stand-index__sub {
	margin: 0 0 1.25rem;
	font-family: var(--display);
	font-size: clamp(1.35rem, 2.4vw, 1.75rem);
	font-weight: 400;
	color: var(--ink);
}

.stand-index__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

.stand-item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-2xl);
	overflow: hidden;
	min-width: 0;
}

.card-lift {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-lift:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.stand-item__link {
	display: grid;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.stand-item__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--line);
}

.stand-item__media img {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.stand-item__link:hover .stand-item__media img {
	transform: scale(1.05);
}

.stand-item__ph {
	display: block;
	width: 100%;
	height: 100%;
}

.stand-item--tone-0 .stand-item__ph { background: #f4f4f5; }
.stand-item--tone-1 .stand-item__ph { background: #fce7f3; }
.stand-item--tone-2 .stand-item__ph { background: #e4e4e7; }
.stand-item--tone-3 .stand-item__ph { background: #f4f4f5; }
.stand-item--tone-4 .stand-item__ph { background: #fce7f3; }
.stand-item--tone-5 .stand-item__ph { background: #e4e4e7; }
.stand-item--tone-6 .stand-item__ph { background: #f4f4f5; }
.stand-item--tone-7 .stand-item__ph { background: #fce7f3; }

.stand-item__body {
	display: block;
	padding: 1.25rem 1.5rem 1.5rem;
	min-width: 0;
}

.stand-item__title {
	margin: 0 0 0.4rem;
	font-family: var(--display);
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.3;
	overflow-wrap: anywhere;
}

.stand-item__excerpt {
	margin: 0 0 1rem;
	color: var(--ink-mid);
	font-size: 0.875rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.stand-item__more {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--accent);
}

.stand-item__link:hover .stand-item__more {
	color: var(--accent-2);
}

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

.service-card {
	padding: 1.5rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-2xl);
	background: #fff;
}

.service-card__icon {
	margin: 0 0 1rem;
	font-size: 1.875rem;
	color: var(--accent);
	line-height: 1;
}

.service-card__title {
	margin: 0 0 0.5rem;
	font-family: var(--display);
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.35;
}

.service-card__text {
	margin: 0;
	font-size: 0.875rem;
	color: var(--ink-mid);
	line-height: 1.6;
}

.brands-feature {
	background: #18181b;
	color: #fff;
}

.brands-feature__grid {
	display: grid;
	gap: 3rem;
	align-items: center;
}

.brands-feature__title {
	margin: 0 0 1.5rem;
	font-family: var(--display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 400;
	line-height: 1.15;
	color: #fff;
}

.brands-feature__text {
	margin: 0 0 1.5rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
}

.brands-feature__facts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}

.brands-feature__facts li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
}

.brands-feature__facts li::before {
	content: "✓";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1rem;
	height: 1rem;
	margin-top: 0.15rem;
	border-radius: 999px;
	background: var(--accent);
	color: #fff;
	font-size: 0.55rem;
	flex: 0 0 auto;
}

.brands-feature__shots {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.brands-feature__shot {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	border-radius: var(--radius-xl);
	overflow: hidden;
	background: #27272a;
	text-decoration: none;
	color: #fff;
}

.brands-feature__shot:nth-child(even) {
	margin-top: 1.5rem;
}

.brands-feature__shot img,
.brands-feature__shot-ph {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.88;
	display: block;
}

.brands-feature__shot-ph {
	background: #3f3f46;
	opacity: 1;
}

.brands-feature__shot-name {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.1rem 0.75rem 0.75rem;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.brands-feature__empty {
	padding: 2rem 1.5rem;
	border: 1px dashed rgba(255, 255, 255, 0.22);
	border-radius: var(--radius-2xl);
	background: #27272a;
	color: rgba(255, 255, 255, 0.7);
}

.brands-feature__empty p {
	margin: 0 0 1.25rem;
	line-height: 1.6;
}

.brands-feature .section-kicker {
	color: var(--accent);
}

.refs {
	padding: 5rem 0;
}

.refs__logos {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	list-style: none;
	margin: 0 0 1.6rem;
	padding: 0;
}

.refs__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 4rem;
	padding: 1rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	text-decoration: none;
	color: inherit;
}

.refs__logo img {
	max-height: 2.6rem;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

.refs__sub {
	margin: 0 0 0.7rem;
	font-size: 0.75rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--accent);
}

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

.videos__frame {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #18181b;
	border-radius: var(--radius-xl);
	overflow: hidden;
}

.videos__frame iframe,
.videos__frame video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.videos__fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #fff;
}

.videos__title {
	margin: 0.7rem 0 0;
	font-family: var(--display);
	font-size: 1.1rem;
	font-weight: 400;
}

.brands__empty {
	color: var(--ink-soft);
}

.refs__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.6rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.refs__item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 4rem;
	padding: 0.7rem;
	text-align: center;
	text-decoration: none;
	color: var(--ink);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	overflow-wrap: anywhere;
}

.mid-cta {
	padding: 0 0 4rem;
}

.mid-cta__box {
	padding: 2.5rem 1.5rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-2xl);
	text-align: center;
}

.mid-cta__title {
	margin: 0 0 0.45rem;
	font-family: var(--display);
	font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.mid-cta__text {
	margin: 0 0 1rem;
	color: var(--ink-soft);
}

.cta-band {
	padding: 6rem 0;
	background: var(--accent);
	color: #fff;
	text-align: center;
}

.cta-band__inner {
	max-width: 56rem;
}

.cta-band__title {
	margin: 0 0 1rem;
	font-family: var(--display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 400;
	color: #fff;
}

.cta-band__text {
	margin: 0 auto 2.5rem;
	max-width: 36rem;
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.8);
}

.cta-band__card {
	background: #fff;
	color: var(--ink);
	border-radius: var(--radius-2xl);
	padding: 2rem;
	max-width: 32rem;
	margin: 0 auto;
	text-align: left;
}

.cta-band__card-title {
	margin: 0 0 1rem;
	font-family: var(--display);
	font-size: 1.25rem;
	font-weight: 400;
}

.trust__icon {
	display: block;
	width: 2.4rem;
	height: 2.4rem;
	object-fit: contain;
	margin-bottom: 0.55rem;
}

.steps {
	padding: 2.2rem 0;
	background: #fff;
	border-bottom: 1px solid var(--line);
}

.steps__grid {
	display: grid;
	gap: 1rem;
}

.steps__card {
	padding: 1.1rem 0;
	border-bottom: 1px solid var(--line);
}

.steps__card:last-child {
	border-bottom: 0;
}

.steps__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 0.75rem;
	border-radius: var(--radius-xl);
	background: var(--accent);
	color: #fff;
	font-family: var(--display);
	font-size: 1.1rem;
}

.steps__title {
	margin: 0 0 0.3rem;
	font-family: var(--display);
	font-size: 1.25rem;
}

.steps__text {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.875rem;
}

.stand-index__cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem;
	margin: 2.5rem 0 0;
}

.page-hero {
	padding: 5rem 1.5rem;
	background: #18181b;
	color: #fff;
}

.page-hero h1 {
	margin: 0.5rem 0 0.75rem;
	font-family: var(--display);
	font-size: clamp(2.25rem, 5vw, 3rem);
	font-weight: 400;
	color: #fff;
}

.page-hero .section-kicker {
	margin-bottom: 0;
}

.page-hero__lead,
.page-hero__lead p {
	margin: 0;
	max-width: 40rem;
	color: rgba(255, 255, 255, 0.6);
}

.page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 1.5rem 0 0;
}

.page-hero--media .wrap {
	display: grid;
	gap: 2rem;
}

.page-hero__shot {
	border-radius: var(--radius-2xl);
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #27272a;
}

.page-hero__shot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.listing-gallery {
	padding: 0 0 0.5rem;
}

.franchise-intro {
	padding-bottom: 2rem;
}

.franchise-intro__extra {
	margin-top: 2rem;
}

.franchise-steps {
	display: grid;
	gap: 1rem;
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
}

.franchise-step {
	margin: 0;
	padding: 1.25rem 1.35rem;
	background: var(--muted);
	border-radius: var(--radius-xl);
	border: 1px solid var(--line);
}

.franchise-step__n {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	margin-bottom: 0.75rem;
	border-radius: 999px;
	background: var(--accent);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
}

.franchise-step__title {
	margin: 0 0 0.4rem;
	font-size: 1.05rem;
}

.franchise-step__text {
	margin: 0;
	color: var(--ink-mid);
	font-size: 0.9rem;
	line-height: 1.6;
}

.franchise-brands {
	padding-top: 1rem;
}

.franchise-sell {
	background: var(--muted);
}

.franchise-sell__grid {
	display: grid;
	gap: 2rem;
}

.franchise-sell__form {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-2xl);
	padding: 1.5rem;
}

.franchise-sell__form h3 {
	margin: 0 0 1rem;
	font-family: var(--display);
	font-size: 1.35rem;
	font-weight: 400;
}

.contact-grid {
	display: grid;
	gap: 2.5rem;
}

.contact-cards {
	display: grid;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.contact-card {
	padding: 1rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
}

.contact-card__label {
	margin: 0 0 0.25rem;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #a1a1aa;
}

.contact-card p {
	margin: 0;
	font-size: 0.9rem;
}

.contact-form-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-2xl);
	padding: 2rem;
}

.contact-form-card__title {
	margin: 0 0 0.35rem;
	font-family: var(--display);
	font-size: 1.5rem;
	font-weight: 400;
}

.contact-form-card__lead {
	margin: 0 0 1.5rem;
	font-size: 0.875rem;
	color: var(--ink-mid);
}

.contact-form label {
	display: block;
	margin-bottom: 0.3rem;
	font-weight: 600;
	font-size: 0.8rem;
}

.contact-form--compact label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 0.65rem 0.75rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font: inherit;
	font-size: 0.875rem;
	background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(235, 5, 139, 0.12);
}

.contact-form p {
	margin: 0 0 0.75rem;
	position: relative;
}

.contact-form__hp {
	position: absolute;
	left: -9999px;
}

.contact-form__kvkk {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.contact-form__kvkk label {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-weight: 400;
	font-size: 0.75rem;
	line-height: 1.45;
	color: var(--ink-mid);
	position: static;
	width: auto;
	height: auto;
	clip: auto;
	overflow: visible;
}

.contact-form__kvkk input[type="checkbox"] {
	width: 1rem;
	height: 1rem;
	margin-top: 0.15rem;
	flex: 0 0 auto;
	accent-color: var(--accent);
}

.contact-form--compact .contact-form__kvkk label {
	position: static;
	width: auto;
	height: auto;
	clip: auto;
	overflow: visible;
}

.form-notice {
	padding: 0.8rem 1rem;
	border-radius: var(--radius);
	margin: 0 0 1rem;
}

.form-notice__title {
	margin: 0 0 0.25rem;
	font-family: var(--display);
	font-size: 1.25rem;
}

.form-notice--ok {
	background: var(--lilac);
	color: var(--accent-2);
	text-align: center;
	padding: 2rem 1rem;
}

.form-notice--err {
	background: #fff1f0;
	color: #9b1c1c;
}

.contact-aside {
	padding: 1.2rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-2xl);
	background: var(--muted);
	height: fit-content;
}

.contact-aside__title {
	margin: 0 0 0.7rem;
	font-family: var(--display);
	font-size: 1.25rem;
}

.stand-layout {
	padding: 1rem 0 5rem;
}

.stand-layout__grid {
	display: grid;
	gap: 2.5rem;
}

.stand-aside {
	position: sticky;
	top: calc(var(--header-h) + 1.25rem);
}

.stand-aside__title {
	margin: 0 0 0.5rem;
	font-family: var(--display);
	font-size: 1.875rem;
	font-weight: 400;
	line-height: 1.2;
}

.stand-aside__text {
	margin: 0 0 1.5rem;
	color: var(--ink-mid);
}

.stand-aside__card {
	border: 1px solid var(--line);
	border-radius: var(--radius-2xl);
	background: #fff;
	padding: 1.5rem;
	margin-bottom: 1rem;
}

.stand-aside__form-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 1rem;
	font-family: var(--display);
	font-size: 1.125rem;
	font-weight: 400;
}

.stand-aside__form-title::before {
	content: "";
	width: 4px;
	height: 1.25rem;
	border-radius: 2px;
	background: var(--accent);
}

.stand-aside__call {
	padding: 1rem;
	border-radius: var(--radius-xl);
	background: var(--muted);
}

.stand-aside__call-label,
.stand-aside__hours {
	margin: 0;
	font-size: 0.75rem;
	color: var(--ink-mid);
}

.stand-aside__call a {
	font-weight: 600;
	color: var(--ink);
	text-decoration: none;
}

.stand-detail__media {
	margin: 0 0 0.75rem;
}

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

.stand-detail__stage {
	position: relative;
	margin: 0 0 0.75rem;
}

.stand-detail__slide {
	display: none;
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: var(--radius-2xl);
	overflow: hidden;
	cursor: zoom-in;
	background: var(--muted);
	text-decoration: none;
}

.stand-detail__slide.is-active {
	display: block;
}

.stand-detail__gallery-block:has(.stand-detail__radio:checked) .stand-detail__slide {
	display: none;
}

.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(1):checked) .stand-detail__slide:nth-child(1),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(2):checked) .stand-detail__slide:nth-child(2),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(3):checked) .stand-detail__slide:nth-child(3),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(4):checked) .stand-detail__slide:nth-child(4),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(5):checked) .stand-detail__slide:nth-child(5),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(6):checked) .stand-detail__slide:nth-child(6),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(7):checked) .stand-detail__slide:nth-child(7),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(8):checked) .stand-detail__slide:nth-child(8),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(9):checked) .stand-detail__slide:nth-child(9),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(10):checked) .stand-detail__slide:nth-child(10),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(11):checked) .stand-detail__slide:nth-child(11),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(12):checked) .stand-detail__slide:nth-child(12) {
	display: block;
}

.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(1):checked) .stand-detail__shot:nth-child(1),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(2):checked) .stand-detail__shot:nth-child(2),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(3):checked) .stand-detail__shot:nth-child(3),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(4):checked) .stand-detail__shot:nth-child(4),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(5):checked) .stand-detail__shot:nth-child(5),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(6):checked) .stand-detail__shot:nth-child(6),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(7):checked) .stand-detail__shot:nth-child(7),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(8):checked) .stand-detail__shot:nth-child(8),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(9):checked) .stand-detail__shot:nth-child(9),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(10):checked) .stand-detail__shot:nth-child(10),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(11):checked) .stand-detail__shot:nth-child(11),
.stand-detail__gallery-block:has(.stand-detail__radio:nth-of-type(12):checked) .stand-detail__shot:nth-child(12) {
	border-color: var(--accent);
}

.stand-detail__zoom-btn {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
	position: relative;
	border-radius: var(--radius-2xl);
	overflow: hidden;
}

.stand-detail__zoom-hint {
	position: absolute;
	right: 0.85rem;
	bottom: 0.85rem;
	padding: 0.35rem 0.65rem;
	border-radius: var(--radius);
	background: rgba(24, 24, 27, 0.72);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.stand-detail__media img,
.stand-detail__zoom-btn img,
.stand-detail__slide img {
	width: 100%;
	border-radius: var(--radius-2xl);
	aspect-ratio: 16 / 10;
	object-fit: cover;
	display: block;
	pointer-events: none;
}

.stand-detail__gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.5rem;
	margin: 0;
}

.stand-detail__gallery--empty {
	grid-template-columns: 1fr;
}

.stand-detail__ph {
	aspect-ratio: 16 / 10;
	border-radius: var(--radius);
	background: var(--muted);
	border: 1px dashed var(--line);
}

.stand-detail__ph--lg {
	grid-column: 1 / -1;
}

.stand-detail__hint {
	margin: 0.75rem 0 0;
	font-size: 0.875rem;
	color: var(--ink-mid);
}

.videos__frame--empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
	padding: 1.5rem;
}

.videos__frame--empty p {
	margin: 0;
}

.videos__frame--empty .stand-detail__hint {
	color: rgba(255, 255, 255, 0.45);
}

.stand-detail__gallery-block,
.stand-detail__videos,
.stand-drawings {
	margin: 1.8rem 0;
}

.stand-detail__gallery-block h2,
.stand-detail__videos h2,
.stand-drawings h2 {
	margin: 0 0 0.8rem;
	font-family: var(--display);
	font-size: 1.5rem;
	font-weight: 400;
}

.stand-detail__shot {
	display: block;
	width: 100%;
	appearance: none;
	-webkit-appearance: none;
	overflow: hidden;
	border-radius: var(--radius);
	border: 2px solid transparent;
	aspect-ratio: 16 / 10;
	background: var(--muted);
	padding: 0;
	cursor: pointer;
	position: relative;
	z-index: 1;
}

.stand-detail__shot.is-active {
	border-color: var(--accent);
}

.stand-drawings__lead {
	margin: -0.35rem 0 1rem;
	color: var(--ink-mid);
	font-size: 0.95rem;
	max-width: 40rem;
}

.stand-drawings__grid,
.stand-drawings__empty {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
}

.stand-drawings__item {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: var(--radius-xl);
	overflow: hidden;
	background: var(--muted);
	cursor: zoom-in;
	aspect-ratio: 4 / 3;
}

.stand-drawings__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.img-zoom {
	position: fixed;
	inset: 0;
	z-index: 80;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 2.5rem 3.5rem;
	background: rgba(24, 24, 27, 0.88);
	pointer-events: none;
}

.img-zoom.is-open {
	display: flex;
	pointer-events: auto;
}

.img-zoom[hidden] {
	display: none;
}

body.img-zoom-open {
	overflow: hidden;
}

.img-zoom__img {
	max-width: min(100%, 92vw);
	max-height: 88vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: var(--radius);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.img-zoom__close,
.img-zoom__nav {
	position: absolute;
	border: 0;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	cursor: pointer;
	line-height: 1;
}

.img-zoom__close {
	top: 1rem;
	right: 1rem;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 999px;
	font-size: 1.5rem;
}

.img-zoom__nav {
	top: 50%;
	width: 2.75rem;
	height: 2.75rem;
	margin-top: -1.35rem;
	border-radius: 999px;
	font-size: 1.75rem;
}

.img-zoom__nav--prev {
	left: 0.75rem;
}

.img-zoom__nav--next {
	right: 0.75rem;
}

.img-zoom__close:hover,
.img-zoom__nav:hover {
	background: var(--accent);
}

.stand-detail__gallery img,
.stand-detail__shot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 0;
	border: 0;
	pointer-events: none;
}

.stand-detail__back {
	margin: 0 0 1.25rem;
	font-size: 0.875rem;
	color: #a1a1aa;
}

.stand-detail__back a {
	color: #a1a1aa;
	text-decoration: none;
}

.stand-detail__back a:hover {
	color: var(--ink);
}

.prose__body h2 {
	margin: 1.6rem 0 0.55rem;
	font-family: var(--display);
	font-size: 1.5rem;
	font-weight: 400;
}

.prose__body h3 {
	margin: 1.1rem 0 0.4rem;
	font-size: 1.05rem;
}

.prose__body ul {
	margin: 0 0 1rem;
	padding-left: 1.2rem;
}

.float-wa {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 40;
	padding: 0.7rem 1rem;
	background: #25d366;
	color: #fff !important;
	text-decoration: none;
	font-weight: 700;
	border-radius: 999px;
	box-shadow: 0 8px 24px rgba(27, 36, 48, 0.18);
}

.float-wa:hover {
	color: #fff !important;
	background: #1ebe5d;
}

.site-footer {
	background: #18181b;
	color: #fff;
	padding-top: 4rem;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
}

.site-footer a:hover {
	color: #fff;
}

.site-footer .site-brand__mark {
	color: #fff;
}

.site-footer .site-brand__sub {
	color: rgba(255, 255, 255, 0.4);
}

.site-footer__grid {
	display: grid;
	gap: 2.5rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	min-width: 0;
}

.site-footer__slogan {
	margin: 1rem 0 0.5rem;
	font-size: 0.875rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.5);
}

.site-footer__legal,
.site-footer__web {
	margin: 0;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.3);
}

.site-footer__web {
	margin-top: 0.75rem;
}

.site-footer__label {
	margin: 0 0 1rem;
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
}

.site-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__links li {
	margin: 0 0 0.5rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
	overflow-wrap: anywhere;
}

.site-footer__base {
	padding: 1.5rem 0 2rem;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.3);
}

.site-footer__base-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.5rem;
}

.site-footer__base .lang-switch {
	margin: 0;
}

.about-facts {
	padding: 2.5rem 0;
	border-bottom: 1px solid var(--line);
	background: #fff;
}

.about-facts__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	text-align: center;
}

.about-facts__num {
	margin: 0 0 0.35rem;
	font-family: var(--display);
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	font-weight: 400;
	color: var(--ink);
	line-height: 1.15;
}

.about-facts__label {
	margin: 0;
	font-size: 0.875rem;
	color: var(--ink-mid);
}

.prose {
	padding: 2.5rem 0 4rem;
}

.prose h1 {
	font-family: var(--display);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 400;
	margin: 0 0 1rem;
	overflow-wrap: anywhere;
}

.stand-detail__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1.5rem;
}

@media (min-width: 768px) {
	.promise__flow {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

	.brands-feature__grid {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}

	.page-hero--media .wrap {
		grid-template-columns: 1.15fr 1fr;
		align-items: center;
	}

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

	.franchise-sell__grid {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}

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

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

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

	.contact-grid {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}

	.about-facts__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 2rem;
	}

	.stand-index__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.stand-spot {
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
	}

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

	.site-footer__grid {
		grid-template-columns: 1.3fr 1fr 1.1fr 1fr;
	}

	.steps__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.4rem;
	}

	.steps__card {
		padding: 0;
		border-bottom: 0;
	}
}

@media (min-width: 1024px) {
	.franchise-steps {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

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

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

	.stand-layout__grid {
		grid-template-columns: 3fr 2fr;
		gap: 2.5rem;
		align-items: start;
	}

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

@media (min-width: 1100px) {
	.nav-toggle {
		display: none;
	}

	.site-header__nav {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 1.5rem;
		flex: 1 1 auto;
		justify-content: flex-end;
	}

	.nav-primary__list,
	.nav-primary .menu {
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-end;
		gap: 1.5rem;
	}

	.nav-primary a {
		padding: 0.15rem 0 0.25rem;
		white-space: nowrap;
	}

	.lang-switch {
		padding-right: 0.5rem;
		border-right: 1px solid var(--line);
	}
}

@media (max-width: 1099px) {
	.site-header__tel {
		display: none;
	}

	body.nav-open .site-header__nav {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		z-index: 20;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
		background: #fff;
		padding: 1rem 1.5rem 1.25rem;
		border-bottom: 1px solid var(--line);
		box-shadow: 0 16px 30px rgba(24, 24, 27, 0.08);
	}
}

@media (max-width: 767px) {
	.wrap {
		width: min(100% - 2rem, var(--max));
	}

	.hero .wrap,
	.hero__inner {
		width: min(100% - 2rem, var(--max));
		padding-bottom: 2.5rem;
	}

	.hero__pips {
		right: 1rem;
	}

	.brands-feature__shot:nth-child(even) {
		margin-top: 0;
	}

	.brands-feature__facts {
		grid-template-columns: 1fr;
	}

	.stand-detail__gallery,
	.stand-drawings__grid,
	.stand-drawings__empty {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.img-zoom {
		padding: 3.5rem 0.75rem 1rem;
	}

	.img-zoom__nav {
		width: 2.25rem;
		height: 2.25rem;
		font-size: 1.4rem;
	}
}

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

	.marquee-track,
	.hero__slide.is-active .hero__bg {
		animation: none;
	}
}
