/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 150%;
  font-family: "Inter";
}

/* Inter — основной текст */
@font-face {
  font-family: "Inter";
  src:
    url("fonts/Inter-Regular.woff2") format("woff2"),
    url("fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter-Bold";
  src:
    url("fonts/Inter-Bold.woff2") format("woff2"),
    url("fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* DW-Wickham — декоративный шрифт */
@font-face {
  font-family: "DW-Wickham";
  src:
    url("fonts/DW-Wickham.woff2") format("woff2"),
    url("fonts/DW-Wickham.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Inter";
  font-size: 20px;
  background-color: #fffaef;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: #000;
  letter-spacing: 0em;
  position: relative;
  overflow-x: hidden;
  /* Кроссбраузерное сглаживание */
  -webkit-font-smoothing: antialiased; /* Для Webkit-браузеров (Chrome, Safari, Opera) */
  -moz-osx-font-smoothing: grayscale; /* Для macOS и Firefox */
  font-smoothing: antialiased; /* Стандартное сглаживание */
}

html {
  scroll-behavior: smooth;
  /* Кроссбраузерное сглаживание */
  -webkit-font-smoothing: antialiased; /* Для Webkit-браузеров (Chrome, Safari, Opera) */
  -moz-osx-font-smoothing: grayscale; /* Для macOS и Firefox */
  font-smoothing: antialiased; /* Стандартное сглаживание */
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Унаследует цвет текста от родителя */
  cursor: pointer;
}

.section {
  width: 100%;
  margin-top: 100px;
}

.section_small {
  width: 100%;
  margin-top: 30px;
}

.container {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 30px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff4dd;
  padding: 6px 0;
}

/* Desktop header */
.header_inner {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1.5fr 1.5fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.header_inner_addr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}

.header_inner_addr_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 25px;
}

.menu a,
.menu .menu_trigger {
  font-family: "Inter-Bold" !important;
  font-weight: 700 !important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 16px !important;
  cursor: pointer;
}

.menu a:hover,
.menu .menu_trigger:hover {
  color: #e47627 !important;
}

.menu_item_wrap {
  position: relative;
  top: -2px;
}

.menu_dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-8px);
  -ms-transform: translateX(-50%) translateY(-8px);
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: #fff9f0;
  border: 1px solid #e8dcc8;
  border-radius: 16px;
  padding: 16px 24px;
  text-align: center;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  -webkit-transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    -webkit-transform 0.25s ease;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    -webkit-transform 0.25s ease;
  -o-transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    -webkit-transform 0.25s ease;
  z-index: 200;
}

.menu_item_wrap:hover .menu_dropdown,
.menu_item_wrap.is-open .menu_dropdown {
  opacity: 1;
  visibility: visible;
}

.menu_dropdown_item {
  display: block;
  font-family: "Inter-Bold" !important;
  font-weight: 700;
  font-size: 15px;
  color: #333;
  padding: 10px 0 8px;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.menu_dropdown_item:hover {
  color: #e47627 !important;
}

.menu_dropdown_item:first-child {
  padding-top: 0;
}

.menu_dropdown_item:last-child {
  padding-bottom: 0;
}

.btn_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.order_online_wrap {
  position: relative;
}

.order_online_dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  background: #e47627;
  border-radius: 24px;
  padding: 10px 14px 8px;
  -webkit-box-shadow: 0 10px 40px rgba(228, 118, 39, 0.35);
  box-shadow: 0 10px 40px rgba(228, 118, 39, 0.35);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    -webkit-transform 0.25s ease;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    -webkit-transform 0.25s ease;
  -o-transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    -webkit-transform 0.25s ease;
  z-index: 200;
}

.order_online_wrap:hover .order_online_dropdown,
.order_online_wrap.is-open .order_online_dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.order_online_dropdown_item {
  display: block;
  font-family: "DW-Wickham" !important;
  font-weight: 700;
  text-align: center;
  font-size: 18px;
  color: #fff;
  padding: 10px;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.order_online_dropdown_item:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* Mobile bar + burger + menu — hidden on desktop */
.header_bar {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.header_burger {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 110;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #333;
}

.header_mobile_menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff4dd;
  z-index: 105;
  padding: 90px 30px 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  -o-transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  display: flex;
  flex-direction: column;
}

.header_mobile_menu.is-open {
  opacity: 1;
  visibility: visible;
}

.header_mobile_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 30px;
}

.header_mobile_nav > a,
.header_mobile_nav .menu_trigger {
  font-family: "Inter-Bold" !important;
  font-weight: 700 !important;
  font-size: 22px;
  text-align: right;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.header_mobile_nav > a:hover,
.header_mobile_nav .menu_trigger:hover {
  color: #e47627;
}

.menu_item_wrap--mobile .menu_dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  background: transparent;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 12px 24px 0 0;
  min-width: auto;
  display: none;
  text-align: right;
}

.menu_item_wrap--mobile.is-open .menu_dropdown {
  display: block;
}

.menu_item_wrap--mobile .menu_dropdown_item {
  padding: 8px 0;
  font-size: 18px;
}

.header_mobile_addr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 30px;
  padding-top: 30px;
  border-top: 1px solid #e0d4c0;
}

