@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-Variable.ttf") format("truetype-variations");
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
}

:root {
	--bg: #17181d;
	--bg-deep: #101114;
	--surface: #2e2e31;
	--surface-raised: #38383b;
	--surface-card: #242428;
	--white: #f8f7f4;
	--muted: #c8c6c1;
	--muted-dark: #929095;
	--ink: #151518;
	--color-accent: #ff8a00;
	--color-accent-hover: #ff9d2e;
	--color-accent-active: #e87900;
	--color-accent-10: rgba(255, 138, 0, .1);
	--color-accent-20: rgba(255, 138, 0, .2);
	--color-accent-35: rgba(255, 138, 0, .35);
	--accent: var(--color-accent);
	--accent-dark: var(--color-accent-active);
	--color-cta: var(--color-accent);
	--color-cta-hover: var(--color-accent-hover);
	--line: rgba(255, 255, 255, .16);
	--line-accent: var(--color-accent-35);
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--header-height: 92px;
	--container: 1200px;
	--wide-container: 1480px;
	--ease: cubic-bezier(.22, 1, .36, 1);
	--footer-heading-gap: 8px;
	--footer-item-gap: 10px;
	--footer-line-height: 1.45;
}

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

html {
	scroll-behavior: smooth;
	background: var(--bg-deep);
}

