@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: "Source Sans 3", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #3d3d3a;
  background-color: #f8f6f2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", "Georgia", serif;
  font-weight: 400;
  line-height: 1.2;
  color: #1a1a2e;
}

h1 {
  font-size: clamp(2rem, 5vw, 60px);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 40px);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 28px);
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
  font-weight: 600;
}

h6 {
  font-size: 13px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #d4af6a;
  text-decoration: none;
  transition: color 150ms ease;
}
a:hover {
  color: #e8cc8e;
}
a:focus-visible {
  outline: 2px solid #d4af6a;
  outline-offset: 3px;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
button:focus-visible {
  outline: 2px solid #d4af6a;
  outline-offset: 3px;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #d4af6a;
  outline-offset: 3px;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1280px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.section-label {
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d4af6a;
  margin-bottom: 16px;
}

.gold-line {
  display: block;
  width: 48px;
  height: 2px;
  background: #d4af6a;
  margin: 16px 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}
@media (prefers-reduced-motion: reduce) {
  .animate-fade-in-up {
    animation: none;
  }
}

:lang(ru) h1, :lang(ru) h2, :lang(ru) h3, :lang(ru) h4, :lang(ru) h5, :lang(ru) h6 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
}
:lang(ru) p, :lang(ru) li, :lang(ru) .vita-text {
  line-height: 1.85;
}

.lang-switch a[hreflang=ru],
.lang-switch button[data-lang=ru] {
  font-family: "Source Sans 3", sans-serif;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(24px / -2);
}

[class*=col-] {
  padding: 0 calc(24px / 2);
  width: 100%;
}

.col-1 {
  width: 8.3333333333%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    width: 8.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-md-1 {
    width: 8.3333333333%;
  }
}

@media (min-width: 1024px) {
  .col-lg-1 {
    width: 8.3333333333%;
  }
}

@media (min-width: 1280px) {
  .col-xl-1 {
    width: 8.3333333333%;
  }
}

.col-2 {
  width: 16.6666666667%;
}

@media (min-width: 576px) {
  .col-sm-2 {
    width: 16.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-md-2 {
    width: 16.6666666667%;
  }
}

@media (min-width: 1024px) {
  .col-lg-2 {
    width: 16.6666666667%;
  }
}

@media (min-width: 1280px) {
  .col-xl-2 {
    width: 16.6666666667%;
  }
}

.col-3 {
  width: 25%;
}

@media (min-width: 576px) {
  .col-sm-3 {
    width: 25%;
  }
}

@media (min-width: 768px) {
  .col-md-3 {
    width: 25%;
  }
}

@media (min-width: 1024px) {
  .col-lg-3 {
    width: 25%;
  }
}

@media (min-width: 1280px) {
  .col-xl-3 {
    width: 25%;
  }
}

.col-4 {
  width: 33.3333333333%;
}

@media (min-width: 576px) {
  .col-sm-4 {
    width: 33.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-md-4 {
    width: 33.3333333333%;
  }
}

@media (min-width: 1024px) {
  .col-lg-4 {
    width: 33.3333333333%;
  }
}

@media (min-width: 1280px) {
  .col-xl-4 {
    width: 33.3333333333%;
  }
}

.col-5 {
  width: 41.6666666667%;
}

@media (min-width: 576px) {
  .col-sm-5 {
    width: 41.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-md-5 {
    width: 41.6666666667%;
  }
}

@media (min-width: 1024px) {
  .col-lg-5 {
    width: 41.6666666667%;
  }
}

@media (min-width: 1280px) {
  .col-xl-5 {
    width: 41.6666666667%;
  }
}

.col-6 {
  width: 50%;
}

@media (min-width: 576px) {
  .col-sm-6 {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-6 {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .col-lg-6 {
    width: 50%;
  }
}

@media (min-width: 1280px) {
  .col-xl-6 {
    width: 50%;
  }
}

.col-7 {
  width: 58.3333333333%;
}

@media (min-width: 576px) {
  .col-sm-7 {
    width: 58.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-md-7 {
    width: 58.3333333333%;
  }
}

@media (min-width: 1024px) {
  .col-lg-7 {
    width: 58.3333333333%;
  }
}

@media (min-width: 1280px) {
  .col-xl-7 {
    width: 58.3333333333%;
  }
}

.col-8 {
  width: 66.6666666667%;
}

@media (min-width: 576px) {
  .col-sm-8 {
    width: 66.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-md-8 {
    width: 66.6666666667%;
  }
}

@media (min-width: 1024px) {
  .col-lg-8 {
    width: 66.6666666667%;
  }
}

@media (min-width: 1280px) {
  .col-xl-8 {
    width: 66.6666666667%;
  }
}

.col-9 {
  width: 75%;
}

@media (min-width: 576px) {
  .col-sm-9 {
    width: 75%;
  }
}

@media (min-width: 768px) {
  .col-md-9 {
    width: 75%;
  }
}

@media (min-width: 1024px) {
  .col-lg-9 {
    width: 75%;
  }
}

@media (min-width: 1280px) {
  .col-xl-9 {
    width: 75%;
  }
}

.col-10 {
  width: 83.3333333333%;
}

@media (min-width: 576px) {
  .col-sm-10 {
    width: 83.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-md-10 {
    width: 83.3333333333%;
  }
}

@media (min-width: 1024px) {
  .col-lg-10 {
    width: 83.3333333333%;
  }
}

@media (min-width: 1280px) {
  .col-xl-10 {
    width: 83.3333333333%;
  }
}

.col-11 {
  width: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm-11 {
    width: 91.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-md-11 {
    width: 91.6666666667%;
  }
}

@media (min-width: 1024px) {
  .col-lg-11 {
    width: 91.6666666667%;
  }
}

@media (min-width: 1280px) {
  .col-xl-11 {
    width: 91.6666666667%;
  }
}

.col-12 {
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm-12 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-12 {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .col-lg-12 {
    width: 100%;
  }
}

@media (min-width: 1280px) {
  .col-xl-12 {
    width: 100%;
  }
}

.section {
  padding: 64px 0;
}
@media (min-width: 1024px) {
  .section {
    padding: 96px 0;
  }
}
.section--sm {
  padding: 40px 0;
}
.section--lg {
  padding: 96px 0;
}

.mod_article .inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .mod_article .inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1280px) {
  .mod_article .inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

#wrapper {
  min-height: calc(100vh - 56px);
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  #wrapper {
    min-height: calc(100vh - 72px);
  }
}

#container {
  flex: 1 0 auto;
}

#main {
  flex: 1;
}

.text-center {
  text-align: center;
}

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

.text-right {
  text-align: right;
}

.mt-auto {
  margin-top: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hidden-desktop {
    display: none !important;
  }
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: #1a1a2e;
  height: 56px;
  transition: background 300ms ease, box-shadow 300ms ease;
}
@media (min-width: 1024px) {
  #header {
    height: 72px;
  }
}
#header.scrolled {
  background: rgba(26, 26, 46, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
#header > .inside {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  #header > .inside {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1280px) {
  #header > .inside {
    padding-left: 40px;
    padding-right: 40px;
  }
}
#header > .inside {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
}
#header > .inside .mod_navigation {
  flex: 1;
}
#header > .inside .mod_changelanguage {
  order: 9;
}
#header > .inside .navbar__burger {
  order: 10;
  margin-left: auto;
}
#header .content-text {
  display: none;
}

