/* =========================
   INNER PAGE COMMON
   ========================= */

.page-inner {
	padding: 24px 0 60px;
}

.page-inner__hero {
	margin-bottom: 32px;
}

.page-inner__breadcrumbs {
	margin-bottom: 14px;
	font-size: 12px;
	line-height: 1.4;
	text-transform: uppercase;
	color: var(--text-color-gray);
	opacity: .7;
}

.page-inner__breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.page-inner__breadcrumbs a:hover {
	text-decoration: underline;
}

.page-inner__title {
	margin: 0;
}

.page-inner__section + .page-inner__section {
	margin-top: 56px;
}

.page-inner__head {
	margin-bottom: 28px;
}
.promo-page__season .page-inner__head{
	text-align: center;
}
.about-page__gallery .page-inner__head{
	text-align: center;
}


.page-inner__section-title {
	margin: 0;
	font-family: var(--title-font);
	font-size: 44px;
	line-height: 1;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: var(--text-color-gray);
}

.page-inner__lead {
	font-size: 18px;
	line-height: 1.6;
}

.page-inner__lead p:last-child {
	margin-bottom: 0;
}
.branding-page__intro .page-inner__lead {
  max-width: 60%;
}

.branding-page__intro .page-inner__lead p + p {
	margin-top: 16px;
}

@media (max-width: 991px) {
	.branding-page__intro .page-inner__lead {
		max-width: 100%;
	}
}

.page-inner__note {
	padding: 32px 24px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 20px;
	background: #fff;
	text-align: center;
}

.page-inner__note-text {
	font-size: 20px;
	line-height: 1.5;
	color: var(--text-color-gray);
}

.page-inner__note-text p:last-child {
	margin-bottom: 0;
}

.page-inner__note-text a {
  color: var(--accent-color);
}
.page-inner__note-text a:hover {
  color: var(--accent-color-hover);
}

.page-inner__note-actions {
	display: flex;
	justify-content: center;
	margin-top: 22px;
}

.page-inner__grid-3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.page-inner__grid-2 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	align-items: center;
}

.page-inner__stack {
	display: grid;
}

.page-inner__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.page-inner__content {
	min-width: 0;
  text-align: center;
}

.loyalty-page__intro .page-inner__content {
  text-align: left;
}

.about-page__owner .page-inner__content {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 20px;
}

.page-inner__block-title {
	margin: 0 0 16px;
	font-family: var(--title-font);
	font-size: 42px;
	line-height: 1.05;
	font-weight: 500;
	color: var(--text-color-gray);
}

.page-inner__block-subtitle {
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
	color: var(--text-color-gray);
	opacity: .7;
}

.page-inner__text {
	font-size: 18px;
	line-height: 1.6;
}

.page-inner__text p:last-child {
	margin-bottom: 0;
}

.about-page__owner .page-inner__text {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  padding-top: 24px;
  margin-top: 24px;
}

.page-inner__actions {
	margin-top: 24px;
}

.page-inner__table-wrap {
	overflow-x: auto;
}

.page-inner__table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
}

