/* Main SCSS entry */
/* Design tokens from Figma */
/* Main SCSS entry */
/* Media query helper: @include mq(md) { ... } */
/* Stepped type: @include fluid-type(16px, 20px); */
/* Container */
/* Main SCSS entry */
/* Minimal modern reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: #ffffff;
  color: #2A104F;
  font-family: "brother-1816", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, picture, svg, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

/* Licensed Adobe Fonts kit is loaded from Typekit in index.html */
/* Main SCSS entry */
/* Base Typography */
body {
  font-family: "brother-1816", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2A104F;
  font-weight: 400;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: 0;
}

h1 {
  font-size: 40px;
}
@media (min-width: 1024px) {
  h1 {
    font-size: 60px;
  }
}

h2 {
  font-size: 28px;
}
@media (min-width: 1024px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-size: 22px;
}
@media (min-width: 1024px) {
  h3 {
    font-size: 30px;
  }
}

/* Paragraphs and Lists */
p, ul, ol {
  margin: 0 0 1.25rem;
}

/* Links */
a {
  color: #6C2A91;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #44166A;
}

/* Text Utilities */
.text-sm {
  font-size: 14px;
}

.text-lg {
  font-size: 22px;
}

.text-bold {
  font-weight: 700;
}

.text-medium {
  font-weight: 500;
}

.text-light {
  font-weight: 300;
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0;
}

/* Main SCSS entry */
.site-header {
  background: #ffffff;
  padding: 0;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.site-header .page-banner--head {
  height: 16px;
  width: 100%;
  background-image: url("../assets/img/banner_head.svg");
  background-repeat: repeat-x;
  background-position: center;
}
.site-header .site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 1vw, 1rem);
  max-width: 1920px;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .site-header .site-header__inner {
    padding: 3rem clamp(1rem, 3vw, 3rem);
  }
}
@media (min-width: 1024px) {
  .site-header .logo {
    padding-left: 40px;
  }
}
.site-header .logo img {
  display: block;
  height: 35px;
}
@media (min-width: 1024px) {
  .site-header .logo img {
    height: 54px;
  }
}
.site-header .site-nav {
  margin-left: auto;
  padding-right: 7rem;
}
@media (min-width: 1320px) {
  .site-header .site-nav {
    margin-left: 0;
    padding-right: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.site-header .site-nav ul {
  display: flex;
  gap: clamp(0.75rem, 2vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .site-nav a {
  color: #2A104F;
  font-weight: 700;
  text-decoration: none;
  padding: 0.25rem 0.125rem;
  transition: color 150ms ease;
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 1.5294;
  letter-spacing: 0;
  white-space: nowrap;
  /* decorative hover underline using an SVG asset that tiles horizontally */
}
.site-header .site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  width: 100%; /* match the link width */
  height: 12px;
  background-image: url("../assets/img/hover.svg");
  background-repeat: repeat-x; /* tile the decorative pattern across the link */
  background-position: center bottom;
  background-size: auto 100%; /* keep vertical scale, tile horizontally */
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  transform: translateY(4px);
}
.site-header .site-nav a:hover::after,
.site-header .site-nav a:focus-visible::after,
.site-header .site-nav a.is-active::after {
  opacity: 1;
  transform: translateY(0);
}
.site-header {
  /* Mobile nav links should also show the decorative underline (smaller) */
}
.site-header .mobile-nav a {
  position: relative;
  padding-bottom: 0.5rem;
  display: inline-block;
}
.site-header .mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 8px;
  background-image: url("../assets/img/hover.svg");
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 100%;
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
  transform: translateY(4px);
  pointer-events: none;
}
.site-header .mobile-nav a:hover::after, .site-header .mobile-nav a:focus::after, .site-header .mobile-nav a:focus-visible::after, .site-header .mobile-nav a.is-active::after {
  opacity: 1;
  transform: translateY(0);
}
.site-header {
  /* CTA button on the right */
}
.site-header .button {
  white-space: nowrap;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0;
}
.site-header {
  /* Mobile: hide desktop nav, show hamburger */
}
.site-header .hamburger {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
}
.site-header {
  /* Mobile menu overlay */
}
.site-header .mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(59, 30, 84, 0.95); /* semitransparent dark */
  color: #fff;
  z-index: 1200;
  padding: 3rem 1.5rem;
}
.site-header .mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
  display: grid;
  gap: 1.25rem;
  justify-items: start;
}
.site-header .mobile-nav a {
  color: #fff;
  font-size: 18px;
  line-height: 1.5294;
  text-decoration: none;
  font-weight: 700;
}
.site-header {
  /* show desktop layout at lg and up */
}
@media (min-width: 1024px) {
  .site-header .hamburger {
    display: none;
  }
  .site-header .mobile-nav {
    display: none;
  }
  .site-header .site-nav {
    display: block;
  }
  .site-header .button {
    display: inline-flex;
  }
}
.site-header {
  /* At small sizes (< lg), hide the desktop nav and show hamburger */
}
@media (max-width: 1023px) {
  .site-header .site-nav {
    display: none;
  }
  .site-header .hamburger {
    display: inline-flex;
    align-items: center;
  }
  .site-header .button {
    display: none;
  }
}