.navbar__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 150ms ease;
}
.navbar__logo img {
  display: block;
  width: auto;
  height: 36px;
}
@media (min-width: 1024px) {
  .navbar__logo img {
    height: 48px;
  }
}
.navbar__logo:not(:has(img)) {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.25rem;
  color: #d4af6a;
  letter-spacing: 0.05em;
  line-height: 1;
}
.navbar__logo:hover {
  opacity: 0.8;
}

a.invisible,
span.invisible {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mod_navigation {
  display: none;
}
@media (min-width: 1024px) {
  .mod_navigation {
    display: flex;
    align-items: center;
  }
}
.mod_navigation ul.level_1 {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mod_navigation li {
  position: relative;
}
.mod_navigation li a {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 150ms ease, border-color 150ms ease;
}
.mod_navigation li a:hover {
  color: #d4af6a;
  border-bottom-color: #d4af6a;
}
.mod_navigation li strong {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d4af6a;
  padding: 4px 0;
  border-bottom: 1px solid #d4af6a;
}
.mod_navigation li.trail > a {
  color: #d4af6a;
  border-bottom-color: #d4af6a;
}
.mod_navigation ul.level_2 {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #1a1a2e;
  border-top: 2px solid #d4af6a;
  min-width: 200px;
  padding: 8px 0;
  list-style: none;
  box-shadow: 0 8px 32px rgba(26, 26, 46, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease, transform 150ms ease;
  transform: translateY(-4px);
  z-index: 100;
}
.mod_navigation ul.level_2 li a {
  padding: 8px 24px;
  border-bottom: none;
  white-space: nowrap;
}
.mod_navigation ul.level_2 li a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #d4af6a;
  border-bottom: none;
}
.mod_navigation li:hover > ul.level_2 {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mod_changelanguage {
  flex-shrink: 0;
  display: none;
}
@media (min-width: 1024px) {
  .mod_changelanguage {
    display: block;
  }
}
.mobile-menu .mod_changelanguage {
  display: block;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .mod_changelanguage ul.level_1 {
  gap: 8px;
}
.mobile-menu .mod_changelanguage a, .mobile-menu .mod_changelanguage strong {
  font-size: 13px;
  padding: 6px 14px;
}
.mod_changelanguage ul.level_1 {
  display: flex;
  flex-direction: row;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mod_changelanguage li {
  display: flex;
  align-items: center;
}
.mod_changelanguage a {
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 150ms ease;
}
.mod_changelanguage a:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}
.mod_changelanguage strong {
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d4af6a;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 106, 0.4);
}
.mobile-menu .mod_changelanguage {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .mod_changelanguage ul.level_1 {
  gap: 8px;
}
.mobile-menu .mod_changelanguage a, .mobile-menu .mod_changelanguage strong {
  font-size: 13px;
  padding: 6px 14px;
}

.navbar__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .navbar__burger {
    display: none;
  }
}
.navbar__burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 300ms ease, opacity 300ms ease;
  transform-origin: center;
}
.navbar__burger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.navbar__burger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.navbar__burger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 299;
  background: #1a1a2e;
  overflow-y: auto;
  padding: 40px 24px;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu.is-open {
  display: flex;
  animation: fadeIn 0.2s ease;
}
.mobile-menu .mod_navigation {
  display: block;
}
.mobile-menu .mod_navigation ul.level_1 {
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}
.mobile-menu .mod_navigation li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu .mod_navigation li a, .mobile-menu .mod_navigation li strong {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 28px;
  color: #ffffff;
  padding: 16px 0;
  letter-spacing: 0;
  text-transform: none;
  border-bottom: none;
}
.mobile-menu .mod_navigation li a:hover, .mobile-menu .mod_navigation li.active strong {
  color: #d4af6a;
}

body {
  padding-top: 56px;
}
@media (min-width: 1024px) {
  body {
    padding-top: 72px;
  }
}

.content-swiper {
  position: relative;
  width: 100%;
  height: 260px;
  background: #0f0f1e;
  overflow: hidden;
}
@media (min-width: 768px) {
  .content-swiper {
    height: 380px;
  }
}
@media (min-width: 1024px) {
  .content-swiper {
    height: 520px;
  }
}
.content-swiper .swiper {
  width: 100%;
  height: 100%;
}
.content-swiper .swiper-wrapper {
  height: 100%;
}
.content-swiper .swiper-slide {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.content-swiper .swiper-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.content-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 15, 30, 0.2) 0%, rgba(15, 15, 30, 0.5) 60%, rgba(15, 15, 30, 0.8) 100%);
  pointer-events: none;
  z-index: 1;
}
.content-swiper .swiper-slide .content-text,
.content-swiper .swiper-slide .rte {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.content-swiper .swiper-slide .content-text p, .content-swiper .swiper-slide .content-text h1, .content-swiper .swiper-slide .content-text h2, .content-swiper .swiper-slide .content-text h3,
.content-swiper .swiper-slide .rte p,
.content-swiper .swiper-slide .rte h1,
.content-swiper .swiper-slide .rte h2,
.content-swiper .swiper-slide .rte h3 {
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  margin: 0;
}
.content-swiper .swiper-slide .content-text h1, .content-swiper .swiper-slide .content-text h2,
.content-swiper .swiper-slide .rte h1,
.content-swiper .swiper-slide .rte h2 {
  font-family: "Playfair Display", "Georgia", serif;
  font-weight: 400;
  line-height: 1.2;
  font-size: clamp(1.8rem, 5vw, 60px);
  margin-bottom: 8px;
}
.content-swiper .swiper-slide .content-text p,
.content-swiper .swiper-slide .rte p {
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.75);
}
.content-swiper .swiper-button-prev,
.content-swiper .swiper-button-next {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  margin-top: -24px !important;
  border-radius: 50% !important;
  background-color: rgba(26, 26, 46, 0.5) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(4px);
  transition: background-color 150ms ease, border-color 150ms ease;
  outline: none !important;
}
.content-swiper .swiper-button-prev .swiper-navigation-icon,
.content-swiper .swiper-button-next .swiper-navigation-icon {
  width: 12px !important;
  height: 20px !important;
  color: #ffffff !important;
  transition: color 150ms ease;
}
.content-swiper .swiper-button-prev .swiper-navigation-icon path,
.content-swiper .swiper-button-next .swiper-navigation-icon path {
  fill: currentColor !important;
}
.content-swiper .swiper-button-prev:hover,
.content-swiper .swiper-button-next:hover {
  background-color: #d4af6a !important;
  border-color: #d4af6a !important;
}
.content-swiper .swiper-button-prev:hover .swiper-navigation-icon,
.content-swiper .swiper-button-next:hover .swiper-navigation-icon {
  color: #1a1a2e !important;
}
.content-swiper .swiper-button-prev:focus, .content-swiper .swiper-button-prev:focus-visible,
.content-swiper .swiper-button-next:focus,
.content-swiper .swiper-button-next:focus-visible {
  outline: none !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3) !important;
}
@media (min-width: 1024px) {
  .content-swiper .swiper-button-prev,
  .content-swiper .swiper-button-next {
    width: 56px !important;
    height: 56px !important;
    margin-top: -28px !important;
  }
  .content-swiper .swiper-button-prev .swiper-navigation-icon,
  .content-swiper .swiper-button-next .swiper-navigation-icon {
    width: 14px !important;
    height: 24px !important;
  }
}
.content-swiper .swiper-button-prev {
  left: 16px !important;
}
@media (min-width: 1024px) {
  .content-swiper .swiper-button-prev {
    left: 40px !important;
  }
}
.content-swiper .swiper-button-next {
  right: 16px !important;
}
@media (min-width: 1024px) {
  .content-swiper .swiper-button-next {
    right: 40px !important;
  }
}
.content-swiper .swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.content-swiper .swiper-pagination {
  bottom: 24px !important;
}
.content-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  margin: 0 4px !important;
  transition: all 300ms ease;
}
.content-swiper .swiper-pagination .swiper-pagination-bullet:hover {
  background: rgba(212, 175, 106, 0.7);
  transform: scale(1.3);
}
.content-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #d4af6a !important;
  transform: scale(1.4);
  box-shadow: 0 0 6px rgba(212, 175, 106, 0.5);
}