.page-inner__table th,
.page-inner__table td {
	padding: 16px 18px;
	font-size: 16px;
	line-height: 1.4;
	text-align: left;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
@media (max-width:767px) {
  .page-inner__table th,
  .page-inner__table td {
    	padding: 10px 10px;
  }
}
.page-inner__table th {
	font-weight: 600;
	color: var(--text-color-gray);
	background: rgba(0, 0, 0, 0.03);
}

.page-inner__table tr:last-child td {
	border-bottom: 0;
}


.page-inner__table th:first-child,
.page-inner__table td:first-child {
	width: 65%;
}

.page-inner__table th:last-child,
.page-inner__table td:last-child {
	width: 35%;
}

@media (max-width: 991px) {
	.page-inner__section-title {
		font-size: 34px;
	}

	.page-inner__block-title {
		font-size: 34px;
	}
}

@media (max-width: 767px) {
	.page-inner {
		padding: 16px 0 40px;
	}

	.page-inner__hero {
		margin-bottom: 24px;
	}

	.page-inner__section + .page-inner__section {
		margin-top: 40px;
	}

	.page-inner__head {
		margin-bottom: 20px;
	}

	.page-inner__section-title {
		font-size: 28px;
		line-height: 1.05;
	}

	.page-inner__block-title {
		font-size: 28px;
		line-height: 1.1;
	}

	.page-inner__lead,
	.page-inner__text {
		font-size: 16px;
	}

	.page-inner__grid-3,
	.page-inner__grid-2 {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.page-inner__note {
		padding: 24px 18px;
		border-radius: 16px;
	}

	.page-inner__note-text {
		font-size: 18px;
	}

	.page-inner__note-actions .ui-button,
	.page-inner__actions .ui-button {
		width: 100%;
	}
}


/* =========================
   BRANDING PAGE
   ========================= */


.branding-page__lead {
	max-width: 60%;
}

.branding-page__lead p + p {
	margin-top: 16px;
}

.branding-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.branding-gallery__item {
	display: block;
	border-radius: 16px;
	overflow: hidden;
}

.branding-gallery__item img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

@media (max-width: 991px) {
	.branding-page__lead {
		max-width: 100%;
	}

	.branding-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.branding-gallery {
		gap: 14px;
	}

	.branding-gallery__item {
		border-radius: 12px;
	}
}


/* =========================
   ABOUT PAGE
   ========================= */

.about-page__history .page-inner__stack {
  gap: 48px;
}

.about-page__story-item {
	align-items: center;
}

@media (min-width: 768px) {
	.about-page__story-item:nth-child(even) > :first-child {
		order: 2;
	}

	.about-page__story-item:nth-child(even) > :last-child {
		order: 1;
	}
}

.about-page__owner-grid {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 5fr);
	justify-content: space-between;
	gap: 40px;
	align-items: center;
}

.about-page__owner-media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.about-page__owner-card {
	padding: 40px 32px;
	background: rgba(255, 255, 255, 0.45);
	border-radius: 20px;
}

.about-page__owner-name {
	margin: 0;
	font-family: var(--title-font);
	font-size: 42px;
	line-height: 1.05;
	font-weight: 500;
	color: var(--text-color-gray);
	text-align: center;
}

.about-page__owner-role {
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
	color: var(--text-color-gray);
	opacity: .7;
}

.about-page__owner-separator {
	width: 100%;
	height: 1px;
	margin: 24px 0;
	background: rgba(0, 0, 0, 0.08);
}

.about-page__owner-text {
	font-size: 18px;
	line-height: 1.6;
	text-align: center;
}

.about-page__owner-text p:last-child {
	margin-bottom: 0;
}

.about-page__people {
	padding-top: 8px;
}

.about-page__people-head {
	margin-bottom: 28px;
	text-align: center;
}

.about-page__people-title {
	margin: 0;
	font-family: var(--title-font);
	font-size: 42px;
	line-height: 1.05;
	font-weight: 500;
	color: var(--text-color-gray);
}

.page-inner__section-subtitle {
	margin-top: 8px;
	font-size: 18px;
	line-height: 1.4;
	color: var(--text-color-gray);
}

.about-gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.about-gallery__item {
	display: block;
	border-radius: 14px;
	overflow: hidden;
}

.about-gallery__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1;
}

.about-gallery__item--portrait img {
	aspect-ratio: 3 / 4;
}

.about-page__bottom-note {
	margin-top: 28px;
	font-size: 16px;
	line-height: 1.6;
	text-align: center;
}

.about-page__bottom-note p {
	margin: 0;
}