/* Page banners (head/foot) */
.page-banner {
  width: 100%;
  display: block;
}
.page-banner img {
  display: block;
  width: 100%;
  height: auto;
}
.page-banner--head {
  margin-bottom: 0;
}
.page-banner--foot {
  margin-top: 0;
}

/* Main SCSS entry */
.intro {
  position: relative;
  height: clamp(560px, 100vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
  padding: 0;
}
@media (min-width: 1024px) {
  .intro {
    padding: 0 clamp(1rem, 3vw, 3rem);
  }
}
.intro .intro__slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.intro .intro__slideshow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  background-image: url("../assets/img/ss_separator_before.svg");
  background-repeat: repeat-y;
  background-position: center;
  background-size: contain;
  z-index: 11;
  pointer-events: none;
  display: none;
}
@media (min-width: 1024px) {
  .intro .intro__slideshow::before {
    display: block;
    left: clamp(0rem, 3vw, 0rem);
  }
}
.intro .intro__slideshow::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  background-image: url("../assets/img/ss_separator_before.svg");
  background-repeat: repeat-y;
  background-position: center;
  background-size: contain;
  z-index: 11;
  pointer-events: none;
  display: none;
}
@media (min-width: 1024px) {
  .intro .intro__slideshow::after {
    display: block;
    right: clamp(0rem, 3vw, 0rem);
    transform: rotate(180deg);
  }
}
.intro .intro__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  pointer-events: none;
  transition: opacity 1s ease-in-out, visibility 0s linear 1s;
}
.intro .intro__slide--active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  pointer-events: auto;
  transition: opacity 1s ease-in-out, visibility 0s linear 0s;
}
.intro .intro__content {
  display: grid;
  grid-template-columns: 1fr;
  height: 100%;
  min-height: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  .intro .intro__content {
    grid-template-columns: calc(clamp(32rem, 33vw, 40rem) - 30px) minmax(0, 1fr);
  }
}
.intro .intro-separator {
  background-image: url("../assets/img/ss_separator.svg");
  height: 9px;
  width: 100%;
  transform: rotate;
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto;
  position: absolute;
  top: 0px;
  z-index: 9;
  display: block;
}
@media (min-width: 1024px) {
  .intro .intro-separator {
    display: none;
  }
}
.intro .intro__text {
  background: #3B1E54;
  color: #fff;
  padding: clamp(3rem, 30px, 5.5rem) clamp(1.25rem, 3vw, 3.25rem) clamp(2rem, 10px, 5.5rem) clamp(1.25rem, 6vw, 7.75rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
@media (min-width: 1024px) {
  .intro .intro__text {
    padding: clamp(9rem, 60px, 4rem) clamp(1.25rem, 3vw, 3.25rem) clamp(2rem, 8vh, 5rem) clamp(1.25rem, 6vw, 7.75rem);
  }
}
.intro .intro__text {
  /*> h1,
  > .intro__subtitle,
  > .intro__lead,
  > .intro__cta {
    transform: translateY(-35px);
  }*/
}
.intro .intro__text::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -5px;
  width: 10px;
  background-image: url("../assets/img/ss_separator.png");
  background-repeat: repeat-y;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  z-index: 12;
  display: none;
}
@media (min-width: 1024px) {
  .intro .intro__text::after {
    display: block;
    transform: translateX(50%);
  }
}
.intro .intro__text h1 {
  font-size: clamp(36px, 8vw, 48px);
  margin-bottom: 2rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  max-width: 8ch;
}
@media (min-width: 1024px) {
  .intro .intro__text h1 {
    display: block;
  }
}
@media (min-width: 1024px) {
  .intro .intro__text h1 {
    font-size: 68px;
  }
}
.intro .intro__lead {
  font-size: 16px;
  line-height: 1.5263;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.94);
  max-width: 21.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .intro .intro__lead {
    font-size: 20px;
  }
}
.intro .intro__lead-dynamic {
  display: inline-grid;
  white-space: nowrap;
  text-transform: uppercase;
  color: #E82F6E;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0;
  vertical-align: baseline;
}
@media (min-width: 1024px) {
  .intro .intro__lead-dynamic {
    font-size: 15px;
  }
}
.intro .intro__lead-dynamic > span {
  grid-area: 1/1;
  opacity: 0;
  animation: dynamic-text 16s infinite;
}
.intro .intro__lead-dynamic > span:nth-child(2) {
  animation-delay: 4s;
}
.intro .intro__lead-dynamic > span:nth-child(3) {
  animation-delay: 8s;
}
.intro .intro__lead-dynamic > span:nth-child(4) {
  animation-delay: 12s;
}
@keyframes dynamic-text {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.intro .intro__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-transform: uppercase;
  color: #E84363;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  font-size: 17px;
  line-height: 1.5;
  width: fit-content;
}
.intro .intro__subtitle-icon {
  display: inline-flex;
  width: 1.375rem;
  height: 0.75rem;
  flex: 0 0 auto;
}
.intro .intro__subtitle-icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.intro .intro__cta {
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  padding: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
  transition: color 180ms ease;
  width: fit-content;
  position: relative;
}
@media (min-width: 1024px) {
  .intro .intro__cta {
    display: inline-flex;
  }
}
.intro .intro__cta:hover, .intro .intro__cta:focus {
  color: #E82F6E;
}
.intro .intro__cta:hover .intro__cta-label::after, .intro .intro__cta:focus .intro__cta-label::after, .intro .intro__cta:focus-visible .intro__cta-label::after {
  transform: translateY(0);
}
.intro .intro__cta-label {
  position: relative;
  display: inline-block;
  padding-bottom: 0.625rem;
}
.intro .intro__cta-label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.75rem;
  background-image: url("../assets/img/hover.svg");
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: auto 100%;
  pointer-events: none;
  transition: transform 180ms ease;
  transform: translateY(0);
}
.intro .intro__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-0.0625rem);
}
.intro .intro__image {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.intro .intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 1024px) {
  .intro .intro__image img {
    object-position: center center;
  }
}
.intro .intro__controls {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}
@media (min-width: 1024px) {
  .intro .intro__controls {
    right: 3rem;
    bottom: 3rem;
  }
}
.intro .intro__arrow {
  width: 15px;
  height: 15px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0.8;
}
.intro .intro__arrow:hover {
  opacity: 1;
  transform: scale(1.1);
}
.intro .intro__arrow:active {
  transform: scale(0.95);
}
.intro .intro__arrow--prev {
  background-image: url("../assets/img/arrow_left.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.intro .intro__arrow--next {
  background-image: url("../assets/img/arrow_right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* Main SCSS entry */
.beers {
  padding: 0;
  max-width: 1440px;
  margin-inline: auto;
  margin-top: 5rem;
}
@media (min-width: 1024px) {
  .beers {
    padding: clamp(2rem, 6vw, 6rem) clamp(1rem, 3vw, 3rem);
    margin-top: 0rem;
  }
}
.beers h2 {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  line-height: 1.5333;
  font-weight: 700;
}
.beers h2::before {
  content: "";
  position: absolute;
  top: -1.35rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.375rem;
  height: 0.75rem;
  background: url("../../assets/img/vlnka_red.svg") no-repeat center;
  background-size: contain;
}
.beers .beer-list {
  display: grid;
  gap: 2.5rem;
}
.beers .beer-card {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border-radius: 12px;
}
@media (min-width: 1024px) {
  .beers .beer-card {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.beers .beer-card::before {
  content: none;
  position: absolute;
  top: 50%;
  right: clamp(-2rem, -3vw, -1rem);
  transform: translateY(-50%);
  width: 22px;
  height: 12px;
  background: url("../../assets/img/vlnka_purple.svg") no-repeat center;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}
.beers .beer-card img {
  width: 100%;
  height: auto;
  display: block;
}
.beers .beer-card__text {
  padding: 1.25rem clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .beers .beer-card__text {
    padding: 1.5rem 1.25rem;
  }
}
.beers .beer-card__category {
  color: #E82F6E;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: 0;
  font-size: clamp(20px, 5vw, 30px);
  line-height: 1.6;
}
.beers .beer-card h3 {
  font-size: clamp(32px, 8vw, 44px);
  margin: -0.1rem 0 1rem;
  color: #44166A;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}
@media (min-width: 1024px) {
  .beers .beer-card h3 {
    font-size: 70px;
  }
}
.beers .beer-card__text p:last-child {
  font-size: clamp(16px, 4vw, 20px);
  line-height: 1.35;
  color: #3B1E54;
  margin: 0;
}
.beers {
  /* Decorative bottle overlay */
}
.beers .beer-card::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  bottom: 1rem;
  width: clamp(100px, 20vw, 160px);
  height: clamp(160px, 32vw, 260px);
  pointer-events: none;
  opacity: 0.95;
}
@media (min-width: 1024px) {
  .beers .beer-list {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .beers .beer-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: column;
    column-gap: clamp(3rem, 8vw, 6rem);
  }
  .beers .beer-card:not(:first-child)::before {
    content: "";
    top: 3.125rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .beers .beer-card img {
    width: 100%;
    object-fit: cover;
    grid-column: 1;
  }
  .beers .beer-card__text {
    padding: 0 0 2.5rem;
    grid-column: 2;
    align-self: end;
    text-align: left;
  }
  .beers {
    /* Reverse layout: image on right, text on left */
  }
  .beers .beer-card--reverse img {
    grid-column: 2;
  }
  .beers .beer-card--reverse .beer-card__text {
    grid-column: 1;
    text-align: right;
  }
  .beers {
    /* Adjust bottle overlay for reversed cards */
  }
  .beers .beer-card--reverse::after {
    left: 1.25rem;
    right: auto;
    transform: rotate(18deg) translateY(10px);
  }
  .beers {
    /* Per-row category colors to match the design (approximate) */
  }
  .beers .beer-list article:nth-child(1) .beer-card__category {
    color: #E82F6E;
  }
  .beers .beer-list article:nth-child(2) .beer-card__category {
    color: #F6A800;
  }
  .beers .beer-list article:nth-child(3) .beer-card__category {
    color: #1FB5D6;
  }
  .beers .beer-list article:nth-child(4) .beer-card__category {
    color: #19C6A0;
  }
}

/* Main SCSS entry */
.map {
  padding: 0px;
  position: relative;
  margin-top: 5rem;
}
@media (min-width: 1024px) {
  .map {
    padding: clamp(2rem, 6vw, 6rem) clamp(1rem, 3vw, 3rem);
    margin-top: 0rem;
  }
}
.map .maplibregl-map {
  border-radius: 0;
}
@media (min-width: 1024px) {
  .map {
    padding: clamp(1.5rem, 6vw, 4rem) clamp(1rem, 3vw, 3rem);
  }
}
.map .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.map h2 {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.map h2::before {
  content: "";
  position: absolute;
  top: -1.35rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.375rem;
  height: 0.75rem;
  background-image: url("../assets/img/vlnka_red.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.map::before, .map::after {
  content: "";
  position: absolute;
  top: clamp(1.5rem, 6vw, 4rem);
  bottom: clamp(1.5rem, 6vw, 4rem);
  width: 8px;
  background-image: url("../assets/img/ss_separator_before.svg");
  background-repeat: repeat-y;
  background-position: center;
  background-size: contain;
  z-index: 2;
  pointer-events: none;
  display: none;
}
@media (min-width: 1024px) {
  .map::before, .map::after {
    display: block;
  }
}
.map::before {
  left: clamp(1rem, 3vw, 3rem);
}
.map::after {
  right: clamp(1rem, 3vw, 3rem);
  transform: rotate(180deg);
}

.map__container {
  width: 100%;
  height: clamp(300px, 60vw, 500px);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1024px) {
  .map__container {
    height: 780px;
  }
}

.map-marker {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.map-marker img {
  display: block;
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28));
  transition: transform 0.2s ease, filter 0.2s ease;
}
.map-marker:hover img, .map-marker:focus-visible img {
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.32));
}

.map-marker--active {
  width: 80px !important;
  height: 80px !important;
}

.custom-popup .maplibregl-popup-content {
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(26, 13, 38, 0.16);
}
.custom-popup .maplibregl-popup-close-button {
  display: none;
}
.custom-popup .maplibregl-popup-tip {
  border-top-color: #fff;
}
.custom-popup .maplibregl-popup-content {
  margin: 0;
  min-width: min(200px, 100vw - 2rem);
}

.map-popup {
  padding: 1.25rem;
}
.map-popup h3 {
  font-size: 18px;
  font-weight: 500;
  color: #44166A;
  margin: 0 0 0.5rem 0;
}
.map-popup p {
  font-size: 16px;
  color: #2A104F;
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.map-popup__link {
  display: inline-flex;
  align-items: center;
  color: #E82F6E;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s ease;
}
.map-popup__link:hover {
  color: #44166A;
  transform: translateX(4px);
}

/* Main SCSS entry */
.events {
  padding: clamp(3rem, 6vw, 4rem) clamp(2rem, 5vw, 3.5rem);
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
  margin-top: 5rem;
}
@media (min-width: 1024px) {
  .events {
    padding: clamp(1.5rem, 6vw, 4rem) clamp(1rem, 3vw, 3rem);
    margin-top: 0rem;
  }
}
.events h2 {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  line-height: 1.5333;
  font-weight: 700;
}
.events h2::before {
  content: "";
  position: absolute;
  top: -1.35rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.375rem;
  height: 0.75rem;
  background-image: url("../assets/img/vlnka_red.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.events .events__headings {
  display: none;
}
@media (min-width: 1024px) {
  .events .events__headings {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 2rem;
    align-items: end;
    margin-bottom: 1rem;
    padding: 0;
  }
}
.events .events__heading {
  font-size: 14px;
  line-height: 1.5385;
  font-weight: 700;
  text-transform: uppercase;
  color: #E82F6E;
  letter-spacing: 0;
}
.events .events__heading--action {
  min-width: 3rem;
}
.events .events-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.events .events-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.35rem;
  background-image: url("../assets/img/border_events.svg");
  background-repeat: repeat-x;
  background-size: auto 100%;
}
.events .events-list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.35rem;
  background-image: url("../assets/img/border_events.svg");
  background-repeat: repeat-x;
  background-size: auto 100%;
}
.events .events__item {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem) 0;
}
.events .events__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.35rem;
  background-image: url("../assets/img/border_events.svg");
  background-repeat: repeat-x;
  background-size: auto 100%;
}
.events .events__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "what what" "when action" "where action";
  column-gap: 1.5rem;
  row-gap: 1rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .events .events__content {
    grid-template-columns: 2fr 1fr 1fr auto;
    grid-template-areas: none;
    gap: 2rem;
    align-items: start;
  }
}
.events .events__col h4,
.events .events__col .events__heading {
  font-size: 14px;
  line-height: 1.5385;
  font-weight: 700;
  text-transform: uppercase;
  color: #E82F6E;
  margin-bottom: 0.5rem;
  letter-spacing: 0;
}
.events .events__col h3 {
  font-size: 18px;
  line-height: 1.5294;
  font-weight: 700;
  color: #44166A;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0;
}
.events .events__col p {
  font-size: 18px;
  line-height: 1.4118;
  color: #2A104F;
  margin: 0;
}
.events .events__label {
  display: none;
}
.events .events__col--what {
  grid-area: what;
}
@media (min-width: 1024px) {
  .events .events__col--what {
    grid-area: auto;
  }
}
.events .events__col--what p {
  font-weight: 400;
}
.events .events__col--when {
  grid-area: when;
}
@media (min-width: 1024px) {
  .events .events__col--when {
    grid-area: auto;
    padding-top: calc(27.5292px + 0.5rem);
  }
}
.events .events__col--when p {
  font-weight: 400;
}
.events .events__col--where {
  grid-area: where;
}
@media (min-width: 1024px) {
  .events .events__col--where {
    grid-area: auto;
    padding-top: calc(27.5292px + 0.5rem);
  }
}
.events .events__col--where p {
  font-weight: 400;
}
.events .events__col--action {
  grid-area: action;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: center;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .events .events__col--action {
    grid-area: auto;
    align-items: center;
    justify-content: center;
    padding-right: 0;
  }
}
.events .events__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid #E82F6E;
  background: transparent;
  color: #E82F6E;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  flex-shrink: 0;
}
.events .events__arrow svg {
  width: 1.5rem;
  height: 1.5rem;
}
.events .events__arrow:hover {
  background: #E82F6E;
  color: #ffffff;
  transform: scale(1.05);
}

/* Main SCSS entry */
.about {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding: clamp(3rem, 6vw, 4rem) clamp(0rem, 0vw, 3rem) 0px clamp(0rem, 0vw, 3rem);
}
@media (min-width: 1024px) {
  .about {
    padding: clamp(1.5rem, 6vw, 4rem) clamp(1rem, 3vw, 3rem);
    gap: 2rem;
  }
}
.about h2 {
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 2rem;
  font-size: 30px;
  line-height: 1.5333;
  font-weight: 700;
}
.about h2::before {
  content: "";
  position: absolute;
  top: -1.35rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.375rem;
  height: 0.75rem;
  background-image: url("../assets/img/vlnka_red.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 1024px) {
  .about {
    gap: 3rem;
  }
}
.about .about__block {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .about .about__block {
    min-height: 60vh;
  }
}
@media (min-width: 1024px) {
  .about .about__block {
    min-height: 70vh;
  }
}
.about .about__block::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.625rem;
  background-image: url("../assets/img/ss_separator_left.svg");
  background-repeat: repeat-y;
  background-position: center;
  background-size: contain;
  z-index: 3;
  pointer-events: none;
  display: none;
}
@media (min-width: 1024px) {
  .about .about__block::before {
    display: block;
  }
}
.about .about__block::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 0.625rem;
  background-image: url("../assets/img/ss_separator_left.svg");
  background-repeat: repeat-y;
  background-position: center;
  background-size: contain;
  transform: rotate(180deg);
  z-index: 3;
  pointer-events: none;
  display: none;
}
@media (min-width: 1024px) {
  .about .about__block::after {
    display: block;
  }
}
.about .about__image {
  inset: 0;
  z-index: 1;
}
@media (min-width: 1024px) {
  .about .about__image {
    position: absolute;
  }
}
.about .about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about .about__text {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: clamp(2rem, 5vw, 3.5rem);
  width: 100%;
  margin: 0px;
}
@media (min-width: 1024px) {
  .about .about__text {
    margin: 2rem auto;
    width: min(100% - 2rem, 30rem);
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.1);
    max-width: 30rem;
  }
}
@media (min-width: 1024px) {
  .about .about__text {
    width: auto;
    margin: 3rem;
    max-width: 34.375rem;
  }
}
.about .about__text::after {
  content: "";
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 3.5rem;
  height: 3.5rem;
  background-image: url("../assets/img/krajka_about1.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.95;
  pointer-events: none;
}
.about .about__text h3 {
  font-size: 20px;
  color: #261038;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  line-height: 1.3333;
  font-weight: 700;
  letter-spacing: 0;
}
@media (min-width: 1024px) {
  .about .about__text h3 {
    font-size: 32px;
    margin-top: 0;
  }
}
.about .about__text p {
  font-size: 18px;
  line-height: 1.5294;
  color: #2A104F;
  margin: 0;
  max-width: 29ch;
}
.about .about__text p.about__tag {
  display: inline-block;
  font-family: "brother-1816", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #E84363;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 0.625rem;
  max-width: none;
}
.about .about__text--2::after {
  background-image: url("../assets/img/krajka_about2.svg");
}
.about .about__text--3::after {
  background-image: url("../assets/img/krajka_about3.svg");
}
@media (min-width: 1024px) {
  .about .about__block .about__text {
    margin-left: 4rem;
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  .about .about__block--reverse .about__text {
    margin-left: auto;
    margin-right: 4rem;
  }
}

/* Main SCSS entry */
.site-footer {
  position: relative;
  background: #ffffff;
  padding: 0 clamp(2rem, 5vw, 3.5rem) clamp(2rem, 5vw, 4rem);
  padding-top: 7rem;
  margin-top: 0px;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(1rem, 3vw, 3rem);
  right: clamp(1rem, 3vw, 3rem);
  height: 3.75rem;
  background-image: url("../assets/img/banner_foot.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  pointer-events: none;
}
.site-footer .footer__grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 0;
  max-width: 1600px;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .site-footer .footer__grid {
    padding: 0 1.5rem;
  }
}
@media (min-width: 768px) {
  .site-footer .footer__grid {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 4rem);
  }
}
@media (min-width: 1280px) {
  .site-footer .footer__grid {
    flex-wrap: nowrap;
    gap: clamp(2rem, 4vw, 6rem);
  }
}
.site-footer .footer__col {
  flex: 0 1 auto;
  min-width: 0;
}
.site-footer .footer__col h4 {
  font-size: 14px;
  line-height: 1.5385;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #44166A;
  letter-spacing: 0;
}
.site-footer .footer__col p {
  font-size: 16px;
  line-height: 1.5333;
  font-weight: 400;
  color: #44166A;
  margin: 0;
}
.site-footer .footer__col a {
  font-weight: 700;
  color: #44166A;
  transition: color 0.2s ease-in-out;
}
.site-footer .footer__col a:hover {
  color: #E82F6E;
}
.site-footer .footer__col--right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .site-footer .footer__col--right {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-left: auto;
  }
}
@media (min-width: 1024px) {
  .site-footer .footer__col--right {
    flex-wrap: nowrap;
    gap: 2rem;
  }
}
.site-footer .footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .site-footer .footer__contact-info {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .site-footer .footer__contact-info {
    flex-wrap: nowrap;
    gap: 2rem;
  }
}
.site-footer .footer__contact-info a {
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #2A104F;
  text-decoration: none;
  padding: 0.25rem 0.125rem;
  position: relative;
  transition: color 150ms ease;
}
.site-footer .footer__contact-info a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.625rem;
  width: 100%;
  height: 0.75rem;
  background-image: url("../assets/img/hover.svg");
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  transform: translateY(0.25rem);
}
.site-footer .footer__contact-info a:hover, .site-footer .footer__contact-info a:focus {
  color: #E82F6E;
}
.site-footer .footer__contact-info a:hover::after, .site-footer .footer__contact-info a:focus::after, .site-footer .footer__contact-info a:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}
.site-footer .footer__button {
  display: inline-block;
  color: #2A104F;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  padding: 0.25rem 0.125rem;
  position: relative;
  transition: color 150ms ease;
  cursor: pointer;
}
.site-footer .footer__button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.625rem;
  width: 100%;
  height: 0.75rem;
  background-image: url("../assets/img/hover.svg");
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  transform: translateY(0.25rem);
}
.site-footer .footer__button:hover, .site-footer .footer__button:focus {
  color: #6C2A91;
}
.site-footer .footer__button:hover::after, .site-footer .footer__button:focus::after, .site-footer .footer__button:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}
.site-footer .footer__social {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.site-footer .footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: 2px solid #6C2A91;
  background: transparent;
  color: #6C2A91;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.site-footer .footer__social a:hover {
  background: #E82F6E;
  border-color: #E82F6E;
  color: #ffffff;
}
.site-footer .footer__social a svg {
  width: 1.125rem;
  height: 1.125rem;
}
/* Main SCSS entry */
.cta-banner {
  /* Use the decorative SVG as the section background */
  background-color: #44166A; /* fallback */
  background-image: url("../assets/img/eshop_button.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  text-align: center;
  color: #fff;
  padding: clamp(1.5rem, 6vw, 4rem) clamp(1rem, 3vw, 3rem);
  max-width: 1440px;
  margin-inline: auto;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  background-image: url("../assets/img/ss_separator_left.svg");
  background-repeat: repeat-y;
  background-position: center;
  background-size: contain;
  z-index: 2;
  pointer-events: none;
}
.cta-banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 8px;
  background-image: url("../assets/img/ss_separator_left.svg");
  background-repeat: repeat-y;
  background-position: center;
  background-size: contain;
  transform: rotate(180deg);
  z-index: 2;
  pointer-events: none;
}
.cta-banner {
  /* ensure content sits above the separators */
}
.cta-banner > * {
  position: relative;
  z-index: 1;
}
.cta-banner .container {
  position: relative;
}
.cta-banner .container::before {
  content: none;
}
@media (min-width: 1024px) {
  .cta-banner .container::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -1.35rem;
    transform: translateX(-50%);
    width: 1.375rem;
    height: 0.75rem;
    background-image: url("../assets/img/vlnka_red.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}
.cta-banner p {
  font-size: 14px;
  line-height: 1.5385;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 0;
}
.cta-banner .button {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: clamp(20px, 5vw, 30px);
  line-height: 1.2667;
  text-decoration: none;
  padding: 0.25rem 0.125rem;
  background: transparent;
  border: none;
  border-radius: 0;
  position: relative;
  transition: color 150ms ease;
}
.cta-banner .button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.625rem;
  width: 100%;
  height: 0.75rem;
  background-image: url("../assets/img/hover.svg");
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 100%;
  opacity: 1;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  transform: translateY(0);
}
.cta-banner .button::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.625rem;
  width: 100%;
  height: 0.75rem;
  background-image: url("../assets/img/hover.svg");
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 100%;
  filter: brightness(0) invert(1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}
.cta-banner .button:hover, .cta-banner .button:focus {
  color: #E82F6E;
  background: transparent;
}
.cta-banner .button:hover::after, .cta-banner .button:focus::after, .cta-banner .button:focus-visible::after {
  opacity: 0;
  transform: translateY(0);
}
.cta-banner .button:hover::before, .cta-banner .button:focus::before, .cta-banner .button:focus-visible::before {
  opacity: 1;
}

/* Main SCSS entry */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1rem;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.button--primary {
  background: #ffffff;
  color: #E82F6E;
  border: 2px solid #E82F6E;
  border-radius: 0;
}
.button--primary:hover {
  background: #E82F6E;
  color: #ffffff;
  border-color: #E82F6E;
}
.button--secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.button--secondary:hover {
  background: #fff;
  color: #44166A;
  transform: translateY(-1px);
}
.button .button__icon {
  margin-left: 0.5rem;
}
@media (max-width: 768px) {
  .button {
    padding: 0.625rem 1rem;
    min-width: 140px;
    font-size: 14px;
  }
}

/* Main SCSS entry */
.card {
  border: 1px solid #E5E5E5;
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* Page-level styles */
.hero {
  padding-block: clamp(48px, 8vw, 120px);
  background: #F8F7FB;
}

.features {
  padding-block: clamp(32px, 6vw, 96px);
}

/* Global base */
body {
  font-family: "brother-1816", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #2A104F;
  background: #ffffff;
  line-height: 1.6;
}

.container {
  width: 100%;
  margin-inline: auto;
  /*@media (min-width: 768px) {      
    width: min(100% - 2rem, variables.$container-max);
  }*/
}

section {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

section + section {
  margin-top: 0rem;
}
@media (min-width: 768px) {
  section + section {
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  section + section {
    margin-top: 0rem;
  }
}

/*# sourceMappingURL=styles.css.map */