.header_mobile_soc {
  display: block;
  width: 50px;
  margin-top: auto;
  margin-left: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}

.header_mobile_soc:hover {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.header_mobile_soc img {
  width: 100%;
  height: auto;
}

.btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #e47627;
  color: #fff;
  padding: 20px 30px 16px 30px;
  border-radius: 100px;
  font-size: 18px !important;
  line-height: 100% !important;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "DW-Wickham" !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  &:hover {
    background: #e47627;
    color: #fff;
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  }
}

.logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-transform: translateY(26px);
  -ms-transform: translateY(26px);
  transform: translateY(26px);
}

.logo::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 170px;
  height: 85px;
  background: #fff4dd;
  border-radius: 0 0 170px 170px;
  z-index: -1;
}

.logo img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  margin-top: 80px;
  left: 0;
  z-index: 1;
}

.hero_img .title {
  font-family: "DW-Wickham", serif;
  font-size: 80px;
  line-height: 100% !important;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  text-align: center;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.descr_big {
  font-family: "DW-Wickham", serif;
  font-size: 42px;
  line-height: 100% !important;
  text-align: center;
  color: #644425;
}

.hero_img {
  width: 100%;
  height: 78vh;
  min-height: 750px;
  overflow: hidden;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero_img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  z-index: 1;
  pointer-events: none;
}

.home .hero_img::after {
  content: none;
  display: none;
}

.hero_img img,
.hero_img .hero_img_desktop,
.hero_img .hero_img_mobile {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.hero_img_mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero_img--has-mobile .hero_img_desktop {
    display: none;
  }

  .hero_img--has-mobile .hero_img_mobile {
    display: block;
  }
}

/* Ticker / бегущая строка */
.ticker {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0 16px 0px;
  position: relative;
  z-index: 2;
}

.ticker_track {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-animation: ticker-scroll 100s linear infinite;
  animation: ticker-scroll 100s linear infinite;
  will-change: transform;
}

.ticker_item {
  font-family: "DW-Wickham", serif;
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.05em;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.ticker_dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 40px;
}

.container_small {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
}

.video_yt {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  margin-top: 60px;
}

.video_yt iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.customer_reviews_slider {
  margin-top: 30px;
  overflow: hidden;
  position: relative;
}

.customer_reviews_slider .swiper-slide {
  box-sizing: border-box;
  border-radius: 20px;
  overflow: hidden;
}

.customer_reviews_slider .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  max-height: 320px;
}

.customer_reviews_slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition:
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
}

.customer_reviews_slider .swiper-slide img:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.about_grid_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}

p {
  margin-bottom: 20px;
}