body {
	margin: 0;
	overflow-x: hidden;
	background: var(--bg);
	color: var(--white);
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open { overflow: hidden; }

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

button,
a { touch-action: manipulation; }

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

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

h1,
h2,
h3,
p { margin-top: 0; }

:focus-visible {
	outline: 3px solid var(--accent);
	outline-offset: 4px;
}

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

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

.skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 200;
	padding: 12px 16px;
	border-radius: var(--radius-sm);
	background: var(--white);
	color: var(--ink);
	transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.section { padding-block: clamp(80px, 8vw, 126px); }

.section-heading {
	max-width: 840px;
	margin: 0 auto clamp(48px, 5vw, 72px);
	text-align: center;
}

.section-heading h2,
.compact-heading h2 {
	margin: 0;
	font-size: clamp(38px, 4vw, 56px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -.035em;
	text-transform: uppercase;
}

.section-heading p {
	max-width: 690px;
	margin: 18px auto 0;
	color: var(--muted);
	font-size: clamp(17px, 1.6vw, 22px);
	line-height: 1.55;
}

.compact-heading {
	margin-bottom: clamp(48px, 5vw, 72px);
	text-align: center;
}

.compact-heading--left { text-align: left; }

.eyebrow {
	margin-bottom: 14px;
	color: var(--accent);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 28px;
	padding: 14px 28px;
	border: 1px solid transparent;
	border-radius: var(--radius-sm);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform .22s cubic-bezier(.2, .7, .2, 1), background-color .22s ease, color .22s ease, border-color .22s ease;
}

.button:hover { transform: translateY(-2px); }
.button__content { display: inline-flex; align-items: center; justify-content: center; gap: 14px; }
.button--accent { border-color: transparent; background: var(--color-cta); color: #111; }
.button--accent:hover { border-color: var(--color-cta); background: #141519; color: var(--color-cta); }
.button--accent:active { background: var(--color-accent-active); transform: translateY(0); }
.button--ghost { border-color: var(--line-accent); background: rgba(12, 12, 14, .34); color: var(--white); }
.button--ghost:hover { border-color: var(--accent); color: var(--accent); }
.button--light { border-color: transparent; background: var(--white); color: var(--ink); }
.button--light:hover { border-color: var(--accent); background: #141519; color: var(--accent); }

.arrow-up-right {
	width: 14px;
	height: 14px;
	flex: 0 0 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.35;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform .2s var(--ease);
}
.has-arrow-up-right:hover .arrow-up-right,
.has-arrow-up-right:focus-visible .arrow-up-right { transform: translate(3px, -3px); }

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 40;
	width: 100%;
	min-height: var(--header-height);
	border-bottom: 1px solid transparent;
	transition: background-color .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
	border-bottom-color: var(--line);
	background: rgba(15, 15, 17, .94);
	backdrop-filter: blur(14px);
}

.site-header__inner {
	display: flex;
	width: 100%;
	min-height: var(--header-height);
	align-items: center;
	gap: clamp(20px, 2.5vw, 42px);
	padding-inline: clamp(20px, 3vw, 56px);
}

.site-brand { flex: 0 0 auto; }
.site-brand img,
.site-brand .custom-logo { width: clamp(128px, 10.5vw, 168px); height: auto; }

.site-nav { margin-left: auto; }
.site-nav__list { display: flex; align-items: center; gap: clamp(17px, 1.7vw, 30px); margin: 0; padding: 0; list-style: none; }
.site-nav__list a {
	position: relative;
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .025em;
	text-transform: uppercase;
}
.site-nav__list a::after {
	position: absolute;
	right: 0;
	bottom: 7px;
	left: 0;
	height: 1px;
	background: var(--accent);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .22s var(--ease);
}
.site-nav__list a:hover::after,
.site-nav__list a:focus-visible::after,
.site-nav__list a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-label--mobile { display: none; }

.site-header__actions { display: flex; flex: 0 0 auto; align-items: center; gap: 14px; }
.booking-marquee.booking-marquee--mobile { display: none; }

.booking-marquee {
	display: flex;
	width: 214px;
	max-width: 100%;
	min-width: 214px;
	min-height: 52px;
	align-items: center;
	overflow: hidden;
	padding: 0;
	border: 1px solid var(--white);
	border-radius: var(--radius-sm);
	background: var(--white);
	color: var(--ink);
	line-height: 1.2;
	text-transform: uppercase;
	transition: transform .22s cubic-bezier(.2, .7, .2, 1), background-color .22s ease, color .22s ease, border-color .22s ease;
}
.booking-marquee__viewport { display: block; width: 100%; min-width: 0; overflow: hidden; }
.booking-marquee__track { display: flex; width: max-content; transform: translateX(0); will-change: transform; }
.booking-marquee__group { display: flex; flex: none; }
.booking-marquee__item { flex: none; padding-right: 28px; font-size: 13px; font-weight: 600; letter-spacing: .045em; white-space: nowrap; }
.booking-marquee:hover,
.booking-marquee:focus-visible { border-color: var(--accent); background: #141519; color: var(--accent); transform: translateY(-2px); }

.language-switcher { position: relative; flex: 0 0 auto; }
.language-switcher__toggle {
	display: inline-flex;
	min-width: 64px;
	height: 44px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: rgba(12, 12, 14, .52);
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}
.language-switcher__toggle:hover,
.language-switcher.is-open .language-switcher__toggle { border-color: var(--accent); color: var(--accent); }
.language-switcher__toggle svg { width: 12px; height: 8px; fill: none; stroke: currentColor; stroke-width: 1.6; transition: transform .22s var(--ease); }
.language-switcher.is-open .language-switcher__toggle svg { transform: rotate(180deg); }
.language-switcher__menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	display: grid;
	width: max-content;
	min-width: 150px;
	max-width: calc(100vw - 32px);
	padding: 8px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: rgba(18, 18, 21, .98);
	box-shadow: 0 18px 46px rgba(0, 0, 0, .46);
}
.language-switcher__menu[hidden] { display: none; }
.language-switcher__menu a,
.language-switcher__menu .is-unavailable { display: flex; min-height: 44px; align-items: center; padding: 9px 12px; border-radius: var(--radius-sm); color: var(--muted); font-size: 13px; font-weight: 600; white-space: nowrap; transition: background-color .18s ease, color .18s ease; }
.language-switcher__menu a:hover,
.language-switcher__menu a:focus-visible { background: var(--color-accent-10); color: var(--white); }
.language-switcher__menu a.is-current { color: var(--accent); }
.language-switcher__menu .is-unavailable { color: #777670; cursor: not-allowed; }

.menu-toggle {
	position: relative;
	display: none;
	width: 46px;
	height: 46px;
	place-items: center;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: rgba(0, 0, 0, .32);
	cursor: pointer;
}
.menu-toggle > span:not(.screen-reader-text) { position: absolute; display: block; width: 21px; height: 1px; margin: 0; background: var(--white); transition: transform .4s cubic-bezier(.16, 1, .3, 1); }
.menu-toggle > span:nth-last-child(2) { transform: translateY(-4px); }
.menu-toggle > span:last-child { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] > span:nth-last-child(2) { transform: translateY(0) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:last-child { transform: translateY(0) rotate(-45deg); }

/* Hero */
.hero {
	position: relative;
	display: flex;
	min-height: 100vh;
	min-height: 100svh;
	align-items: stretch;
	overflow: hidden;
	background: var(--bg-deep);
}
.hero::after {
	position: absolute;
	z-index: 1;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(7, 8, 9, .1) 0%, rgba(7, 8, 9, .04) 30%, transparent 52%),
		linear-gradient(rgba(7, 8, 9, .3), rgba(7, 8, 9, .3));
	content: '';
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	width: min(calc(100% - clamp(40px, 8vw, 128px)), 1450px);
	min-height: 100vh;
	min-height: 100svh;
	align-items: center;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
	gap: clamp(38px, 6vw, 100px);
	margin-inline: auto;
	padding-top: calc(var(--header-height) + 26px);
	padding-bottom: clamp(24px, 4vh, 48px);
}
.hero__content { max-width: 760px; min-width: 0; }
.hero__location { margin-bottom: 20px; color: var(--accent); font-size: 14px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.hero h1 {
	max-width: 820px;
	margin-bottom: 20px;
	font-size: clamp(44px, 4.55vw, 68px);
	font-weight: 800;
	line-height: .96;
	letter-spacing: .01em;
	overflow-wrap: normal;
	white-space: normal;
	text-transform: uppercase;
}
.hero__title-line { display: block; }
html[lang^="ru"] .hero h1,
html[lang^="sr"] .hero h1 { font-size: clamp(38px, 3.6vw, 54px); letter-spacing: -.015em; }
html[lang^="ru"] .hero__title-line,
html[lang^="sr"] .hero__title-line { white-space: nowrap; }
.hero__copy { max-width: 680px; margin-bottom: 24px; color: #e0ddd7; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; }
.hero__actions { display: grid; width: min(100%, 540px); grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.hero__actions .button { width: 100%; min-width: 0; transition: transform .22s cubic-bezier(.2, .7, .2, 1), background-color .22s ease, color .22s ease, border-color .22s ease; }
.hero__booking { border-color: var(--line-accent); background: rgba(12, 12, 14, .62); color: var(--white); }
.hero__booking:hover { border-color: var(--accent); background: rgba(20, 21, 25, .9); color: var(--accent); }
.hero__note { display: flex; align-items: center; gap: 12px; margin: 18px 0 22px; color: #e3e0db; font-size: 14px; }
.hero__note svg { width: 22px; flex: 0 0 22px; fill: none; stroke: var(--accent); stroke-width: 1.8; }
.hero__note small { display: block; margin-top: 2px; color: var(--muted-dark); font-size: 12px; }
.hero__instagram {
	display: grid;
	width: min(100%, 540px);
	min-height: 82px;
	align-items: center;
	grid-template-columns: 48px 1fr 32px;
	gap: 18px;
	padding: 14px 20px;
	border: 1px solid var(--line-accent);
	border-radius: var(--radius-md);
	background: rgba(14, 14, 16, .56);
	font-size: 16px;
	line-height: 1.35;
	transition: border-color .22s ease, background-color .22s ease, transform .22s ease;
}
.hero__instagram:hover { border-color: var(--accent); background: rgba(46, 46, 49, .88); transform: translateY(-2px); }
.hero__instagram > svg:not(.arrow-up-right) { width: 44px; fill: none; stroke: var(--accent); stroke-width: 1.7; }
.hero__instagram strong { color: var(--accent); }
.hero__instagram > .arrow-up-right { width: 16px; height: 16px; justify-self: end; color: var(--color-cta); }
.hero__instagram-copy { min-width: 0; }

.hero__phone {
	position: relative;
	justify-self: end;
	height: min(74vh, 650px);
	height: min(74svh, 650px);
	min-height: 540px;
	width: auto;
	aspect-ratio: 9 / 19.5;
	padding: 7px;
	border: 1px solid rgba(255, 255, 255, .3);
	border-radius: 43px;
	background: #0b0b0c;
	box-shadow: 0 20px 48px rgba(0, 0, 0, .32), inset 0 0 0 1px rgba(255, 255, 255, .07);
	margin-right: clamp(46px, 4vw, 70px);
	transform: none;
}
.hero__phone-speaker { position: absolute; z-index: 4; top: 12px; left: 50%; width: 32%; height: 22px; border-radius: 16px; background: #020203; transform: translateX(-50%); }
.hero__phone-screen { position: relative; height: 100%; overflow: hidden; border-radius: 36px; background: #111214; }
.hero__phone-screen > img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.78) contrast(1.04) brightness(.83); }
.hero__phone-title { position: absolute; z-index: 2; top: 76px; left: 28px; color: var(--white); font-size: 16px; font-weight: 700; line-height: 1.1; text-transform: uppercase; }
.hero__phone-title i { display: block; width: 92px; height: 2px; margin-top: 14px; background: var(--accent); }
.hero__phone-nav { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 4px 6px max(4px, env(safe-area-inset-bottom)); border-top: 1px solid rgba(255, 255, 255, .15); background: rgba(12, 13, 15, .94); backdrop-filter: blur(12px); }
.hero__phone-nav button { display: grid; min-width: 0; min-height: 68px; place-items: center; align-content: center; gap: 7px; padding: 4px 2px; border: 0; background: transparent; color: rgba(255, 255, 255, .78); cursor: pointer; transition: color .2s ease, transform .2s ease; }
.hero__phone-nav button:hover,
.hero__phone-nav button:focus-visible,
.hero__phone-nav button.is-active { color: var(--accent); }
.hero__phone-nav button:hover { transform: translateY(-2px); }
.hero__phone-nav svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.hero__phone-nav small { display: block; overflow: hidden; font-size: 11px; font-weight: 500; line-height: 1.15; text-overflow: ellipsis; white-space: nowrap; }
html[lang^="ru"] .hero__phone-nav small { font-size: 10px; }
html[lang^="ru"] .hero__actions .button,
html[lang^="sr"] .hero__actions .button { padding-inline: 12px; font-size: 11px; }

/* Services and practical benefits */
.services { padding-bottom: 72px; background: var(--surface); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.service-card {
	position: relative;
	display: flex;
	min-height: 380px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 34px;
	border: 0;
	border-radius: 0;
	background: transparent;
	text-align: center;
	text-decoration: none;
	transition: color .22s ease;
}
.service-card + .service-card { border-left: 0; }
.service-card:hover { background: transparent; }
.service-card img { width: 150px; height: 150px; margin-bottom: 22px; object-fit: contain; transition: filter .22s ease, transform .22s ease; }
.service-card:hover img { filter: sepia(1) saturate(.8) brightness(1.15); transform: scale(1.04); }
.service-card h3 { margin-bottom: 10px; font-size: 24px; font-weight: 600; text-transform: uppercase; }
.service-card p { max-width: 320px; margin-bottom: 22px; color: var(--muted); font-size: 16px; }
.service-card__button { display: inline-flex; min-width: 138px; min-height: 44px; align-items: center; justify-content: center; margin-top: auto; padding: 10px 20px; border: 1px solid transparent; border-radius: var(--radius-sm); background: var(--color-cta); color: #111; font-size: 13px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; transition: transform .22s cubic-bezier(.2, .7, .2, 1), background-color .22s ease, color .22s ease, border-color .22s ease; }
.service-card:hover .service-card__button,
.service-card:focus-visible .service-card__button { border-color: var(--color-cta); background: #141519; color: var(--color-cta); transform: translateY(-2px); }
.service-card:active .service-card__button { border-color: var(--color-accent-active); background: var(--color-accent-active); transform: translateY(0); }

.trust-strip { padding: 0 0 clamp(80px, 8vw, 120px); background: var(--surface); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-strip article { min-height: 210px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255, 255, 255, .025); transition: border-color .22s ease, transform .22s ease, background-color .22s ease; }
.trust-strip article:hover { border-color: var(--accent); background: var(--color-accent-10); transform: translateY(-3px); }
.trust-strip h2 { margin-bottom: 12px; font-size: 18px; font-weight: 700; line-height: 1.25; text-transform: uppercase; }
.trust-strip p { margin-bottom: 0; color: var(--muted); font-size: 16px; }

/* Gallery */
.gallery { background: var(--bg); }
.gallery__container { width: min(calc(100% - clamp(40px, 6vw, 88px)), var(--wide-container)); }
.gallery__layout { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: clamp(28px, 4vw, 64px); }
.gallery__filters { display: flex; align-items: flex-start; flex-direction: column; gap: 5px; }
.gallery__filters button {
	position: relative;
	min-height: 44px;
	padding: 8px 14px 8px 0;
	border: 0;
	background: transparent;
	color: var(--muted-dark);
	font-size: 15px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	transition: color .2s ease, padding-left .2s ease;
}
.gallery__filters button::before { position: absolute; top: 50%; left: 0; width: 0; height: 2px; background: var(--accent); content: ""; transition: width .2s ease; }
.gallery__filters button:hover,
.gallery__filters button.is-active { padding-left: 25px; color: var(--accent); }
.gallery__filters button:hover::before,
.gallery__filters button.is-active::before { width: 16px; }
.gallery__main { min-width: 0; }
.gallery__viewport { position: relative; width: 100%; height: 590px; overflow-x: auto; overflow-y: hidden; cursor: grab; scrollbar-width: none; }
.gallery__viewport::-webkit-scrollbar { display: none; }
.gallery__viewport.is-dragging { cursor: grabbing; user-select: none; }
.gallery__track {
	display: grid;
	height: 100%;
	grid-auto-flow: column;
	grid-auto-columns: 230px;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 16px;
	width: max-content;
	min-width: 100%;
}
.gallery-card {
	position: relative;
	display: block;
	min-width: 0;
	height: 100%;
	padding: 0;
	overflow: hidden;
	border: 0;
	border-radius: var(--radius-md);
	background: var(--surface-card);
	color: var(--white);
	cursor: zoom-in;
}
.gallery-card[hidden] { display: none !important; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease), filter .35s ease; }
.gallery-card > span { position: absolute; right: 0; bottom: 0; left: 0; padding: 35px 16px 14px; background: linear-gradient(transparent, rgba(0, 0, 0, .82)); font-size: 14px; font-weight: 600; opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease; }
.gallery-card:hover img { transform: scale(1.035); filter: brightness(.86); }
.gallery-card:hover > span,
.gallery-card:focus-visible > span { opacity: 1; transform: translateY(0); }
.gallery__empty { position: absolute; z-index: 2; inset: 0; display: grid; min-height: 0; place-items: center; margin: 0; border: 1px dashed var(--line); border-radius: var(--radius-md); background: var(--bg); color: var(--muted); font-size: 17px; text-align: center; }
.gallery__empty[hidden] { display: none; }
.gallery__controls { position: relative; z-index: 3; display: grid; align-items: center; grid-template-columns: auto minmax(0, 1fr) auto; gap: 10px; margin-top: 22px; padding-right: 64px; }
.gallery__nav,
.artists__nav,
.slider-arrows button {
	position: relative;
	z-index: 2;
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	box-sizing: border-box;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: transparent;
	color: var(--white);
	cursor: pointer;
	transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}
.artists__nav,
.artists__nav:hover,
.artists__nav:focus,
.artists__nav:focus-visible,
.artists__nav:active,
.slider-arrows button,
.slider-arrows button:hover,
.slider-arrows button:focus,
.slider-arrows button:focus-visible,
.slider-arrows button:active { border-width: 1px; transform: none; }
.gallery__nav { pointer-events: auto; }
.gallery__nav:disabled { opacity: .35; cursor: default; pointer-events: none; }
.gallery__nav:hover,
.artists__nav:hover,
.slider-arrows button:hover { border-color: var(--accent); background: var(--accent); color: var(--ink); }
.case-arrow { display: block; width: 33px; height: 24px; fill: currentColor; }
.gallery__nav--next .case-arrow,
.artists__nav--next .case-arrow,
.slider-arrow--next .case-arrow,
.lightbox__nav--next .case-arrow { transform: translateX(-2px); }
.gallery__nav--prev .case-arrow,
.artists__nav--prev .case-arrow,
.slider-arrow--prev .case-arrow,
.lightbox__nav--prev .case-arrow { transform: translateX(2px) scaleX(-1); }
.gallery__progress { --gallery-progress: 0%; display: flex; height: 44px; align-items: center; padding-inline: 22px; cursor: pointer; touch-action: none; }
.gallery__progress-rail { position: relative; width: 100%; height: 4px; border-radius: 4px; background: #48484d; }
.gallery__progress-fill { position: absolute; top: 0; bottom: 0; left: 0; width: var(--gallery-progress); border-radius: inherit; background: var(--accent); pointer-events: none; }
.gallery__progress-thumb { position: absolute; z-index: 1; top: 50%; left: var(--gallery-progress); width: 44px; height: 44px; padding: 0; border: 0; border-radius: 50%; background: transparent; cursor: grab; transform: translate(-50%, -50%); }
.gallery__progress-thumb::after { position: absolute; top: 50%; left: 50%; width: 14px; height: 14px; border: 2px solid #141519; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 1px var(--accent); content: ""; transform: translate(-50%, -50%); }
.gallery__progress-thumb:active { cursor: grabbing; }
.gallery__progress-thumb:disabled { cursor: default; }
.gallery__progress.is-disabled { opacity: .48; cursor: default; }

/* Lightbox */
.lightbox[hidden] { display: none; }
.lightbox { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 24px; background: rgba(0, 0, 0, .72); backdrop-filter: blur(8px); }
.lightbox__dialog { position: relative; display: grid; width: min(860px, calc(100vw - 96px)); max-width: none; height: min(800px, calc(100dvh - 48px)); place-items: center; grid-template-columns: 50px minmax(0, 1fr) 50px; gap: 20px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #111215; box-shadow: 0 30px 100px rgba(0, 0, 0, .6); }
.lightbox figure { display: grid; width: 100%; min-width: 0; max-width: 100%; height: min(calc(68vh + 52px), 732px); grid-template-rows: minmax(0, 1fr) 52px; margin: 0; }
.lightbox__media { display: flex; min-width: 0; min-height: 0; align-items: center; justify-content: center; }
.lightbox figure img,
.lightbox figure video { width: auto; height: auto; max-width: 100%; max-height: 100%; border-radius: var(--radius-md); object-fit: contain; opacity: 1; filter: none; }
.lightbox figcaption { display: flex; min-height: 52px; align-items: center; justify-content: center; gap: 12px; padding-top: 12px; color: var(--muted); font-size: 14px; text-align: center; }
.lightbox figcaption small { color: var(--accent); font-size: 12px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.lightbox__close,
.lightbox__nav { display: grid; width: 50px; height: 50px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(0, 0, 0, .5); color: var(--white); font-size: 26px; cursor: pointer; }
.lightbox__close svg { display: block; width: 18px; height: 18px; }
.lightbox__nav .case-arrow { width: 29px; height: auto; }
.lightbox__close:hover,
.lightbox__close:focus-visible,
.lightbox__nav:hover,
.lightbox__nav:focus-visible { border-color: var(--accent); background: var(--accent); color: #111; }
.lightbox__close:hover svg g,
.lightbox__close:focus-visible svg g { fill: #111; }
.lightbox__close { position: absolute; z-index: 2; top: 18px; right: 18px; }
.lightbox__nav:disabled { visibility: hidden; }

/* Why us */
.advantages { background: var(--surface); }
.advantages__visual-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.advantage-card { position: relative; height: 420px; overflow: hidden; border-radius: var(--radius-md); background: var(--bg-deep); }
.advantage-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8, 8, 10, .9), rgba(8, 8, 10, .08) 75%); content: ""; }
.advantage-card > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) brightness(.8); transition: transform .35s var(--ease); }
.advantage-card--fine-lines > img { object-position: center 46%; }
.advantage-card:hover > img { transform: scale(1.035); }
.advantage-card > div { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 30px; }
.advantage-card h3 { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(255, 255, 255, .78); font-size: 22px; text-transform: uppercase; }
.advantage-card p { max-width: 560px; margin-bottom: 0; font-size: 16px; line-height: 1.55; text-transform: uppercase; }
.advantages__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; margin-top: 90px; }
.advantages__stats > div { display: flex; flex-direction: column; padding-bottom: 16px; border-bottom: 3px solid var(--white); }
.advantages__stats strong { font-size: 22px; line-height: 1.15; }
.advantages__stats span { margin-top: 4px; font-size: 18px; font-weight: 600; line-height: 1.2; }

/* Artists */
.artists { background: var(--bg); }
.artists__carousel-shell { position: relative; min-width: 0; }
.artists__viewport { min-width: 0; }
.artists__grid { --artists-gap: clamp(24px, 3vw, 40px); display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--artists-gap); }
.artist-card { min-width: 0; }
.artist-card__image { aspect-ratio: 1 / 1.02; margin-bottom: 24px; overflow: hidden; border-radius: var(--radius-md); background: var(--surface-card); }
.artist-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.artist-card:hover .artist-card__image img { transform: scale(1.025); }
.artist-card h3 { margin-bottom: 2px; font-size: 24px; line-height: 1.25; }
.artist-card > span { position: relative; display: block; padding-bottom: 22px; color: var(--white); font-size: 15px; }
.artist-card > span::after { position: absolute; bottom: 0; left: 0; width: 33%; height: 2px; background: var(--white); content: ""; }
.artist-card__location { display: block; margin-top: 9px; color: var(--accent); font-size: 12px; font-weight: 650; letter-spacing: .08em; line-height: 1.4; text-transform: uppercase; }
.artist-card__bio { display: grid; gap: 8px; margin: 24px 0 0; color: #e3e1dc; font-size: 16px; line-height: 1.5; }
.artist-card__bio p { margin: 0; }
.artist-card > a { display: inline-flex; min-height: 44px; align-items: center; margin-top: 18px; color: var(--accent); font-size: 14px; font-weight: 700; }
.artist-card > a .external-link-icon { margin-left: 8px; }
.artists__controls { display: none; }
.artists__viewport.is-carousel-resetting,
.reviews__viewport.is-carousel-resetting { scroll-behavior: auto !important; scroll-snap-type: none !important; }
.is-carousel-clone { opacity: 1; transform: none; }

@media (min-width: 1101px) {
	.artists.has-desktop-carousel .artists__viewport { overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
	.artists.has-desktop-carousel .artists__viewport::-webkit-scrollbar { display: none; }
	.artists.has-desktop-carousel .artists__grid { width: 100%; grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: calc((100% - var(--artists-gap) - var(--artists-gap)) / 3); }
	.artists.has-desktop-carousel .artist-card { scroll-snap-align: start; scroll-snap-stop: always; }
	.artists.has-desktop-carousel .artists__controls { position: absolute; z-index: 4; top: var(--artists-control-y, 180px); right: -12px; left: -12px; display: flex; justify-content: space-between; gap: 8px; margin-top: 0; transform: translateY(-50%); pointer-events: none; }
	.artists.has-desktop-carousel .artists__controls .artists__nav { border-color: rgba(255, 255, 255, .38); background: rgba(14, 15, 18, .78); color: var(--white); backdrop-filter: blur(7px); pointer-events: auto; }
	.artists.has-desktop-carousel .artists__controls .artists__nav:hover,
	.artists.has-desktop-carousel .artists__controls .artists__nav:focus-visible { border-color: var(--accent); background: #141519; color: var(--accent); }
}

/* Reviews */
.reviews { background: var(--surface); }
.reviews__panel { padding: 0; border: 0; border-radius: 0; background: transparent; }
.reviews__summary { display: flex; min-height: 88px; align-items: center; justify-content: space-between; gap: 24px; padding: 0 0 24px; }
.reviews__summary p { display: inline-flex; flex-wrap: wrap; align-items: center; margin-bottom: 4px; font-size: 17px; font-weight: 700; text-transform: uppercase; }
.google-wordmark { display: inline-flex; align-items: center; margin-left: 4px; font-size: 28px; font-weight: 600; letter-spacing: -.07em; line-height: 1; text-transform: none; vertical-align: middle; transform: translateY(-1px); }
.google-wordmark i { font-style: normal; }
.google-wordmark i:nth-child(1), .google-wordmark i:nth-child(4) { color: #4285f4; }
.google-wordmark i:nth-child(2), .google-wordmark i:nth-child(6) { color: #ea4335; }
.google-wordmark i:nth-child(3) { color: #fbbc05; }
.google-wordmark i:nth-child(5) { color: #34a853; }
.reviews__rating { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }
.reviews__rating > span { color: #ff8a00; font-size: 20px; letter-spacing: 2px; }
.reviews__rating strong { font-size: 16px; }
.reviews__rating small { color: var(--muted); font-size: 14px; }
.reviews__summary > a { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: 12px; padding: 11px 19px; border: 1px solid transparent; border-radius: var(--radius-sm); background: var(--color-cta); color: #111; font-size: 12px; font-weight: 750; text-transform: uppercase; transition: transform .22s cubic-bezier(.2, .7, .2, 1), background-color .22s ease, color .22s ease, border-color .22s ease; }
.reviews__summary > a:hover { border-color: var(--color-cta); background: #141519; color: var(--color-cta); transform: translateY(-2px); }
.reviews__summary > a:active { border-color: var(--color-accent-active); background: var(--color-accent-active); transform: translateY(0); }
.reviews__carousel-shell { position: relative; min-width: 0; }
.reviews__viewport { overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; }
.reviews__viewport::-webkit-scrollbar { display: none; }
.reviews__track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 32px) / 3); gap: 16px; }
.review-card { display: flex; min-height: 260px; flex-direction: column; padding: 24px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 12px; background: rgba(255, 255, 255, .035); scroll-snap-align: start; }
.review-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.review-card h3 { margin: 0; font-size: 17px; }
.review-card__stars { flex: 0 0 auto; color: var(--color-accent); font-size: 17px; letter-spacing: 1px; }
.review-card__text { margin: 20px 0; color: #eceae6; font-size: 15px; line-height: 1.62; }
.review-card__text p { margin-bottom: 0; }
.review-card__meta { display: flex; justify-content: space-between; gap: 12px; margin-top: auto; color: #aaa8a3; font-size: 13px; }
.review-card__meta a { color: inherit; text-decoration: underline; text-decoration-color: rgba(255, 138, 0, .45); text-underline-offset: 3px; }
.review-card__meta a:hover { color: var(--accent); }
.reviews__empty { padding: 40px; border-radius: var(--radius-md); background: var(--surface-raised); color: var(--muted); font-size: 16px; }
.reviews .slider-arrows { display: flex; justify-content: flex-end; gap: 7px; margin-top: 14px; }
.reviews .slider-arrows button { width: 46px; height: 46px; border-color: rgba(255, 255, 255, .2); border-radius: 50%; }
.reviews .slider-arrows .case-arrow { width: 27px; height: auto; }

/* FAQ */
.faq { background: var(--bg); }
.faq__rows { display: flex; flex-direction: column; }
.faq-row { display: grid; min-width: 0; align-items: stretch; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 40px; transition: height .36s var(--ease); }
.faq-row.is-height-animating { overflow: hidden; }
.faq-is-measuring .faq-row,
.faq-is-measuring .faq-item__answer-wrap,
.faq-is-measuring .faq-item__answer { transition: none !important; }
.faq-item { min-width: 0; border-bottom: 1px solid var(--line-accent); }
.faq-row:first-child .faq-item { border-top: 1px solid var(--line-accent); }
.faq-item__summary { display: grid; width: 100%; min-height: 112px; align-items: center; grid-template-columns: 1fr 46px; gap: 18px; padding: 22px 0; border: 0; background: transparent; color: var(--white); text-align: left; cursor: pointer; }
.faq-item__question { font-size: clamp(18px, 1.7vw, 24px); font-weight: 700; line-height: 1.35; }
.faq-item__summary i { position: relative; display: block; width: 44px; height: 44px; border-radius: 50%; transition: background-color .2s ease, transform .34s var(--ease); }
.faq-item__summary i::before,
.faq-item__summary i::after { position: absolute; top: 50%; left: 50%; width: 18px; height: 2px; background: var(--accent); content: ""; transform: translate(-50%, -50%); }
.faq-item__summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item__summary:hover i { background: var(--color-accent-10); }
.faq-item.is-open .faq-item__summary i { transform: rotate(45deg); }
.faq-item__answer-wrap { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .34s var(--ease), opacity .24s ease; }
.faq-item.is-open .faq-item__answer-wrap { grid-template-rows: 1fr; opacity: 1; }
.faq-item__answer { max-width: 640px; min-height: 0; padding: 0 54px 0 0; overflow: hidden; color: #e1dfda; font-size: 17px; line-height: 1.65; transition: padding-bottom .34s var(--ease); }
.faq-item.is-open .faq-item__answer { padding-bottom: 30px; }
.faq-item__answer p { margin-bottom: 0; }

/* Gift certificate */
.certificate { background: var(--surface); }
.certificate__heading { max-width: 1060px; margin: 0 auto 56px; text-align: center; }
.certificate__heading h2 { margin-bottom: 42px; font-size: clamp(34px, 4vw, 54px); font-weight: 500; line-height: 1.25; letter-spacing: -.025em; text-transform: uppercase; }
.certificate__heading .button { min-width: 310px; }
.certificate__layout { display: grid; align-items: center; grid-template-columns: .9fr 1.1fr; gap: clamp(44px, 7vw, 100px); }
.certificate__copy { display: grid; gap: 44px; }
.certificate__copy p { margin: 0; font-size: clamp(18px, 1.6vw, 23px); line-height: 1.55; }
.certificate__visual { margin: 0; overflow: hidden; border-radius: var(--radius-md); }
.certificate__visual img { width: 100%; aspect-ratio: 1.5 / 1; object-fit: cover; }

/* Contacts */
.contact { display: grid; height: max(700px, calc(100vh - var(--header-height) - 70px)); height: max(700px, calc(100svh - var(--header-height) - 70px)); min-height: 0; grid-template-columns: 1fr 1fr; background: var(--bg); }
.contact__map { position: relative; height: 100%; min-height: 0; overflow: hidden; }
.contact__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.contact__map-placeholder { position: relative; display: grid; height: 100%; min-height: inherit; place-items: center; padding: 40px; background: radial-gradient(circle at 50% 45%, rgba(255,138,0,.1), transparent 34%), #121317; text-align: center; }
.contact__map-placeholder-copy { display: grid; max-width: 520px; justify-items: center; gap: 18px; }
.contact__map-placeholder h3 { margin: 0; font-size: clamp(24px, 3vw, 40px); }
.contact__map-placeholder p { max-width: 48ch; margin: 0; color: var(--muted); line-height: 1.6; }
.contact__map-placeholder .button { min-width: min(300px, 100%); }
.contact__map-placeholder.is-loaded .contact__map-placeholder-copy { display: none; }
.contact__shade { position: absolute; inset: 0; background: rgba(11, 18, 24, .42); pointer-events: none; }
.contact__map-link { position: absolute; z-index: 2; bottom: 22px; left: 22px; display: inline-flex; min-height: 48px; align-items: center; gap: 10px; padding: 11px 16px; border: 1px solid rgba(255, 255, 255, .32); border-radius: var(--radius-sm); background: rgba(0, 0, 0, .7); color: #fff; font-size: 14px; font-weight: 700; }
.contact__map-link:hover { border-color: var(--accent); color: var(--accent); }
.contact__card { display: flex; height: 100%; min-height: 0; justify-content: center; flex-direction: column; padding: clamp(38px, 4vw, 64px) clamp(48px, 7vw, 112px); background: var(--bg); }
.contact__card > h2 { margin-bottom: 30px; font-size: clamp(26px, 2.4vw, 36px); text-transform: uppercase; }
.contact__links { display: grid; gap: 5px; margin-bottom: 42px; }
.contact__links a { width: fit-content; font-size: clamp(21px, 2vw, 28px); }
.contact__links a:hover,
.contact__address:hover,
.contact__cities a:hover { color: var(--accent); }
.contact__card h3 { margin: 0 0 10px; font-size: clamp(20px, 1.8vw, 27px); }
.contact__address { width: fit-content; margin-bottom: 42px; font-size: clamp(19px, 1.7vw, 25px); }
.contact__cities { display: grid; gap: 26px; }
.contact__cities a { width: fit-content; font-size: clamp(18px, 1.6vw, 24px); line-height: 1.55; }
.location-link { display: flex; align-items: flex-start; flex-direction: column; }
.location-link__primary { display: inline-flex; align-items: baseline; gap: 10px; }
.location-link__primary .arrow-up-right { position: relative; top: -1px; align-self: baseline; }
.location-link__note { display: block; font-size: .85em; }

/* Footer */
.site-footer { padding: 70px 0 26px; background: #070708; }
.site-footer__grid { display: grid; grid-template-columns: minmax(230px, 1.05fr) minmax(150px, .72fr) minmax(285px, 1.2fr) minmax(210px, .95fr); column-gap: clamp(40px, 3.5vw, 64px); }
.site-footer__tablet-right { display: contents; }
.site-footer__brand { min-width: 0; }
.site-footer__logo { width: 252px; max-width: 100%; height: auto; margin-bottom: 16px; }
.site-footer p { margin-bottom: 10px; color: var(--muted); font-size: 15px; line-height: var(--footer-line-height); }
.site-footer__brand > p { max-width: 260px; }
.site-footer__column { display: flex; min-width: 0; align-items: flex-start; flex-direction: column; }
.site-footer__label { margin: 0 0 var(--footer-heading-gap) !important; color: var(--white) !important; font-size: 15px !important; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.site-footer__column-content { display: flex; align-items: flex-start; flex-direction: column; gap: var(--footer-item-gap); margin: 0; padding: 0; }
.site-footer__grid a { display: inline-flex; max-width: 100%; min-height: 40px; align-items: center; color: var(--muted); font-size: 16px; line-height: var(--footer-line-height); white-space: nowrap; }
.site-footer__grid a:hover { color: var(--accent); }
.site-footer__grid .site-footer__tryon { width: 100%; min-width: 0; min-height: 48px !important; justify-content: center; margin-top: 18px; color: #111; }
.site-footer__grid .site-footer__tryon:hover { color: var(--accent); }
.site-footer__locations a { align-items: center; }
.site-footer__locations .location-link__primary { gap: 8px; }
.site-footer__locations .location-link__primary > span { white-space: nowrap; }
.site-footer__locations .arrow-up-right { width: 12px; height: 12px; flex-basis: 12px; }
.site-footer__hours { margin: 8px 0 0 !important; }
.site-footer__socials { display: flex; gap: 10px; margin-top: 4px; }
.site-footer__socials a { width: 40px; height: 40px; min-height: 40px; justify-content: center; overflow: hidden; border: 0; border-radius: 50%; background: transparent; aspect-ratio: 1; }
.site-footer__socials img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; transition: transform .2s var(--ease); }
.site-footer__socials a:hover { background: transparent; transform: translateY(-2px); }
.site-footer__socials a:hover img { transform: scale(1.06); }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted-dark); font-size: 13px; }
.site-footer__bottom a { min-height: 44px; display: inline-flex; align-items: center; }
.site-footer__legal { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 2px 20px; }
.site-footer__legal button { min-height: 44px; padding: 0; border: 0; background: transparent; color: var(--muted-dark); font: inherit; cursor: pointer; }
.site-footer__legal a:hover,
.site-footer__legal button:hover { color: var(--accent); }

.cookie-banner { position: fixed; z-index: 80; right: max(20px, env(safe-area-inset-right)); bottom: max(20px, env(safe-area-inset-bottom)); left: max(20px, env(safe-area-inset-left)); display: flex; max-width: 1180px; align-items: center; justify-content: space-between; gap: 24px; margin: 0 auto; padding: 20px 22px; border: 1px solid rgba(255,138,0,.45); border-radius: 14px; background: rgba(12,13,15,.97); box-shadow: 0 24px 70px rgba(0,0,0,.5); }
.cookie-banner[hidden] { display: none; }
.cookie-banner__copy { max-width: 720px; }
.cookie-banner strong { color: var(--white); font-size: 17px; }
.cookie-banner p { margin: 6px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.cookie-banner a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner__actions { display: flex; flex: 0 0 auto; gap: 10px; }
.cookie-banner .button { min-height: 46px; padding-inline: 18px; font-size: 11px; }

.site-main.prose { min-height: 65vh; padding-top: clamp(130px, 13vw, 190px); padding-bottom: clamp(70px, 9vw, 120px); }
.prose article { max-width: 900px; margin: 0 auto; }
.prose h1 { margin-bottom: 40px; font-size: clamp(36px, 5vw, 64px); }
.prose h2 { margin: 46px 0 16px; font-size: clamp(24px, 3vw, 34px); }
.prose p { margin: 0 0 18px; color: var(--muted); line-height: 1.75; }
.prose hr { margin: 54px 0; border: 0; border-top: 1px solid var(--line); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.legal-page { width: min(calc(100% - clamp(40px, 6vw, 96px)), 1440px); max-width: none; }
.legal-page .legal-document { width: 100%; max-width: 1320px; margin-inline: auto; }
.legal-document__header { max-width: 1180px; margin-bottom: clamp(38px, 6vw, 72px); }
.legal-document__header .eyebrow { margin-bottom: 14px; color: var(--accent); font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.legal-document__header h1 { margin-bottom: 22px; }
.legal-document__intro { max-width: 980px; font-size: clamp(18px, 2vw, 22px); color: var(--text) !important; }
.legal-document__updated { font-size: 14px; }
.legal-checklist { margin: 0 0 clamp(36px, 6vw, 64px); padding: clamp(24px, 4vw, 40px); border: 1px solid rgba(255, 138, 0, .55); border-radius: 18px; background: linear-gradient(145deg, rgba(255, 138, 0, .1), rgba(255, 138, 0, .025)); }
.legal-checklist h2 { margin-top: 0; color: var(--accent); }
.legal-checklist ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 32px; margin: 20px 0 0; padding-left: 22px; }
.legal-checklist li, .legal-document__body li { color: var(--muted); line-height: 1.65; }
.legal-toc { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-bottom: clamp(44px, 7vw, 80px); overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--line); }
.legal-toc a { min-height: 52px; display: flex; align-items: center; padding: 13px 18px; color: var(--text); background: var(--surface); text-decoration: none; }
.legal-toc a:hover, .legal-toc a:focus-visible { color: var(--accent); background: #1d1f23; }
.legal-document__body section { scroll-margin-top: 110px; padding: 0 0 42px; border-bottom: 1px solid var(--line); }
.legal-document__body section + section { padding-top: 8px; }
.legal-document__body ul { margin: 0 0 22px; padding-left: 24px; }
.legal-business-card { margin: 20px 0 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #1c1d21; }
.legal-business-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; }
.legal-business-field { min-width: 0; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.legal-business-field:nth-child(3n) { border-right: 0; }
.legal-business-field:nth-last-child(-n + 3) { border-bottom: 0; }
.legal-business-field dt, .legal-contact-label { margin: 0 0 9px; color: var(--white); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.legal-business-field dd { margin: 0; color: var(--muted); line-height: 1.55; }
.legal-contact-row { display: grid; grid-template-columns: 1fr 1fr 1.45fr; border-top: 1px solid var(--line); background: #232429; }
.legal-contact-item { min-width: 0; padding: 20px; border-right: 1px solid var(--line); }
.legal-contact-item:last-child { border-right: 0; }
.legal-contact-item > div { color: var(--muted); line-height: 1.55; overflow-wrap: anywhere; }
.legal-placeholder { display: inline; padding: 3px 7px; border-radius: 5px; color: #0b0b0c; background: var(--accent); font-weight: 750; line-height: 1.6; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.legal-table-wrap { max-width: 100%; margin: 20px 0 26px; overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }
.legal-table-wrap table { width: 100%; min-width: 760px; border-collapse: collapse; }
.legal-table-wrap th, .legal-table-wrap td { padding: 15px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; line-height: 1.55; }
.legal-table-wrap th { color: var(--text); background: #24262b; }
.legal-table-wrap td { color: var(--muted); background: #181a1e; }
.legal-table-wrap tr:last-child td { border-bottom: 0; }
.legal-table-wrap th:last-child, .legal-table-wrap td:last-child { border-right: 0; }

@media (max-width: 900px) {
	.legal-business-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.legal-business-field { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
	.legal-business-field:nth-child(3n) { border-right: 1px solid var(--line); }
	.legal-business-field:nth-child(2n) { border-right: 0; }
	.legal-business-field:nth-last-child(-n + 3) { border-bottom: 1px solid var(--line); }
	.legal-business-field:nth-last-child(-n + 2) { border-bottom: 0; }
	.legal-contact-row { grid-template-columns: 1fr; }
	.legal-contact-item { border-right: 0; border-bottom: 1px solid var(--line); }
	.legal-contact-item:last-child { border-bottom: 0; }
}

@media (max-width: 700px) {
	.legal-checklist ul, .legal-toc, .legal-business-grid { grid-template-columns: 1fr; }
	.legal-business-field, .legal-business-field:nth-child(2n), .legal-business-field:nth-child(3n), .legal-business-field:nth-last-child(-n + 2), .legal-business-field:nth-last-child(-n + 3) { border-right: 0; border-bottom: 1px solid var(--line); }
	.legal-business-field:last-child { border-bottom: 0; }
	.legal-document__header h1 { overflow-wrap: normal; word-break: normal; }
}

/* Floating contact widget */
.contact-widget { position: fixed; z-index: 55; right: max(20px, env(safe-area-inset-right)); bottom: max(22px, calc(env(safe-area-inset-bottom) + 18px)); display: flex; align-items: flex-end; flex-direction: column; gap: 10px; }
.contact-widget__toggle,
.contact-widget__panel a { display: grid; width: 56px; height: 56px; place-items: center; border: 1px solid var(--line-accent); border-radius: 50%; background: var(--accent); color: var(--ink); box-shadow: 0 12px 30px rgba(0, 0, 0, .3); cursor: pointer; }
.contact-widget svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-widget__toggle { position: relative; padding: 0; border-color: transparent; background: var(--accent); color: var(--ink); transition: background-color .22s ease, border-color .22s ease, color .22s ease; }
.contact-widget__toggle::before { width: 26px; height: 26px; background: currentColor; content: ""; -webkit-mask: url("../images/icons/message.png") center / contain no-repeat; mask: url("../images/icons/message.png") center / contain no-repeat; }
.contact-widget__toggle:hover,
.contact-widget__toggle:focus-visible,
.contact-widget__toggle[aria-expanded="true"] { border-color: var(--accent); background: #141519; color: var(--accent); }
.contact-widget__toggle:active { border-color: var(--color-accent-active); background: #141519; color: var(--color-accent-active); }
.contact-widget__panel { display: flex; visibility: hidden; align-items: flex-end; flex-direction: column; gap: 9px; opacity: 0; transform: translateY(14px); pointer-events: none; transition: opacity .2s ease, transform .25s var(--ease), visibility .2s; }
.contact-widget.is-open .contact-widget__panel { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }
.contact-widget__panel a { position: relative; background: #1b1b1e; color: var(--accent); transition: background-color .2s ease, color .2s ease, transform .2s ease; }
.contact-widget__panel a:hover { background: var(--accent); color: var(--ink); transform: translateX(-3px); }
.contact-widget__panel a.contact-widget__platform { padding: 0; overflow: visible; border: 0; background: transparent; border-radius: 50%; }
.contact-widget__panel a.contact-widget__platform:hover { background: transparent; }
.contact-widget__icon { display: block; width: 100%; height: 100%; overflow: hidden; border-radius: 50%; }
.contact-widget__platform img { width: 100%; height: 100%; object-fit: cover; }
.contact-widget__tooltip { position: absolute; right: 68px; width: max-content; max-width: 260px; padding: 7px 10px; border-radius: var(--radius-sm); background: #0c0c0e; color: var(--white); font-size: 12px; white-space: nowrap; opacity: 0; transform: translateX(8px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.contact-widget__panel a:hover > .contact-widget__tooltip,
.contact-widget__panel a:focus-visible > .contact-widget__tooltip { opacity: 1; transform: translateX(0); }

/* Reveals */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 1101px) and (max-width: 1399px) {
	.site-header__inner { gap: 16px; padding-inline: 20px; }
	.site-brand img,
	.site-brand .custom-logo { width: 124px; }
	.site-nav__list { gap: 8px; }
	.site-nav__list a { font-size: 11px; }
	.site-header__actions { gap: 10px; }
	.site-header__actions .booking-marquee { width: 184px; min-width: 184px; }
}

@media (max-width: 1100px) {
	:root { --header-height: 84px; }
	.menu-toggle { display: grid; order: 2; }
	.site-header__actions { margin-left: auto; order: 1; }
	.site-brand,
	.site-header__actions,
	.menu-toggle { position: relative; z-index: 2; }
	.site-nav {
		position: fixed;
		z-index: 1;
		inset: 0;
		display: none;
		height: 100vh;
		height: 100dvh;
		min-height: 100svh;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 28px;
		margin: 0;
		padding: calc(var(--header-height) + 30px) 20px max(28px, env(safe-area-inset-bottom));
		overflow-y: auto;
		border: 0;
		border-radius: 0;
		background: #0f0f11;
		box-shadow: none;
	}
	.site-nav.is-open { display: flex; }
	.site-nav__list { width: min(100%, 420px); align-items: center; flex-direction: column; gap: 2px; }
	.site-nav__list a { width: 100%; min-height: 46px; justify-content: center; font-size: 17px; letter-spacing: .06em; }
	.site-nav .booking-marquee--mobile { display: flex; width: min(100%, 420px); min-width: 0; min-height: 54px; flex: 0 0 auto; }
	.site-nav .booking-marquee--mobile .booking-marquee__item { font-size: 10px; }
	.nav-label--desktop { display: none; }
	.nav-label--mobile { display: inline; }
	.hero__media img { object-position: 78% 32%; }
	.hero__inner { grid-template-columns: minmax(0, 1.08fr) minmax(290px, .72fr); gap: 34px; }
	.hero h1 { font-size: clamp(42px, 5.6vw, 62px); }
	html[lang^="ru"] .hero h1,
	html[lang^="sr"] .hero h1 { font-size: clamp(34px, 3.7vw, 40px); }
	.hero__phone { height: min(70svh, 610px); min-height: 510px; margin-right: 16px; transform: none; }
	.trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
	.site-footer__grid { grid-template-columns: repeat(2, 1fr); }
	.site-footer__locations .location-link__primary > span { white-space: normal; }
}

@media (min-width: 701px) and (max-width: 1100px) {
	.site-header__actions .booking-marquee { width: clamp(188px, 25vw, 214px); min-width: clamp(188px, 25vw, 214px); }
	.gallery__controls { display: flex; width: 100%; gap: 10px; padding-right: 0; }
	.gallery__nav { flex: 0 0 48px; }
	.gallery__progress { flex: 1 1 auto; min-width: 0; padding-inline: 14px; }
	.artists__viewport { overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
	.artists__viewport::-webkit-scrollbar { display: none; }
	.artists__grid { display: grid; width: 100%; grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: calc((100% - 16px) / 2); gap: 16px; }
	.artist-card { scroll-snap-align: start; scroll-snap-stop: always; }
	.artists__controls { position: absolute; z-index: 4; top: var(--artists-control-y, 180px); right: -12px; left: -12px; display: flex; justify-content: space-between; gap: 8px; margin-top: 0; transform: translateY(-50%); pointer-events: none; }
	.artists__controls .artists__nav { border-color: rgba(255, 255, 255, .38); background: rgba(14, 15, 18, .78); color: var(--white); backdrop-filter: blur(7px); pointer-events: auto; }
	.artists__controls .artists__nav:hover,
	.artists__controls .artists__nav:focus-visible { border-color: var(--accent); background: #141519; color: var(--accent); }
	.reviews__track { grid-auto-columns: calc((100% - 16px) / 2); }
	.faq-row { display: contents; height: auto !important; transition: none !important; }
	.faq-row.is-height-animating { overflow: visible; }
	.faq-row:first-child .faq-item { border-top: 0; }
	.faq-row:first-child .faq-item:first-child { border-top: 1px solid var(--line-accent); }
	.faq-item__summary { min-height: 96px; }
	.contact { height: auto; min-height: 0; grid-template-columns: 1fr; }
	.contact__map { min-height: 540px; }
	.contact__card { align-items: center; padding-block: 72px; text-align: center; }
	.contact__links { justify-items: center; }
	.contact__links a,
	.contact__address { margin-right: auto; margin-left: auto; }
	.contact__cities { justify-items: center; }
	.contact__cities a { align-items: center; text-align: center; }
	.contact .location-link__primary { justify-content: center; }
	.site-footer { padding-top: 64px; }
	.site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 40px; row-gap: 36px; text-align: center; }
	.site-footer__brand { grid-column: 1 / -1; text-align: center; }
	.site-footer__brand > p { margin-right: auto; margin-left: auto; font-size: 15px; }
	.site-footer__logo { margin-right: auto; margin-left: auto; }
	.site-footer__grid .site-footer__tryon { width: min(100%, 420px); margin-right: auto; margin-left: auto; }
	.site-footer__explore,
	.site-footer__explore .site-footer__column-content,
	.site-footer__tablet-right .site-footer__column,
	.site-footer__tablet-right .site-footer__column-content { align-items: center; }
	.site-footer__label { font-size: 17px !important; }
	.site-footer__grid a { justify-content: center; font-size: 16px; }
	.site-footer__locations a { width: 100%; }
	.site-footer__locations .location-link__primary { justify-content: center; }
	.site-footer__tablet-right { display: flex; min-width: 0; align-items: stretch; flex-direction: column; gap: 28px; }
	.site-footer__tablet-right .site-footer__visit,
	.site-footer__tablet-right .site-footer__contact { width: 100%; }
	.site-footer__socials { justify-content: center; }
	.site-footer__bottom { justify-content: center; margin-top: 32px; font-size: 14px; text-align: center; }
}

@media (max-width: 900px) {
	.hero::after {
		background:
			linear-gradient(90deg, rgba(7, 8, 9, .08), transparent 68%),
			linear-gradient(rgba(7, 8, 9, .3), rgba(7, 8, 9, .3));
	}
	.hero__inner { grid-template-columns: 1fr; }
	.hero__content { max-width: 690px; }
	.hero__phone { display: none; }
	.services__grid { gap: 12px; }
	.service-card { min-height: 350px; padding-inline: 22px; border: 0; background: transparent; }
	.service-card + .service-card { border-left: 0; }
	.gallery__layout { grid-template-columns: 1fr; gap: 24px; }
	.gallery__filters { flex-direction: row; gap: 8px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
	.gallery__filters::-webkit-scrollbar { display: none; }
	.gallery__filters button { flex: 0 0 auto; padding: 10px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
	.gallery__filters button::before { display: none; }
	.gallery__filters button:hover,
	.gallery__filters button.is-active { padding-left: 16px; border-color: var(--accent); background: var(--accent); color: var(--ink); }
	.gallery__viewport { height: 580px; }
	.gallery__track { grid-auto-columns: 226px; }
	.advantages__stats { grid-template-columns: repeat(2, 1fr); }
	.certificate__layout { grid-template-columns: 1fr; }
	.contact { height: auto; min-height: 0; grid-template-columns: 1fr; }
	.contact__map { min-height: 540px; }
}

@media (max-width: 700px) {
	:root { --header-height: 76px; }
	.section { padding-block: 72px; }
	.container { width: min(calc(100% - 40px), var(--container)); }
	.site-header__inner { gap: 10px; padding-inline: 16px; }
	.site-brand,
	.site-header__actions,
	.menu-toggle { position: relative; z-index: 2; }
	.site-brand img,
	.site-brand .custom-logo { width: 110px; }
	.site-header__actions .booking-marquee { width: 158px; min-width: 158px; min-height: 48px; }
	.site-header__actions .booking-marquee__item { font-size: 9px; }
	.language-switcher__toggle { min-width: 60px; height: 42px; padding-inline: 10px; font-size: 11px; }
	.language-switcher__menu { width: max-content; min-width: 150px; max-width: calc(100vw - 32px); }
	.menu-toggle { width: 46px; height: 46px; }
	.site-nav {
		z-index: 1;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		height: 100vh;
		height: 100dvh;
		min-height: 100svh;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 28px;
		margin: 0;
		padding: calc(var(--header-height) + 30px) 20px max(28px, env(safe-area-inset-bottom));
		overflow-y: auto;
		border: 0;
		border-radius: 0;
		background: #0f0f11;
		box-shadow: none;
	}
	.site-nav.is-open { display: flex; }
	.site-nav__list { width: min(100%, 420px); align-items: center; gap: 2px; }
	.site-nav__list a { min-height: 46px; font-size: 17px; letter-spacing: .06em; }
	.site-nav .booking-marquee--mobile { display: flex; width: min(100%, 420px); min-width: 0; min-height: 54px; flex: 0 0 auto; }
	.site-nav .booking-marquee--mobile .booking-marquee__item { font-size: 10px; }
	.hero__media img { object-position: 82% 32%; }
	.hero__inner { width: calc(100% - 40px); padding-top: calc(var(--header-height) + 30px); }
	.hero h1 { white-space: normal; }
	.hero__location { margin-bottom: 16px; font-size: 12px; }
	.hero h1 { font-size: clamp(40px, 10.8vw, 58px); }
	html[lang^="ru"] .hero h1 { font-size: clamp(22px, 6.3vw, 32px); line-height: 1.02; letter-spacing: -.04em; }
	html[lang^="sr"] .hero h1 { font-size: clamp(23px, 6.65vw, 32px); line-height: 1.02; letter-spacing: -.02em; }
	.hero__copy { font-size: 17px; }
	.hero__actions { display: grid; grid-template-columns: 1fr 1fr; }
	.hero__actions .button { min-width: 0; padding-inline: 16px; }
	.hero__instagram { width: 100%; }
	.services__grid { grid-template-columns: 1fr; }
	.service-card { min-height: 290px; border: 0; }
	.trust-strip__grid { grid-template-columns: 1fr; }
	.trust-strip article { min-height: 160px; padding: 22px 24px; }
	.gallery__viewport { height: 530px; }
	.gallery__track { grid-auto-columns: min(56vw, 207px); gap: 12px; }
	.gallery__controls { display: flex; gap: 8px; padding-right: 0; }
	.gallery__nav { flex: 0 0 48px; }
	.gallery__progress { flex: 1 1 auto; min-width: 0; padding-inline: 10px; }
	.advantages__visual-grid { grid-template-columns: 1fr; }
	.advantage-card { height: 380px; }
	.advantages__stats { margin-top: 58px; gap: 24px; }
	.artists__viewport { overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; transition: height .24s cubic-bezier(.2, .7, .2, 1); }
	.artists__viewport::-webkit-scrollbar { display: none; }
	.artists__grid { display: grid; width: 100%; grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 100%; gap: 16px; }
	.artist-card { scroll-snap-align: start; scroll-snap-stop: always; }
	.artists__controls { position: absolute; z-index: 4; top: var(--artists-control-y, 180px); right: -10px; left: -10px; display: flex; justify-content: space-between; gap: 8px; margin-top: 0; transform: translateY(-50%); pointer-events: none; }
	.artists__controls .artists__nav { border-color: rgba(255, 255, 255, .38); background: rgba(14, 15, 18, .78); color: var(--white); backdrop-filter: blur(7px); pointer-events: auto; }
	.artists__controls .artists__nav:hover,
	.artists__controls .artists__nav:focus-visible { border-color: var(--accent); background: #141519; color: var(--accent); }
	.reviews { display: flex; min-height: calc(100svh - var(--header-height)); align-items: center; padding-block: clamp(54px, 7svh, 72px); }
	.reviews > .container { width: min(calc(100% - 40px), var(--container)); }
	.reviews__summary { align-items: flex-start; flex-direction: column; }
	.reviews__summary > a { width: 100%; }
	.reviews__viewport { scroll-padding-inline: 0; }
	.reviews__track { grid-auto-columns: 100%; }
	.review-card { width: 100%; scroll-snap-stop: always; }
	.reviews .slider-arrows { position: static; width: 100%; justify-content: flex-end; margin-top: 16px; transform: none; pointer-events: auto; }
	.reviews .slider-arrows button { border-color: rgba(255, 255, 255, .38); background: rgba(14, 15, 18, .82); color: var(--white); backdrop-filter: blur(7px); pointer-events: auto; }
	.reviews .slider-arrows button:hover,
	.reviews .slider-arrows button:focus-visible { border-color: var(--accent); background: #141519; color: var(--accent); }
	.faq-row { display: contents; height: auto !important; transition: none !important; }
	.faq-row.is-height-animating { overflow: visible; }
	.faq-row:first-child .faq-item { border-top: 0; }
	.faq-row:first-child .faq-item:first-child { border-top: 1px solid var(--line-accent); }
	.faq-item__summary { min-height: 96px; }
	.faq-item__answer-wrap { transition: grid-template-rows .32s cubic-bezier(.2, .7, .2, 1), opacity .24s ease; }
	.faq-item__answer { padding-right: 46px; transition: padding-bottom .32s cubic-bezier(.2, .7, .2, 1); }
	.certificate__layout { gap: 36px; }
	.certificate__copy { gap: 28px; }
	.contact__map { min-height: 440px; }
	.contact__card { padding: 54px 24px; }
	.site-footer__grid { grid-template-columns: 1fr; row-gap: 40px; text-align: center; }
	.site-footer__label { font-size: 17px !important; }
	.site-footer__brand > p { font-size: 15px; }
	.site-footer__grid a { font-size: 16px; }
	.site-footer__explore a { white-space: normal; }
	.site-footer__hours { font-size: 15px; }
	.site-footer__bottom { font-size: 14px; }
	.site-footer__brand,
	.site-footer__grid > div:not(.site-footer__brand),
	.site-footer__column,
	.site-footer nav,
	.site-footer__column-content { align-items: center; }
	.site-footer__logo { margin-right: auto; margin-left: auto; }
	.site-footer__brand > p { margin-right: auto; margin-left: auto; }
	.site-footer__grid .site-footer__tryon { justify-content: center; }
	.site-footer__locations a { width: 100%; align-items: center; justify-content: center; }
	.site-footer__locations .location-link__primary { justify-content: center; flex-wrap: wrap; }
	.site-footer__locations .location-link__primary > span { white-space: normal; }
	.site-footer__contact-list a { justify-content: center; }
	.site-footer__socials { justify-content: center; }
	.site-footer__bottom { align-items: center; justify-content: center; flex-direction: column; gap: 4px; text-align: center; }
	.site-footer__legal { justify-content: center; }
	.cookie-banner { align-items: stretch; flex-direction: column; gap: 16px; padding: 18px; }
	.cookie-banner__actions { display: grid; grid-template-columns: 1fr; }
	.cookie-banner .button { width: 100%; }
	.lightbox { padding: 0; background: rgba(0, 0, 0, .65); backdrop-filter: blur(5px); }
	.lightbox__dialog { width: 100%; max-width: none; height: 100vh; height: 100dvh; min-height: 100svh; grid-template-columns: 1fr; grid-template-rows: minmax(0, 1fr); gap: 0; padding: 72px 14px max(16px, env(safe-area-inset-bottom)); border: 0; border-radius: 0; }
	.lightbox figure { width: 100%; max-width: 100%; height: 100%; grid-template-rows: minmax(0, 1fr) 56px; }
	.lightbox__media { height: auto; }
	.lightbox__nav { position: absolute; z-index: 2; top: 50%; }
	.lightbox__nav--prev { left: 14px; }
	.lightbox__nav--next { right: 14px; }
	.lightbox figure img { max-width: calc(100% - 18px); max-height: 100%; }
	.lightbox figcaption { min-height: 56px; padding-top: 14px; }
	.lightbox__close { top: max(14px, calc(env(safe-area-inset-top) + 10px)); right: 14px; }
}

@media (max-width: 560px) {
	.site-header__actions .booking-marquee { display: none; }
	.site-header__actions { margin-left: auto; }
	.hero { min-height: 100svh; }
	.hero__inner { min-height: 100svh; padding-bottom: 20px; }
	.hero h1 { margin-bottom: 16px; font-size: clamp(36px, 11vw, 50px); }
	.hero__copy { margin-bottom: 18px; }
	.hero__actions { grid-template-columns: 1fr; gap: 10px; }
	.hero__actions .button { width: 100%; min-height: 50px; }
	.hero__note { margin-block: 13px 16px; }
	.hero__instagram { min-height: 74px; grid-template-columns: 40px 1fr 24px; gap: 12px; padding: 12px 14px; font-size: 14px; }
	.hero__instagram svg { width: 38px; }
	.hero__instagram--localized { grid-template-columns: 32px minmax(0, 1fr); gap: 10px; padding: 12px; font-size: 12px; }
	.hero__instagram--localized > svg:not(.arrow-up-right) { width: 32px; }
	.hero__instagram--localized > .arrow-up-right { display: none; }
	.hero__instagram--localized .hero__instagram-copy { display: flex; min-width: 0; align-items: flex-start; flex-direction: column; gap: 0; line-height: 1.35; }
	.hero__instagram--localized .hero__instagram-intro,
	.hero__instagram--localized .hero__instagram-prize { white-space: nowrap; }
	.hero__instagram--localized .hero__instagram-prize { display: block; letter-spacing: -.02em; }
	.section-heading { margin-bottom: 42px; }
	.section-heading h2,
	.compact-heading h2 { font-size: 36px; }
	.gallery__controls { gap: 8px; }
	.advantages__stats { grid-template-columns: 1fr; }
	.certificate__heading h2 { font-size: 30px; }
	.certificate__heading .button { width: 100%; min-width: 0; }
	.contact-widget { right: max(14px, env(safe-area-inset-right)); bottom: max(16px, calc(env(safe-area-inset-bottom) + 12px)); }
	.contact-widget__toggle,
	.contact-widget__panel a { width: 54px; height: 54px; }
	.contact-widget__tooltip { display: none; }
}

@media (max-width: 370px) {
	.container,
	.hero__inner { width: calc(100% - 30px); }
	.site-header__inner { padding-inline: 12px; }
	.site-brand img,
	.site-brand .custom-logo { width: 99px; }
	.language-switcher__toggle { min-width: 56px; padding-inline: 8px; }
	.hero h1 { font-size: 36px; }
	.hero__instagram { grid-template-columns: 34px 1fr 20px; }
	.gallery__container { width: calc(100% - 30px); }
	.gallery__track { grid-auto-columns: min(58vw, 207px); }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*,
	*::before,
	*::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
	.reveal { opacity: 1; transform: none; }
	.booking-marquee__track { transform: none !important; }
}
.review-card__media { display:grid; min-width:0; grid-template-columns:repeat(2,minmax(0,1fr)); gap:8px; margin:16px 0 22px; }
.review-card__media--single { grid-template-columns:1fr; }
.review-card__media button { position:relative; width:100%; height:clamp(96px,8vw,126px); min-width:0; padding:0; overflow:hidden; border:1px solid rgba(255,255,255,.16); border-radius:8px; background:#17181a; color:#fff; cursor:pointer; }
.review-card__media--single button { height:clamp(118px,10vw,150px); }
.review-card__media img { width:100%; height:100%; object-fit:cover; }
.review-card__media strong { position:absolute; inset:0; display:grid; place-items:center; background:rgba(0,0,0,.64); font-size:20px; }
.review-card__play { position:absolute; inset:50% auto auto 50%; display:grid; width:24px; height:24px; place-items:center; border-radius:50%; background:rgba(0,0,0,.72); transform:translate(-50%,-50%); font-size:10px; }