.mod_eventlist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .mod_eventlist {
    padding: 0;
  }
}
.mod_eventlist > .header {
  margin-top: 40px;
  padding-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.mod_eventlist > .header::before, .mod_eventlist > .header::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(212, 175, 106, 0.25);
}
.mod_eventlist > .header:first-child {
  margin-top: 0;
}
.mod_eventlist > .header .day {
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d4af6a;
}
.mod_eventlist > .header .date {
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #aaa9a3;
}
.mod_eventlist .event {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(26, 26, 46, 0.12);
  padding: 24px;
  transition: box-shadow 300ms ease, transform 300ms ease;
}
.mod_eventlist .event:hover {
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.12);
  transform: translateY(-2px);
}
.mod_eventlist .event {
  padding: 24px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.mod_eventlist .event .event-badge {
  min-width: 72px;
  text-align: center;
  background: #1a1a2e;
  border-radius: 8px;
  padding: 16px 4px;
  flex-shrink: 0;
}
.mod_eventlist .event .event-badge__day {
  display: block;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 32px;
  color: #d4af6a;
  line-height: 1;
}
.mod_eventlist .event .event-badge__month {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
}
.mod_eventlist .event .event-content {
  flex: 1;
  min-width: 0;
}
.mod_eventlist .event h2 {
  font-size: 20px;
  margin-bottom: 4px;
}
.mod_eventlist .event h2 a {
  color: #1a1a2e;
  text-decoration: none;
  transition: color 150ms ease;
}
.mod_eventlist .event h2 a:hover {
  color: #d4af6a;
}
.mod_eventlist .event .time {
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #d4af6a;
  margin-bottom: 4px;
}
.mod_eventlist .event .time time {
  font-variant-numeric: tabular-nums;
}
.mod_eventlist .event .location {
  font-size: 16px;
  color: #888780;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.mod_eventlist .event .location::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  background: #d4af6a;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 21s-7-7.5-7-12a7 7 0 0 1 14 0c0 4.5-7 12-7 12z'/%3E%3Ccircle cx='12' cy='9' r='2.5'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 21s-7-7.5-7-12a7 7 0 0 1 14 0c0 4.5-7 12-7 12z'/%3E%3Ccircle cx='12' cy='9' r='2.5'/%3E%3C/svg%3E") no-repeat center/contain;
}
.mod_eventlist .event .ce_text {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 16px;
  line-height: 1.7;
  color: #888780;
}
.mod_eventlist .event .ce_text p {
  margin: 0;
}
.mod_eventlist .event .ce_text:empty {
  display: none;
}
.mod_eventlist .event:not(.upcoming) {
  opacity: 0.55;
}
.mod_eventlist .event:not(.upcoming) h2 a {
  color: #aaa9a3;
}
.mod_eventlist .event:not(.upcoming) .event-badge {
  background: #aaa9a3;
}
.mod_eventlist .event:not(.upcoming) .event-badge__day {
  color: rgba(255, 255, 255, 0.6);
}

.mod_booknav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 720px;
  margin: 64px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(26, 26, 46, 0.12);
}
.mod_booknav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mod_booknav li.up a, .mod_booknav li.up span {
  font-size: 11px;
  color: #aaa9a3;
  text-decoration: none;
}
.mod_booknav li.empty {
  visibility: hidden;
}
.mod_booknav li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a2e;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(26, 26, 46, 0.12);
  transition: all 150ms ease;
}
.mod_booknav li a:hover {
  border-color: #d4af6a;
  color: #b08d45;
  background: rgba(212, 175, 106, 0.06);
}
.mod_booknav li.previous a::before {
  content: "←";
  font-size: 0.9em;
}
.mod_booknav li.next a::after {
  content: "→";
  font-size: 0.9em;
}