@media (max-width: 991px) {
	.about-page__owner-grid {
		grid-template-columns: 1fr;
	}

	.about-page__owner-name,
	.about-page__people-title {
		font-size: 34px;
	}

	.about-gallery {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {

  .about-page__history .page-inner__stack {
    gap: 32px;
  }

	.about-page__owner-card {
		padding: 24px 18px;
		border-radius: 16px;
	}

	.about-page__owner-name,
	.about-page__people-title {
		font-size: 28px;
	}

	.about-page__owner-text,
	.about-page__people-subtitle {
		font-size: 16px;
	}

	.about-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.about-gallery__item {
		border-radius: 12px;
	}
}


/* =========================
   INFO PAGE
   ========================= */

.info-page__top {
	margin-bottom: 32px;
}

.info-page__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.info-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 28px 24px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 20px;
	background: #fff;
}

.info-card__icon {
	margin-bottom: 18px;
}

.info-card__icon img {
	display: block;
	width: 80px;
	height: 80px;
	object-fit: cover;
}

.info-card__title {
	margin: 0 0 14px;
	font-family: var(--title-font);
	font-size: 28px;
	line-height: 1.1;
	font-weight: 500;
	color: var(--text-color-gray);
}

.info-card__text {
	font-size: 16px;
	line-height: 1.6;
}

.info-card__text p:last-child {
	margin-bottom: 0;
}

/* price block */

.info-page__price {
	margin: 32px 0;
}

.info-page__price-box {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 410px;
	padding: 48px 40px;
	border-radius: 24px;
	overflow: hidden;
	color: #fff;
	background-color: var(--text-color-gray);
}

.info-page__price-bg {
	position: absolute;
	inset: 0;
}

.info-page__price-bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.info-page__price-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	/* max-width: 760px; */
}

.info-page__price-title {
	margin: 0 0 18px;
	font-family: var(--title-font);
	font-size: 42px;
	line-height: 1.05;
	font-weight: 500;
	color: #fff;
}

.info-page__price-text {
	max-width: 600px;
	font-size: 18px;
	line-height: 1.6;
}

.info-page__price-text p:last-child {
	margin-bottom: 0;
}

.info-page__price-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 24px;
}

/* video block */

.info-page__video {
	margin-top: 32px;
}

.info-page__video-grid {
	align-items: center;
	gap: 32px;
}

.info-page__video-frame {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	border-radius: 16px;
	overflow: hidden;
	background: #000;
}

.info-page__video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* responsive */

@media (max-width: 991px) {
	.info-page__grid {
		grid-template-columns: 1fr;
	}

	.info-page__price {
		margin: 28px 0;
	}

	.info-page__price-box {
		min-height: 360px;
		padding: 40px 32px;
	}

	.info-page__price-title {
		font-size: 34px;
	}

	.info-page__video-grid {
		gap: 24px;
	}
}

@media (max-width: 767px) {
	.info-page__top {
		margin-bottom: 24px;
	}

	.info-page__grid {
		gap: 18px;
	}

	.info-card {
		padding: 22px 18px;
		border-radius: 16px;
	}

	.info-card__title {
		font-size: 24px;
	}

	.info-page__price {
		margin: 24px 0;
	}

	.info-page__price-box {
		min-height: 320px;
		padding: 24px 18px;
		border-radius: 16px;
	}

	.info-page__price-inner {
		max-width: 100%;
	}

	.info-page__price-title {
		font-size: 28px;
	}

	.info-page__price-text {
		font-size: 16px;
	}

	.info-page__price-actions {
		gap: 12px;
	}

	.info-page__price-actions .ui-button {
		width: 100%;
	}

	.info-page__video {
		margin-top: 24px;
	}

	.info-page__video-grid {
		gap: 20px;
	}
}


/* =========================
   CONTACTS PAGE
   ========================= */

.contacts-page__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 32px;
	align-items: start;
}

.contacts-page__content {
	display: grid;
	gap: 24px;
}

.contacts-page__block {
	padding: 28px 24px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 20px;
	background: #fff;
}

.contacts-page__phone-row {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: 20px;
	align-items: start;
}

.contacts-page__subtitle {
	margin: 0 0 16px;
	font-family: var(--title-font);
	font-size: 28px;
	line-height: 1.1;
	font-weight: 500;
	color: var(--text-color-gray);
}

.contacts-page__text,
.contacts-page__phone-main,
.contacts-page__phone-extra {
	font-size: 16px;
	line-height: 1.6;
}

.contacts-page__text p:last-child,
.contacts-page__phone-main p:last-child,
.contacts-page__phone-extra p:last-child {
	margin-bottom: 0;
}

.contacts-page__map-frame {
	position: sticky;
	top: 24px;
	overflow: hidden;
	border-radius: 20px;
	min-height: 520px;
	background: #f3f3f3;
}

.contacts-page__map-frame iframe {
	display: block;
	width: 100%;
	height: 520px;
	border: 0;
}