/* Контент страницы — strong, списки */
.page_content,
.entry-content {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.page_content strong,
.entry-content strong {
  font-family: "Inter-Bold", sans-serif;
  font-weight: 700;
  color: #333;
}

.page_content ul,
.entry-content ul,
.page_content ol,
.entry-content ol {
  margin: 0 0 20px 0;
  padding-left: 28px;
}

.page_content ul {
  list-style-type: disc;
}

.page_content ol {
  list-style-type: decimal;
}

.page_content li,
.entry-content li {
  margin-bottom: 10px;
  padding-left: 6px;
}

.page_content li:last-child,
.entry-content li:last-child {
  margin-bottom: 0;
}

.page_content a,
.entry-content a {
  color: #e47627;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page_content a:hover,
.entry-content a:hover {
  color: #cf6820;
}

.page_content .page-links,
.entry-content .page-links {
  margin-top: 24px;
  font-size: 15px;
  color: #555;
}

.about_grid_item_title {
  font-family: "DW-Wickham", serif;
  font-size: 42px;
  line-height: 100% !important;
  text-transform: uppercase;
  color: #e47627;
  text-align: center;
}

.videoname {
  margin-top: 15px;
  opacity: 0.7;
}

.about_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.about_grid_item_text {
  text-align: center;
}

.mt160 {
  margin-top: 200px;
}

.footer {
  width: 100%;
  background-color: #a48d77;
  color: #644425;
  padding: 60px 0 10px 0px;
  margin-top: 100px;
}

.footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 35px;
  row-gap: 15px;
  a {
    color: #644425;
    font-family: "Inter-Bold" !important;
    font-weight: 700;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  a:hover {
    color: #fff;
  }
}

@-webkit-keyframes ticker-scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes ticker-scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.newsletter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

h3.title {
  font-family: "DW-Wickham", serif;
  font-size: 42px;
  line-height: 100% !important;
  text-transform: uppercase;
  color: #644425;
  text-align: center;
}

h4.title {
  font-family: "DW-Wickham", serif;
  font-size: 28px;
  line-height: 100% !important;
  text-transform: uppercase;
  color: #644425;
  text-align: center;
}

/* Newsletter WPForms */
.newsletter .wpforms-container {
  width: 100% !important;
  max-width: 560px !important;
}

.newsletter .wpforms-form {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  gap: 12px !important;
}

.newsletter .wpforms-field-container {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 !important;
  flex: 1 !important;
}

.newsletter .wpforms-field-label {
  display: none !important;
}

.newsletter .wpforms-field input[type="email"],
.newsletter .wpforms-field input[type="text"] {
  width: 100% !important;
  max-width: 100% !important;
  padding: 18px 28px !important;
  border: 2px solid #644425 !important;
  border-radius: 100px !important;
  background: transparent !important;
  color: #644425 !important;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif !important;
  font-size: 18px !important;
  outline: none !important;
  -webkit-transition: border-color 0.3s ease !important;
  -o-transition: border-color 0.3s ease !important;
  transition: border-color 0.3s ease !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  height: 60px !important;
}

.newsletter .wpforms-field input::-webkit-input-placeholder {
  color: #644425 !important;
  opacity: 0.7 !important;
}

.newsletter .wpforms-field input::-moz-placeholder {
  color: #644425 !important;
  opacity: 0.7 !important;
}

.newsletter .wpforms-field input:-ms-input-placeholder {
  color: #644425 !important;
  opacity: 0.7 !important;
}

.newsletter .wpforms-field input::-ms-input-placeholder {
  color: #644425 !important;
  opacity: 0.7 !important;
}

.newsletter .wpforms-field input::placeholder {
  color: #644425 !important;
  opacity: 0.7 !important;
}

.newsletter .wpforms-field input:focus {
  border-color: #fff !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.newsletter .wpforms-submit-container {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.newsletter .wpforms-submit {
  padding: 18px 36px !important;
  border: none !important;
  border-radius: 100px !important;
  background: #644425 !important;
  color: #a48d77 !important;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif !important;
  font-size: 18px !important;
  cursor: pointer !important;
  -webkit-transition: all 0.3s ease !important;
  -o-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  line-height: 1 !important;
  height: 60px !important;
}

.newsletter .wpforms-submit:hover {
  background: #4a3019 !important;
  -webkit-transform: scale(1.03) !important;
  -ms-transform: scale(1.03) !important;
  transform: scale(1.03) !important;
}

/* WPForms — скрываем ошибки под полями */
.newsletter em.wpforms-error {
  display: none !important;
}

/* Toast */
.pp-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  max-width: 380px;
  padding: 18px 28px;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.4;
  z-index: 10000;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  color: #fff;
  -webkit-transform: translateX(calc(100% + 40px));
  -ms-transform: translateX(calc(100% + 40px));
  transform: translateX(calc(100% + 40px));
  -webkit-transition:
    opacity 0.4s ease,
    -webkit-transform 0.4s ease;
  transition:
    opacity 0.4s ease,
    -webkit-transform 0.4s ease;
  -o-transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease,
    -webkit-transform 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.pp-toast.is-visible {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.pp-toast--success {
  background: #2e7d32;
}

.pp-toast--error {
  background: #c0392b;
}

.footer_locations {
  width: 100%;
  max-width: 1000px;
  margin: 60px auto 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.footer_location_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

.footer_location_item h4 {
  margin-bottom: 20px;
}

.img_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 60px;
  img {
    width: 280px;
    height: auto;
  }
}

.soc {
  display: block;
  margin: 60px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  &:hover {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
}

.soc img {
  width: 80px;
  height: 80px;
}

.walktheline {
  margin-top: 60px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.menu_block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.menu_block_item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  img {
    width: 100%;
    z-index: 1;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .menu_block_itemtitle {
    z-index: 2;
    position: absolute;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.menu_block_item:hover img {
  scale: 1.05;
}

.menu_block_item:hover .menu_block_itemtitle {
  scale: 0.95;
}

/* Events & Catering — статические карточки с меню */
.menu_block_item--static {
  cursor: default;
  flex-direction: column;
  align-items: stretch;
}

.menu_block_item--static img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu_block_item--static .menu_block_itemtitle {
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 42px;
}

.menu_block_item--static .menu_block_item_list {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 30px 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.menu_block_item_list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.menu_block_item_list_item {
  background: #ffc921;
  list-style: none;
  color: #333;
  padding: 10px 16px;
  border-radius: 8px;
  text-align: center;
  line-height: 1.35;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.menu_block_itemtitle {
  font-family: "DW-Wickham", serif;
  font-size: 64px;
  line-height: 100% !important;
  text-transform: uppercase;
  color: #ffc921;
  text-align: center;
}

.menu_block--compact .menu_block_itemtitle {
  font-size: 42px;
}

.info_block {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  a {
    color: #644425;

    -webkit-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

    transition: all 0.3s ease;
  }
  a:hover {
    color: #fff;
  }
}

h2.title {
  font-family: "DW-Wickham", serif;
  font-size: 64px;
  line-height: 100% !important;
  text-transform: uppercase;
  color: #e47627;
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}

/* Gallery Slider — базовые стили до инициализации Swiper (устраняют FOUC) */
.gallery-slider {
  margin-top: 50px;
  overflow: hidden;
  position: relative;
}

.gallery-slider .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  transition-property: transform;
}

.gallery-slider .swiper-slide {
  flex-shrink: 0;
  width: 18%;
  max-width: 280px;
  box-sizing: border-box;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.gallery-slider .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
}

.gallery-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
  aspect-ratio: 1 / 1;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition:
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
}

.gallery-slider .swiper-slide img:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.gallery-slider__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
}

.gallery-slider__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e47627;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  color: #e47627;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.gallery-slider__arrow:hover {
  background: #e47627;
  color: #fff;
}

.gallery-slider__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.gallery-slider__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.gallery-slider__dots .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d4c4a8;
  opacity: 1;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-slider__dots .swiper-pagination-bullet-active {
  background: #e47627;
}

.description {
  text-align: center;
  margin-bottom: 30px;
}

h2.title span {
  line-height: 100% !important;
  color: #8f7655;
  text-align: center;
  font-family: "DW-Wickham", serif;
}

/* Location Block */
.location_block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.location_block_item_title {
  font-family: "DW-Wickham", serif;
  font-size: 36px;
  text-transform: uppercase;
  color: #e47627;
  text-align: center;
  margin-bottom: 20px;
}

.image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
  }
}

.location_block_item_img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 2.5;
}

.location_block_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.location_block_item_map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.location_block_item.show-map .location_block_item_img img {
  opacity: 0;
}

.location_block_item.show-map .location_block_item_map {
  opacity: 1;
  pointer-events: auto;
}

.location_block_item_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
  margin-top: 20px;
  margin-bottom: 12px;
}

.mail_block img {
  width: 30px;
}

.btn_event {
  margin-top: 40px;
}

.mail_block {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e57627;
  line-height: 100% !important;
  font-family: "Inter-Bold" !important;
  font-weight: 700;
  text-decoration: none;
}

.center_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.location_block_item_btns .btn,
.location_block_item_btns a,
.location_block_item_btns button {
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.btn--orange {
  background: #e47627;
  color: #fff;
}

.btn--white {
  background: #fff;
  color: #000;
}

.btn--map {
  background: transparent;
  color: #e47627;
  border: 2px solid #e47627;
}

.location_block_item.show-map .btn--map {
  background: #e47627;
  color: #fff;
  border-color: #e47627;
}

.btn--download {
  background: #5f462b;
  color: #fff;
}

.btn--download:hover {
  background: #4a351f;
  color: #fff;
}

.location_block_item_info {
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
  line-height: 150%;
}

.location_block_item_text {
  text-align: center;
  margin-top: 12px;
  font-size: 15px;
  line-height: 150%;
  color: #555;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Ring logo */
.ring {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 60px auto 0;
}

.ring img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.ring_since {
  z-index: 1;
}

.ring_active {
  z-index: 2;
  -webkit-animation: ring-rotate 15s linear infinite;
  animation: ring-rotate 15s linear infinite;
}

@-webkit-keyframes ring-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes ring-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Timeline */
.history_block {
  position: relative;
  padding: 40px 0;
}

.tl-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #e0d4c0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.tl-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #e47627;
}

.tl-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 50%;
  padding-bottom: 80px;
  opacity: 0;
}

.wpforms-container .wpforms-field,
.wp-core-ui div.wpforms-container .wpforms-field {
  padding: 6px 0 !important;
  position: relative;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-item--right {
  margin-left: 50%;
  padding-left: 40px;
}

.tl-item--left {
  margin-left: 0;
  padding-right: 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  text-align: right;
}

.tl-dot {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 4px solid #e47627;
  background: #fffaef;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  top: 6px;
  z-index: 2;
}

.tl-item--right .tl-dot {
  left: -11px;
}

.tl-item--left .tl-dot {
  right: -11px;
}

.tl-title {
  font-family: "DW-Wickham", serif;
  font-size: 32px;
  line-height: 110% !important;
  text-transform: uppercase;
  color: #e47627;
  margin-bottom: 12px;
}

.tl-text {
  font-size: 16px;
  line-height: 160%;
  color: #333;
  max-width: 360px;
}

.tl-item--left .tl-text {
  margin-left: auto;
}

.tl-item--right .tl-text {
  margin-right: auto;
}
button:hover {
  cursor: pointer !important;
}
.btn:hover {
  cursor: pointer !important;
}

button {
  cursor: pointer !important;
}
.btn {
  cursor: pointer !important;
}

.btn_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 60px;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.descr {
  font-size: 24px;
  line-height: 120% !important;
  color: #644425;
  font-family: "Inter-Bold" !important;
  font-weight: 700;
  text-align: center;
}

.descr a {
  color: #e47627;
  font-family: "Inter-Bold" !important;
  line-height: 100% !important;
}

h1.title {
  font-family: "DW-Wickham", serif;
  font-size: 80px;
  line-height: 100% !important;
  text-transform: uppercase;
  color: #e47627;
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}

.text_center {
  font-size: 24px;
  line-height: 120% !important;
  color: #644425;
  font-family: "Inter-Bold" !important;
  font-weight: 700;
  text-align: center;
}

/* Child / Kids Menu Block */
.child_block {
  position: relative;
  margin: 40px auto 0;
  max-width: 100%;
}

.child_block_img {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 45%;
  border-radius: 20px;
  overflow: hidden;
}

.child_block_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.child_block .ye {
  position: absolute;
  bottom: -8%;
  left: 0%;
  width: 30%;
  height: auto;
  z-index: 2;
  will-change: transform, opacity;
  pointer-events: none;
}

.child_block .gr {
  position: absolute;
  top: -8%;
  right: 0%;
  width: 30%;
  height: auto;
  z-index: 2;
  will-change: transform, opacity;
  pointer-events: none;
}

.child_block_img {
  pointer-events: none;
}

/* ===== АДАПТИВ ===== */

@media (max-width: 1240px) {
  .header_inner {
    display: none;
  }

  .header_bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .logo {
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
  }

  .logo::before {
    display: none;
  }

  .logo img {
    height: 72px;
    width: auto;
  }

  .header {
    padding: 10px 0;
  }
}

@media (max-width: 992px) {
  h1.title {
    font-size: 52px;
  }
  .container,
  .container_small {
    padding: 0 20px;
  }

  .section {
    margin-top: 60px;
  }

  .mt160 {
    margin-top: 140px;
  }

  .about_grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about_grid_item_title {
    font-size: 36px;
  }

  .menu_block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }

  .menu_block_itemtitle {
    font-size: 48px;
  }

  .menu_block--compact .menu_block_itemtitle {
    font-size: 40px;
    width: 90%;
  }

  .location_block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 40px;
  }

  .location_block_item_title {
    font-size: 30px;
  }

  .location_block_item_btns {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .location_block_item_btns .btn {
    padding: 14px 24px;
    font-size: 18px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  h2.title {
    font-size: 48px;
  }

  .ring {
    width: 220px;
    height: 220px;
    margin-top: 40px;
  }

  .tl-line {
    left: 16px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .tl-line-fill {
    height: 100% !important;
  }

  .tl-item {
    width: 100%;
    margin-left: 0 !important;
    padding-left: 44px !important;
    padding-right: 0 !important;
    padding-bottom: 50px;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    text-align: left !important;
    opacity: 1 !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }

  .tl-item--left .tl-dot,
  .tl-item--right .tl-dot {
    left: 6px !important;
    right: auto !important;
  }

  .tl-item--left .tl-content {
    text-align: left;
  }

  .tl-item--left .tl-text {
    margin-left: 0;
  }

  .tl-title {
    font-size: 26px;
  }

  .tl-text {
    max-width: none;
  }

  .footer_menu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
  }

  .footer_locations {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer_menu {
    display: none;
  }

  .newsletter {
    margin-top: 0px;
  }
  .jobs_header {
    font-size: 28px !important;
  }
  .info_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .hero_img .title {
    font-family: "DW-Wickham", serif;
    font-size: 42px;
  }

  .hero {
    margin-top: 80px;
  }

  .descr_big {
    font-family: "DW-Wickham", serif;
    font-size: 28px;
    line-height: 100% !important;
    text-align: center;
    color: #644425;
  }

  .faq_question {
    font-size: 22px !important;
  }

  .faq_question span {
    font-size: 22px !important;
  }

  .hero_img {
    height: 470px;
    min-height: auto;
  }

  .ticker_item {
    font-size: 18px;
  }

  .ticker_dot {
    margin: 0 24px;
  }

  body {
    font-size: 16px;
  }

  h2.title {
    font-size: 36px;
  }

  .description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .gallery-slider__nav {
    gap: 16px;
    margin-top: 20px;
  }

  .gallery-slider__arrow {
    width: 40px;
    height: 40px;
  }

  .menu_block_itemtitle {
    font-size: 40px;
  }

  .menu_block--compact .menu_block_itemtitle {
    font-size: 40px;
    width: 90%;
  }

  .location_block_item_info {
    font-size: 15px;
  }

  .descr {
    font-size: 20px;
    line-height: 100% !important;
    color: #644425;
    font-family: "Inter-Bold" !important;
    font-weight: 700;
    text-align: center;
  }

  .location_block_item_text {
    font-size: 14px;
    max-width: none;
  }

  .ring {
    width: 180px;
    height: 180px;
    margin-top: 30px;
  }

  .tl-line {
    left: 12px;
  }

  .tl-item {
    padding-bottom: 40px;
    padding-left: 38px !important;
  }

  .tl-item--left .tl-dot,
  .tl-item--right .tl-dot {
    left: 5px !important;
  }

  .tl-dot {
    width: 18px;
    height: 18px;
  }

  .tl-title {
    font-size: 22px;
  }

  .tl-text {
    font-size: 14px;
  }

  .btn_center {
    margin-top: 40px;
  }

  .btn_center .btn {
    padding: 16px 28px;
    font-size: 18px;
  }

  .newsletter .wpforms-form {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .newsletter .wpforms-submit {
    width: 100% !important;
  }

  .pp-toast {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
  }
}

@media (max-width: 576px) {
  .container,
  .container_small {
    padding: 0 16px;
  }

  .section {
    margin-top: 60px;
  }

  .mt160 {
    margin-top: 140px;
  }

  .about_grid_item_title {
    font-size: 30px;
  }

  .about_grid_item_text {
    font-size: 15px;
  }

  .menu_block {
    margin-top: 30px;
    gap: 20px;
  }

  .menu_block_itemtitle {
    font-size: 64px;
  }

  .menu_block--compact .menu_block_itemtitle {
    font-size: 36px;
  }

  h2.title {
    font-size: 28px;
  }

  .location_block_item_title {
    font-size: 26px;
  }

  .ring {
    width: 150px;
    height: 150px;
  }

  .logo img {
    height: 60px;
  }

  h3.title {
    font-size: 32px;
  }

  h4.title {
    font-size: 24px;
  }
}

/* FAQ Accordion */
.faq_block {
  max-width: 900px;
  margin: 40px auto 0;
}

.faq_item {
  border-bottom: 1px solid #a48d77;
}

.faq_question {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "DW-Wickham", serif;
  font-size: 22px;
  text-transform: uppercase;
  color: #644425;
  line-height: 1.2;
}

.faq_question span {
  font-family: "DW-Wickham", serif;
  font-size: 32px;
  text-transform: uppercase;
  line-height: 100% !important;
  color: #644425;
}

.faq_icon {
  position: relative;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.faq_icon::before,
.faq_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #644425;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}

.faq_icon::before {
  width: 20px;
  height: 2px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.faq_icon::after {
  width: 2px;
  height: 20px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.faq_item.is-open .faq_icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq_answer {
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.faq_item.is-open .faq_answer {
  padding-bottom: 22px;
}

.faq_answer p {
  margin: 0;
}

.faq_answer ul {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
}

.faq_answer li {
  margin-bottom: 4px;
}

.faq_answer li:last-child {
  margin-bottom: 0;
}

.faq_answer a {
  color: #e47627;
}

.faq_answer a:hover {
  text-decoration: underline;
}

.mt30px {
  margin-top: 30px;
}

/* Jobs page — list + modal */
.jobs_header {
  font-size: 42px;
  line-height: 100% !important;
  font-family: "DW-Wickham", serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #644425;
  text-align: center;
  margin-bottom: 30px;
}

.jobs_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.jobs_list_item {
  list-style: none;
}

.jobs_list_btn {
  background: none;
  border: none;
  padding: 0;
  font-family: "DW-Wickham", serif;
  font-size: 80px;
  color: #e47627;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: #e47627;
  text-decoration-thickness: 3px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.jobs_list_btn:hover {
  opacity: 0.85;
}

.jobs_list_arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-decoration: none;
}

.jobs_list_arrow svg {
  width: 40px;
  height: 30px;
}

@media (max-width: 768px) {
  .jobs_list_btn {
    font-size: 60px;
  }

  .jobs_list_arrow svg {
    width: 30px;
    height: 22px;
  }
}

@media (max-width: 576px) {
  .jobs_list_btn {
    font-size: 40px;
  }

  .jobs_list_arrow svg {
    width: 24px;
    height: 18px;
  }
}

/* Press grid */
.press_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
  margin-top: 50px;
}

.press_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: #333;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.press_card:hover {
  opacity: 0.85;
}

.press_card_img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: #f0e8d8;
}

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

.press_card_title {
  margin-top: 14px;
  text-align: center;
}

@media (max-width: 992px) {
  .press_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 20px;
  }
}

@media (max-width: 768px) {
  .press_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 16px;
  }
}

@media (max-width: 480px) {
  .press_grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    gap: 30px;
  }
}

/* Event Modal */
.modal_overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition:
    opacity 0.25s linear,
    visibility 0.25s linear;
  -o-transition:
    opacity 0.25s linear,
    visibility 0.25s linear;
  transition:
    opacity 0.25s linear,
    visibility 0.25s linear;
}

.modal_overlay.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
}