.mod_calendar {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(26, 26, 46, 0.12);
  overflow: hidden;
}
.mod_calendar .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1a1a2e;
  padding: 8px 16px;
  color: #ffffff;
}
.mod_calendar .header strong {
  font-family: "Playfair Display", "Georgia", serif;
  font-weight: 400;
}
.mod_calendar .header a {
  color: #d4af6a;
  font-size: 1.2em;
}
.mod_calendar table {
  width: 100%;
  border-collapse: collapse;
}
.mod_calendar table th {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #aaa9a3;
  text-align: center;
  padding: 8px;
}
.mod_calendar table td {
  text-align: center;
  padding: 6px;
}
.mod_calendar table td a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 13px;
  color: #1a1a2e;
  font-weight: 500;
  background: rgba(212, 175, 106, 0.15);
}
.mod_calendar table td a:hover {
  background: #d4af6a;
  color: #1a1a2e;
}
.mod_calendar table td.today a {
  background: #1a1a2e;
  color: #d4af6a;
}
.mod_calendar table td.active a {
  background: #d4af6a;
  color: #1a1a2e;
  box-shadow: 0 4px 20px rgba(212, 175, 106, 0.25);
}

.section--vita {
  padding: 64px 0;
  background: #1a1a2e;
}
.section--vita .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 1024px) {
  .section--vita .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.section--vita .vita__image {
  position: relative;
}
.section--vita .vita__image img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.section--vita .vita__image::before {
  content: "";
  position: absolute;
  inset: -8px -8px auto auto;
  width: 60%;
  height: 60%;
  border-top: 2px solid #d4af6a;
  border-right: 2px solid #d4af6a;
  border-radius: 0 12px 0 0;
  z-index: -1;
}
.section--vita .vita__text .section-label {
  color: #d4af6a;
}
.section--vita .vita__text h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #ffffff;
  margin-bottom: 24px;
}
.section--vita .vita__text h2 span {
  color: #d4af6a;
}
.section--vita .vita__text p {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}
.section--vita .vita__awards {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section--vita .vita__awards .award-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid #d4af6a;
  border-radius: 0 4px 4px 0;
}
.section--vita .vita__awards .award-item .award-item__icon {
  color: #d4af6a;
  font-size: 18px;
  flex-shrink: 0;
}
.section--vita .vita__awards .award-item .award-item__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.section--vita .vita__awards .award-item .award-item__text strong {
  display: block;
  color: #ffffff;
  font-weight: 500;
}
.section--vita .vita__instruments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}
.section--vita .vita__instruments .instrument-tag {
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 106, 0.4);
  color: #d4af6a;
  background: rgba(212, 175, 106, 0.06);
}