@media (max-width: 991px) {
	.contacts-page__grid {
		grid-template-columns: 1fr;
	}

	.contacts-page__map-frame {
		position: static;
	}
}

@media (max-width: 767px) {
	.contacts-page__grid {
		gap: 24px;
	}

	.contacts-page__content {
		gap: 18px;
	}

	.contacts-page__block {
		padding: 22px 18px;
		border-radius: 16px;
	}

	.contacts-page__phone-row {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.contacts-page__subtitle {
		font-size: 24px;
	}

	.contacts-page__map-frame {
		border-radius: 16px;
		min-height: 420px;
	}

	.contacts-page__map-frame iframe {
		height: 420px;
	}
}

.contacts-page__map-frame {
	position: sticky;
	top: 24px;
	overflow: hidden;
	border-radius: 20px;
	min-height: 520px;
	background: #f3f3f3;
}

.contacts-page__map-frame > div,
.contacts-page__map-frame ymaps,
.contacts-page__map-frame iframe {
	width: 100% !important;
	max-width: 100% !important;
}

@media (max-width: 991px) {
	.contacts-page__map-frame {
		position: static;
	}
}

@media (max-width: 767px) {
	.contacts-page__map-frame {
		border-radius: 16px;
		min-height: 420px;
	}
}

.contacts-page__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 32px;
	align-items: stretch;
}

.contacts-page__map {
	height: 100%;
}

.contacts-page__map-frame {
	position: sticky;
	top: 24px;
	height: 100%;
	min-height: 100%;
	overflow: hidden;
	border-radius: 20px;
	background: #f3f3f3;
}

.contacts-page__map-frame > div,
.contacts-page__map-frame ymaps,
.contacts-page__map-frame iframe {
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
}

@media (max-width: 991px) {
	.contacts-page__map-frame {
		position: static;
		min-height: 520px;
	}
}

@media (max-width: 767px) {
	.contacts-page__map-frame {
		min-height: 420px;
		border-radius: 16px;
	}
}


.contacts-page__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 32px;
	align-items: stretch;
}

.contacts-page__content {
	display: grid;
	gap: 24px;
}

.contacts-page__map {
	height: 100%;
}

.contacts-page__map-frame {
	position: sticky;
	top: 24px;
	height: 100%;
	min-height: 100%;
	overflow: hidden;
	border-radius: 20px;
	background: #f3f3f3;
}

.contacts-page__map-frame > div,
.contacts-page__map-frame ymaps,
.contacts-page__map-frame iframe {
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
}

@media (max-width: 991px) {
	.contacts-page__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.contacts-page__map {
		height: auto;
	}

	.contacts-page__map-frame {
		position: static;
		height: auto;
		min-height: 520px;
	}
}

@media (max-width: 767px) {
	.contacts-page__content {
		gap: 18px;
	}

	.contacts-page__map-frame {
		min-height: 420px;
		border-radius: 16px;
	}
}


@media (min-width: 767px) {
	.page-inner__grid-2:nth-child(even) > .page-inner__media {
		order: 2;
	}

 .page-inner__grid-2:nth-child(even) > .page-inner__content {
		order: 1;
	}
}

.promo-page__season .page-inner__grid-2 {
	padding-bottom: 40px;
}

.promo-page__season .page-inner__grid-2:not(:last-of-type) {
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 40px;
}


.gallery-masonry {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.branding-page__gallery-section .gallery-masonry {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.gallery-masonry__item {
	display: block;
	overflow: hidden;
	border-radius: 16px;
}

.gallery-masonry__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* aspect-ratio: 1 / 1; */
}

.branding-page__gallery-section .gallery-masonry__item img {
  aspect-ratio: 1 / 1;
}

@media (max-width: 1024px) {
	.gallery-masonry {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.gallery-masonry {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}
}

.gallery-section__bottom-text {
	margin-top: 32px;
	text-align: center;
	font-size: 18px;
	line-height: 1.6;
	color: var(--text-color);
  font-weight: 600;
}

.gallery-section__bottom-text p {
	margin: 0;
}

.gallery-section__bottom-text a {
  color: var(--accent-color);
}

.gallery-section__bottom-text a:hover {
	color: var(--accent-color-hover);
}