.wpforms-container textarea.wpforms-field-medium {
  height: 120px !important;
  max-height: 120px !important;
}

textarea {
  height: 120px !important;
  max-height: 120px !important;
}

.modal_box .wpforms-field textarea {
  height: 120px !important;
  max-height: 120px !important;
  border-radius: 20px !important;
  width: 100% !important;
  padding: 14px 20px !important;
  border: 2px solid #d4c4a8 !important;
  background: transparent !important;
  font-family: "Inter", sans-serif !important;
  font-size: 15px !important;
  color: #333 !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-transition: border-color 0.2s ease !important;
  -o-transition: border-color 0.2s ease !important;
  transition: border-color 0.2s ease !important;
}

.wp-block-heading {
  margin-bottom: 10px !important;
}

.modal_box {
  position: relative;
  background: #fffaef;
  border-radius: 20px;
  padding: 20px 20px 5px 20px;
  width: 100%;
  max-width: 520px;
  max-height: 96vh;
  overflow-y: auto;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: -webkit-transform 0.25s linear;
  transition: -webkit-transform 0.25s linear;
  -o-transition: transform 0.25s linear;
  transition: transform 0.25s linear;
  transition:
    transform 0.25s linear,
    -webkit-transform 0.25s linear;
}

.modal_overlay.is-open .modal_box {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.modal_close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: #644425;
  cursor: pointer;
  padding: 0;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.modal_close:hover {
  opacity: 0.6;
}

.modal_title {
  font-family: "DW-Wickham", serif;
  font-size: 36px;
  text-transform: uppercase;
  color: #644425;
  text-align: center;
  margin-bottom: 8px;
}

.modal_descr {
  text-align: center;
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* WPForms inside modal */
.modal_box .wpforms-container {
  width: 100% !important;
}

.modal_box .wpforms-field-label {
  margin-top: 10px !important;
}

.modal_box .wpforms-field input[type="text"],
.modal_box .wpforms-field input[type="email"],
.modal_box .wpforms-field input[type="tel"],
.modal_box .wpforms-field input[type="date"],
.modal_box .wpforms-field input[type="time"],
.modal_box .wpforms-field input[type="number"],
.modal_box .wpforms-field select {
  width: 100% !important;
  max-width: 100% !important;
  padding: 14px 20px !important;
  border: 2px solid #d4c4a8 !important;
  border-radius: 100px !important;
  background: transparent !important;
  font-family: "Inter", sans-serif !important;
  font-size: 15px !important;
  color: #333 !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-transition: border-color 0.2s ease !important;
  -o-transition: border-color 0.2s ease !important;
  transition: border-color 0.2s ease !important;
  height: auto !important;
}

.modal_box .wpforms-field input:focus,
.modal_box .wpforms-field select:focus,
.modal_box .wpforms-field textarea:focus {
  border-color: #e47627 !important;
}

.modal_box .wpforms-field input::-webkit-input-placeholder,
.modal_box .wpforms-field textarea::-webkit-input-placeholder {
  color: #333 !important;
}

.modal_box .wpforms-field input::-moz-placeholder,
.modal_box .wpforms-field textarea::-moz-placeholder {
  color: #333 !important;
}

.modal_box .wpforms-field input:-ms-input-placeholder,
.modal_box .wpforms-field textarea:-ms-input-placeholder {
  color: #333 !important;
}

.modal_box .wpforms-field input::placeholder,
.modal_box .wpforms-field textarea::placeholder {
  color: #333 !important;
}

.modal_box .wpforms-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23644425' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 20px center !important;
  background-size: 12px !important;
  padding-right: 44px !important;
}

.wpforms-field-row {
  width: 100% !important;
  max-width: 100% !important;
}

div.wpforms-container-full,
div.wpforms-container-full * {
}

.modal_box .wpforms-submit-container {
  text-align: center !important;
  padding: 0 !important;
  margin-top: 8px !important;
}

.modal_box .wpforms-submit {
  height: 60px !important;
  width: 100% !important;
  padding: 16px 30px !important;
  border: none !important;
  border-radius: 100px !important;
  background: #e47627 !important;
  color: #fff !important;
  font-family: "DW-Wickham", serif !important;
  font-size: 20px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  -webkit-transition: all 0.2s ease !important;
  -o-transition: all 0.2s ease !important;
  transition: all 0.2s ease !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.modal_box .wpforms-submit:hover {
  background: #cf6820 !important;
  -webkit-transform: scale(0.98) !important;
  -ms-transform: scale(0.98) !important;
  transform: scale(0.98) !important;
}

.modal_box em.wpforms-error {
  display: none !important;
}

@media (max-width: 576px) {
  .modal_box {
    padding: 32px 20px 28px;
  }

  .modal_title {
    font-size: 28px;
  }
}

/* Buttons block */
.btns_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.btn--brown {
  background: #644425;
  color: #fff;
}

.btn--brown:hover {
  background: #4a3019;
  color: #fff;
}

/* Icons grid */
.icons_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 50px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.icons_grid_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.icons_grid_item img {
  width: 56px;
  height: 56px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-bottom: 4px;
}

.icons_grid_item_title {
  font-family: "DW-Wickham", serif;
  font-size: 30px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #e47627;
}

.icons_grid_item_text {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  max-width: 320px;
}

@media (max-width: 576px) {
  .icons_grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .icons_grid_item_title {
    font-size: 26px;
  }
}

/* Visit — diagonal ribbons */
.visit_ribbons {
  position: relative;
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
  height: 160px;
  margin-top: -20px;
}

.visit_ribbon {
  position: absolute;
  left: -5%;
  right: -5%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0 12px;
  text-decoration: none;
}

.visit_ribbon .ticker_track {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-animation: ticker-scroll 80s linear infinite;
  animation: ticker-scroll 80s linear infinite;
  will-change: transform;
}

.visit_ribbon--1 {
  top: 0;
  -webkit-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
  z-index: 2;
}

.visit_ribbon--2 {
  top: 50px;
  -webkit-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  z-index: 1;
}

.visit_ribbon--2 .ticker_track {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

@media (max-width: 768px) {
  .visit_ribbons {
    height: 130px;
  }

  .visit_ribbon--2 {
    top: 44px;
  }
}

@media (max-width: 576px) {
  .visit_ribbons {
    height: 120px;
  }

  .visit_ribbon--2 {
    top: 40px;
  }
}

/* Address block — Visit page */
.addr_block {
  max-width: 900px;
  margin: 0 auto;
}

.addr_block_item {
  margin-bottom: 80px;
}

.addr_block_item:last-child {
  margin-bottom: 0;
}

.addr_block_item .title {
  margin-bottom: 30px;
}

.addr_block_item_slider {
  position: relative;
}

.addr_block_item_slider .addr_slider_viewport {
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.addr_block_item_slider .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.addr_slider_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.addr_slider_arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #e47627;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  color: #e47627;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.addr_slider_arrow:hover {
  background: #e47627;
  color: #fff;
}

.addr_slider_dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.addr_slider_dots .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d4c4a8;
  opacity: 1;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.addr_slider_dots .swiper-pagination-bullet-active {
  background: #e47627;
}

.addr_block_item_info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.addr_block_item_info_map {
  border-radius: 16px;
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.addr_block_item_info_map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.addr_block_item_info_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  padding-top: 10px;
}

.addr_block_item_info_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #333;
  text-decoration: none;
}

.addr_block_item_info_line img {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

a.addr_block_item_info_line:hover {
  color: #e47627;
}

a.addr_block_item_info_line span {
  text-decoration: underline;
}

.addr_block_item_info_btn_wrap {
  margin-top: 12px;
}

.addr_block_info_toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  background: #e47627;
  color: #fff;
  font-family: "DW-Wickham", serif;
  font-size: 18px;
  text-transform: uppercase;
  padding: 20px 24px 20px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.addr_block_info_toggle svg {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition:
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
}

.addr_block_info_toggle.is-open svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.addr_block_info_toggle:hover {
  -webkit-transform: scale(0.96);
  -ms-transform: scale(0.96);
  transform: scale(0.96);
}

.addr_block_item_info_content {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.2s linear;
  -o-transition: height 0.2s linear;
  transition: height 0.2s linear;
}

.addr_block_item_info_content.is-open {
  padding-top: 16px;
}

.addr_block_item_info_content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 12px;
}

.addr_block_item_info_content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .addr_block_item_info {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .addr_block_item {
    margin-bottom: 60px;
  }
}

@media (max-width: 576px) {
  .addr_block_info_toggle {
    font-size: 16px;
    padding: 12px 20px 9px;
  }
}