.section--discography {
  padding: 64px 0;
  background: #f0ece4;
}
.section--discography .discography-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 576px) {
  .section--discography .discography-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1280px) {
  .section--discography .discography-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.section--discography .cd-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(26, 26, 46, 0.12);
  padding: 24px;
  transition: box-shadow 300ms ease, transform 300ms ease;
}
.section--discography .cd-card:hover {
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.12);
  transform: translateY(-2px);
}
.section--discography .cd-card {
  overflow: hidden;
}
.section--discography .cd-card .cd-card__cover {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2a1f4f, #0f0f1e);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.section--discography .cd-card .cd-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.section--discography .cd-card .cd-card__cover:hover img {
  transform: scale(1.05);
}
.section--discography .cd-card .cd-card__cover .cd-card__play {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 300ms ease;
}
.section--discography .cd-card .cd-card__cover .cd-card__play .play-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #d4af6a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a2e;
  font-size: 20px;
}
.section--discography .cd-card .cd-card__cover:hover .cd-card__play {
  opacity: 1;
}
.section--discography .cd-card .cd-card__cover .cd-card__label {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: #d4af6a;
  color: #1a1a2e;
  letter-spacing: 0.5px;
}
.section--discography .cd-card .cd-card__info h3 {
  font-size: 20px;
  color: #1a1a2e;
  margin-bottom: 4px;
}
.section--discography .cd-card .cd-card__info .cd-card__composer {
  font-size: 13px;
  color: #888780;
  font-style: italic;
  margin-bottom: 4px;
}
.section--discography .cd-card .cd-card__info .cd-card__year {
  font-size: 11px;
  color: #d4af6a;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.section--discography .cd-card .cd-card__info .cd-card__description {
  margin-top: 8px;
  font-size: 13px;
  color: #888780;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.section--discography .cd-card .cd-card__streams {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 26, 46, 0.12);
}
.section--discography .cd-card .cd-card__streams a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid currentColor;
  text-decoration: none;
  transition: all 150ms ease;
  letter-spacing: 0.5px;
}
.section--discography .cd-card .cd-card__streams a.stream--spotify {
  color: #1db954;
}
.section--discography .cd-card .cd-card__streams a.stream--spotify:hover {
  background: #1db954;
  color: #fff;
  border-color: #1db954;
}
.section--discography .cd-card .cd-card__streams a.stream--apple {
  color: #fa243c;
}
.section--discography .cd-card .cd-card__streams a.stream--apple:hover {
  background: #fa243c;
  color: #fff;
  border-color: #fa243c;
}
.section--discography .cd-card .cd-card__streams a.stream--amazon {
  color: #00a8e1;
}
.section--discography .cd-card .cd-card__streams a.stream--amazon:hover {
  background: #00a8e1;
  color: #fff;
  border-color: #00a8e1;
}
.section--discography .cd-card .cd-card__streams a.stream--youtube {
  color: #ff0000;
}
.section--discography .cd-card .cd-card__streams a.stream--youtube:hover {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}

.section--contact {
  padding: 64px 0;
  background: #f8f6f2;
}
.section--contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .section--contact .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.section--contact .contact-info .contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.section--contact .contact-info .contact-item .contact-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 106, 0.1);
  border: 1px solid rgba(212, 175, 106, 0.25);
  color: #d4af6a;
  font-size: 18px;
  flex-shrink: 0;
}
.section--contact .contact-info .contact-item .contact-item__text .label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #aaa9a3;
  margin-bottom: 3px;
}
.section--contact .contact-info .contact-item .contact-item__text a, .section--contact .contact-info .contact-item .contact-item__text span {
  font-size: 16px;
  color: #3d3d3a;
  text-decoration: none;
}
.section--contact .contact-info .contact-item .contact-item__text a:hover, .section--contact .contact-info .contact-item .contact-item__text span:hover {
  color: #d4af6a;
}
.section--contact .ce_form {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(26, 26, 46, 0.12);
  padding: 40px;
}
.section--contact .ce_form .formbody {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section--contact .ce_form .widget {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.section--contact .ce_form .widget label {
  font-size: 13px;
  font-weight: 500;
  color: #3d3d3a;
  letter-spacing: 0.3px;
}
.section--contact .ce_form .widget input[type=text],
.section--contact .ce_form .widget input[type=email],
.section--contact .ce_form .widget input[type=tel],
.section--contact .ce_form .widget textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(26, 26, 46, 0.12);
  border-radius: 8px;
  background: #f8f6f2;
  font-size: 16px;
  color: #3d3d3a;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.section--contact .ce_form .widget input[type=text]:focus,
.section--contact .ce_form .widget input[type=email]:focus,
.section--contact .ce_form .widget input[type=tel]:focus,
.section--contact .ce_form .widget textarea:focus {
  outline: none;
  border-color: #d4af6a;
  box-shadow: 0 0 0 3px rgba(212, 175, 106, 0.12);
}
.section--contact .ce_form .widget input[type=text]::placeholder,
.section--contact .ce_form .widget input[type=email]::placeholder,
.section--contact .ce_form .widget input[type=tel]::placeholder,
.section--contact .ce_form .widget textarea::placeholder {
  color: #aaa9a3;
}
.section--contact .ce_form .widget textarea {
  min-height: 140px;
  resize: vertical;
}
.section--contact .ce_form .submit_container {
  margin-top: 8px;
}
.section--contact .ce_form .submit_container button[type=submit] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: #d4af6a;
  color: #1a1a2e;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}
.section--contact .ce_form .submit_container button[type=submit]:hover {
  background: #e8cc8e;
  box-shadow: 0 4px 20px rgba(212, 175, 106, 0.25);
  transform: translateY(-1px);
}
.section--contact .ce_form .submit_container button[type=submit]:active {
  background: #b08d45;
  transform: translateY(0);
}
.section--contact .ce_form .submit_container button[type=submit] {
  width: 100%;
  justify-content: center;
}

.social-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 600;
  display: none;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 1280px) {
  .social-bar {
    display: flex;
  }
}
.social-bar .social-bar__item {
  position: relative;
  display: flex;
  align-items: center;
}
.social-bar .social-bar__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #1a1a2e;
  border-left: 3px solid transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 17px;
  text-decoration: none;
  transition: all 300ms ease;
}
.social-bar .social-bar__item a:hover {
  color: #ffffff;
  width: 52px;
}
.social-bar .social-bar__item[data-platform=spotify] a:hover {
  background: rgb(20.475, 20.475, 36.225);
  border-left-color: #1db954;
  color: #1db954;
}
.social-bar .social-bar__item[data-platform=apple] a:hover {
  background: rgb(20.475, 20.475, 36.225);
  border-left-color: #fa243c;
  color: #fa243c;
}
.social-bar .social-bar__item[data-platform=amazon] a:hover {
  background: rgb(20.475, 20.475, 36.225);
  border-left-color: #00a8e1;
  color: #00a8e1;
}
.social-bar .social-bar__item[data-platform=youtube] a:hover {
  background: rgb(20.475, 20.475, 36.225);
  border-left-color: #ff0000;
  color: #ff0000;
}
.social-bar .social-bar__item[data-platform=instagram] a:hover {
  background: rgb(20.475, 20.475, 36.225);
  border-left-color: #e1306c;
  color: #e1306c;
}
.social-bar .social-bar__item[data-platform=facebook] a:hover {
  background: rgb(20.475, 20.475, 36.225);
  border-left-color: #1877f2;
  color: #1877f2;
}
.social-bar .social-bar__item .social-bar__label {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a2e;
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 4px 0 0 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease, transform 150ms ease;
  transform: translateY(-50%) translateX(4px);
}
.social-bar .social-bar__item:hover .social-bar__label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.social-bar .social-bar__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 4px 0;
}

.social-strip {
  background: #1a1a2e;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.social-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.social-strip .social-strip__label {
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.social-strip .social-strip__links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.social-strip .social-strip__links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
  transition: all 150ms ease;
}
.social-strip .social-strip__links a i {
  font-size: 15px;
}
.social-strip .social-strip__links a:hover {
  border-color: currentColor;
  transform: translateY(-2px);
}
.social-strip .social-strip__links a[data-platform=spotify]:hover {
  color: #1db954;
  background: rgba(29, 185, 84, 0.08);
}
.social-strip .social-strip__links a[data-platform=apple]:hover {
  color: #fa243c;
  background: rgba(250, 36, 60, 0.08);
}
.social-strip .social-strip__links a[data-platform=amazon]:hover {
  color: #00a8e1;
  background: rgba(0, 168, 225, 0.08);
}
.social-strip .social-strip__links a[data-platform=youtube]:hover {
  color: #ff0000;
  background: rgba(255, 0, 0, 0.08);
}
.social-strip .social-strip__links a[data-platform=instagram]:hover {
  color: #e1306c;
  background: rgba(225, 48, 108, 0.08);
}
.social-strip .social-strip__links a[data-platform=facebook]:hover {
  color: #1877f2;
  background: rgba(24, 119, 242, 0.08);
}
@media (max-width: 767px) {
  .social-strip .container {
    justify-content: center;
  }
  .social-strip .social-strip__label {
    text-align: center;
    width: 100%;
  }
  .social-strip .social-strip__links {
    justify-content: center;
  }
}

.content-toplink {
  display: contents;
}

a[data-toplink] {
  position: fixed !important;
  bottom: 40px;
  right: 24px;
  z-index: 600;
  -webkit-transform: translateZ(0);
  will-change: transform;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1a1a2e;
  border: 1px solid rgba(212, 175, 106, 0.35);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 300ms ease, transform 300ms ease, background 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
  font-size: 0 !important;
  color: transparent !important;
  line-height: 0;
  overflow: hidden;
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  a[data-toplink] {
    transition: opacity 150ms ease;
    transform: none;
  }
}
a[data-toplink].is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
a[data-toplink]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-left: 2px solid #d4af6a;
  border-top: 2px solid #d4af6a;
  transform: translate(-50%, -30%) rotate(45deg);
  transition: border-color 150ms ease;
}
a[data-toplink]:hover {
  background: #d4af6a;
  box-shadow: 0 4px 20px rgba(212, 175, 106, 0.25);
  border-color: #d4af6a;
  transform: translateY(-3px);
}
a[data-toplink]:hover::before {
  border-color: #1a1a2e;
}
a[data-toplink].is-visible:hover {
  transform: translateY(-3px);
}
a[data-toplink]:active {
  transform: translateY(0);
}
a[data-toplink]:focus, a[data-toplink]:focus-visible {
  outline: 2px solid #d4af6a;
  outline-offset: 3px;
}
@media (min-width: 1024px) {
  a[data-toplink] {
    width: 52px;
    height: 52px;
    right: 40px;
    bottom: 40px;
  }
}

#footer {
  background: #0f0f1e;
  padding: 40px 0;
}
#footer > .inside {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  #footer > .inside {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1280px) {
  #footer > .inside {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.footer-nav ul.level_1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
@media (min-width: 576px) {
  .footer-nav ul.level_1 {
    gap: 24px;
  }
}
.footer-nav li {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 576px) {
  .footer-nav li {
    gap: 24px;
  }
}
.footer-nav li:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
}
@media (min-width: 576px) {
  .footer-nav li:not(:last-child)::after {
    height: 14px;
  }
}
.footer-nav a,
.footer-nav strong {
  font-family: "Source Sans 3", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 150ms ease;
  white-space: nowrap;
}
@media (min-width: 576px) {
  .footer-nav a,
  .footer-nav strong {
    font-size: 11px;
    letter-spacing: 0.15em;
  }
}
.footer-nav a:hover,
.footer-nav strong:hover {
  color: #d4af6a;
}
@media (max-width: 360px) {
  .footer-nav ul.level_1 {
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav li:not(:last-child)::after {
    display: none;
  }
}
.footer-nav strong,
.footer-nav a.active,
.footer-nav a.trail {
  color: #d4af6a;
}

.cd-card__cover--placeholder {
  background: linear-gradient(135deg, #2a1f4f, #0f0f1e);
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.cd-card__cover--placeholder .placeholder-icon {
  font-size: 3rem;
  color: rgba(212, 175, 106, 0.3);
  font-family: "Playfair Display", "Georgia", serif;
}
.cd-card__cover--placeholder a {
  display: flex;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.cd-card__info h3 a {
  color: #1a1a2e;
  text-decoration: none;
  transition: color 150ms ease;
}
.cd-card__info h3 a:hover {
  color: #d4af6a;
}

[data-streams] {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 26, 46, 0.12);
}
[data-streams] a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid currentColor;
  text-decoration: none;
  transition: all 150ms ease;
  letter-spacing: 0.5px;
}
[data-streams] a::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
[data-streams] a[data-platform=spotify] {
  color: #1db954;
}
[data-streams] a[data-platform=spotify]:hover {
  background: #1db954;
  color: #fff;
  border-color: #1db954;
}
[data-streams] a[data-platform=apple] {
  color: #fa243c;
}
[data-streams] a[data-platform=apple]:hover {
  background: #fa243c;
  color: #fff;
  border-color: #fa243c;
}
[data-streams] a[data-platform=amazon] {
  color: #00a8e1;
}
[data-streams] a[data-platform=amazon]:hover {
  background: #00a8e1;
  color: #fff;
  border-color: #00a8e1;
}
[data-streams] a[data-platform=youtube] {
  color: #ff0000;
}
[data-streams] a[data-platform=youtube]:hover {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}

.stream--detail {
  font-size: 13px;
  color: #d4af6a;
  text-decoration: none;
  font-weight: 500;
  transition: color 150ms ease;
}
.stream--detail:hover {
  color: #e8cc8e;
}

.cd-card__back {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(26, 26, 46, 0.12);
}
.cd-card__back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  background: transparent;
  color: #d4af6a;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #d4af6a;
  border-radius: 999px;
  cursor: pointer;
  transition: all 150ms ease;
}
.cd-card__back a:hover {
  background: #d4af6a;
  color: #1a1a2e;
}

.cd-card--full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 64px auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .cd-card--full {
    grid-template-columns: 320px 1fr;
    align-items: start;
  }
}
.cd-card--full .cd-card__cover {
  margin-bottom: 0;
}
.cd-card--full .cd-card__cover img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(26, 26, 46, 0.18);
}
.cd-card--full .cd-card__title {
  font-family: "Playfair Display", "Georgia", serif;
  font-weight: 400;
  line-height: 1.2;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: #1a1a2e;
  margin-bottom: 8px;
}
.cd-card--full .cd-card__text {
  margin-top: 24px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #888780;
}

.discography-pagination {
  text-align: center;
  margin-top: 64px;
}
.discography-pagination .pagination {
  display: inline-flex;
  gap: 4px;
  list-style: none;
}
.discography-pagination .pagination li a,
.discography-pagination .pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: #888780;
  border: 1px solid rgba(26, 26, 46, 0.12);
  transition: all 150ms ease;
}
.discography-pagination .pagination li.active span,
.discography-pagination .pagination li a:hover {
  background: #1a1a2e;
  color: #d4af6a;
  border-color: #1a1a2e;
}

/*# sourceMappingURL=main.css.map */

