:root {
  --bg: #0b0b0c;
  --accent: #d4af6a;
  --text: #f5f2eb;
}

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

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: clip;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

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

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:focus {
  outline: none;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0%;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  height: 100%;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}

.header {
  z-index: 1000;
  background: rgba(11, 11, 12, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 106, 0.18);
}

.header__container {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.logo__top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
}

.logo__line {
  width: 84px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--accent),
    transparent
  );
  opacity: 0.85;
}

.logo__name {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  line-height: 0.95;
  color: var(--text);
  letter-spacing: 0.01em;
  font-weight: 200;
  margin-top: -10px;
  display: block;
}

.nav {
  margin-left: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 30px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  transition: 0.3s ease;
}

.header__btn:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 24px rgba(212, 175, 106, 0.18);
}

.hero-space {
  height: 140px;
}

@media (max-width: 991px) {
  .nav,
  .header__btn {
    display: none;
  }

  .burger {
    display: flex;
  }

  .logo__name {
    font-size: 28px;
  }

  .logo__top {
    font-size: 11px;
    gap: 10px;
  }

  .logo__line {
    width: 36px;
  }

  .header__container {
    padding: 18px 20px;
  }

  .mobile-menu {
    top: 83px;
    padding: 24px 20px 32px;
  }
}

@media (max-width: 575px) {
  .logo__name {
    font-size: 22px;
  }

  .logo__top {
    font-size: 10px;
    letter-spacing: 0.24em;
  }

  .header__container {
    gap: 16px;
  }

  .hero-space {
    height: 110px;
  }
}

.hero {
  position: relative;
  background: #0b0b0c url("img/Andrii.png") center center / cover no-repeat;
  overflow: hidden;
  min-height: 100vh;
  padding: 30px 0 0;
  color: #f5f2eb;
  background-position: -40% 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(11, 11, 12, 0.4) 0%,
      rgba(11, 11, 12, 0.2) 50%,
      rgba(11, 11, 12, 0.4) 100%
    ),
    rgba(11, 11, 12, 0.3);
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  margin: 0 60px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px 0;
  margin-top: 20vh;
}

.hero__content {
  max-width: 900px;
}

.hero__topline {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero__line {
  width: 170px;
  height: 1px;
  background: linear-gradient(to right, transparent, #d4af6a, transparent);
}

.hero__label {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d4af6a;
  white-space: nowrap;
}

.hero__name {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 0.95;
  color: #f5f2eb;
  margin-bottom: 60px;
  text-align: center;
}

.hero__title {
  font-family: "Inter", sans-serif;
  font-size: 70px;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #d4af6a;
  margin-bottom: 34px;
  text-transform: uppercase;
  max-width: 700px;
}

.hero__subtitle {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.12;
  color: #f5f2eb;
  margin-bottom: 36px;
}

.hero__list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0 0 0 10px;
}

.hero__list li {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.25;
  color: #f5f2eb;
}

.hero__list li span {
  color: #d4af6a;
  font-size: 40px;
  padding-right: 10px;
}

.hero__note {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  color: #f5f2eb;
  opacity: 0.95;
}

.hero__image-wrap {
  position: absolute;
  right: 10px;
  bottom: 120px;
  width: 620px;
  z-index: 2;
}

.hero__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__banner {
  position: relative;
  z-index: 3;
  width: 100%;
  background: #e1bf79;
  color: #0b0b0c;
  text-align: center;
  font-size: 30px;
  font-weight: 200;
  line-height: 1.15;
  padding: 20px 30px;
  margin-top: 30px;
  text-transform: uppercase;
}

.hero__cities {
  position: relative;
  z-index: 3;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  color: #f5f2eb;
  padding: 30px 20px 15px;
}

.hero__coming {
  position: relative;
  z-index: 3;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  line-height: 1.2;
  color: #d4af6a;
  font-size: 16px;
}

/* =========================
   SECTION SYSTEM
========================= */

.section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.section--light {
  background: #f7f3ec;
  color: #151515;
}

.section-head {
  position: relative;
  z-index: 2;
  margin-bottom: 70px;
}

.section-kicker {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #b89252;
  margin-bottom: 18px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111111;
}

.section-decor {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.section-decor--notes {
  top: 30px;
  right: -40px;
  font-family: "Playfair Display", serif;
  font-size: 220px;
  line-height: 0.82;
  letter-spacing: 0.08em;
  color: rgba(212, 175, 106, 0.1);
  transform: rotate(-8deg);
  white-space: nowrap;
}

/* =========================
   ARTIST SECTION
========================= */

.artist {
  position: relative;
}

.artist__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 80px;
  align-items: start;
}

.artist__media {
  position: relative;
}

.artist__image-wrap {
  position: sticky;
  top: 40px;
  background: linear-gradient(145deg, #efe8dc 0%, #fdfaf4 100%);
  border: 1px solid rgba(180, 146, 82, 0.18);
  padding: 24px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.artist__image-wrap::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(212, 175, 106, 0.35);
  pointer-events: none;
}

.artist__image {
  width: 100%;
  height: 760px;
  object-fit: cover;
  object-position: top;
}

.artist__content {
  max-width: 720px;
}

.artist__lead {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 1.22;
  font-weight: 700;
  color: #111111;
  margin-bottom: 34px;
  max-width: 650px;
}

.artist__text {
  display: grid;
  gap: 22px;
}

.artist__text p {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(21, 21, 21, 0.86);
  max-width: 720px;
}

.artist__text strong {
  font-weight: 600;
  color: #111111;
}

.artist__text p:last-child {
  font-size: 24px;
  color: #111111;
}

/* декоративний акцент-лінія */
.artist__content::before {
  content: "";
  display: block;
  width: 140px;
  height: 1px;
  background: linear-gradient(to right, #d4af6a, transparent);
  margin-bottom: 30px;
}

.artist-quote {
  position: relative;
  width: 100%;
  min-height: 60vh;
  gap: 30px;
  background: url("img/Andrii-quote.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 200px 40px 60px;
  overflow: hidden;
}

.artist-quote__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(11, 11, 12, 0.4) 0%,
      rgba(11, 11, 12, 0.2) 50%,
      rgba(11, 11, 12, 0.4) 100%
    ),
    rgba(11, 11, 12, 0.3);
  z-index: 1;
}

.artist-quote__content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  text-align: center;
}

.artist-quote__text {
  font-size: 43px;
  line-height: 1.3;
  font-weight: 300;
  color: #f5f2eb;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.artist-quote__text strong {
  color: #d4af6a;
  font-weight: 700;
}

/* =========================
   TOUR SECTION
========================= */

.section--dark {
  background: #0b0b0c;
  position: relative;
  padding-bottom: 40px;
}

.section-title--light {
  color: #f5f2eb;
}

/* GRID */
.tour__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: start;
}

/* LEFT */
.tour__main {
  max-width: 700px;
}

.tour__lead {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 40px;
}

.tour__text {
  display: grid;
  gap: 22px;
  margin-bottom: 50px;
}

.tour__text p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(245, 242, 235, 0.85);
}

.tour__text strong {
  color: #d4af6a;
  font-weight: 600;
}

/* SIGNATURE */
.tour__signature {
  font-size: 18px;
  opacity: 0.8;
}

.tour__signature span {
  display: block;
  margin-top: 8px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #d4af6a;
}

/* RIGHT SIDE */
.tour__side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* CARDS */
.tour__card {
  padding: 40px;
  border: 1px solid rgba(212, 175, 106, 0.2);
  background: rgba(255, 255, 255, 0.02);
}

.tour__card-title {
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* LIST */
.tour__list {
  display: grid;
  gap: 16px;
}

.tour__list li {
  font-size: 18px;
  line-height: 1.5;
  position: relative;
  padding-left: 50px;
}

.tour__list li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 40px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--accent),
    transparent
  );
  opacity: 0.85;
  top: 15px;
}

.tour__card--accent {
  background: #d4af6a;
  color: #0b0b0c;
}

.tour__card--accent strong {
  color: #0b0b0c;
}

/* плавний перехід вниз з quote */
.artist-quote::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 100px;
  z-index: 2;

  background: linear-gradient(
    to bottom,
    rgba(11, 11, 12, 0) 0%,
    rgba(11, 11, 12, 0.6) 40%,
    rgba(11, 11, 12, 1) 100%
  );

  pointer-events: none;
}

/* =========================
   ALBUM SECTION
========================= */

.album {
  position: relative;
  background:
    radial-gradient(
      circle at top left,
      rgba(212, 175, 106, 0.08),
      transparent 34%
    ),
    linear-gradient(180deg, #f8f4ed 0%, #f3ede3 100%);
}

.album__decor {
  top: 40px;
  left: auto;
  right: -30px;
  transform: rotate(8deg);
}

.album__head {
  margin-bottom: 60px;
}

.album__top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 460px;
  gap: 90px;
  align-items: start;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.album__content::before {
  content: "";
  display: block;
  width: 150px;
  height: 1px;
  margin-bottom: 28px;
  background: linear-gradient(to right, #d4af6a, transparent);
}

.album__lead {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 1.22;
  font-weight: 700;
  color: #111111;
  max-width: 820px;
  margin-bottom: 32px;
}

.album__text {
  display: grid;
  gap: 22px;
  max-width: 820px;
}

.album__text p {
  font-size: 20px;
  line-height: 1.68;
  color: rgba(21, 21, 21, 0.82);
}

.album__text strong {
  color: #111111;
  font-weight: 600;
}

.album__text-accent {
  font-size: 24px !important;
  line-height: 1.5 !important;
  color: #111111 !important;
}

.album__media {
  position: relative;
}

.album__image-card {
  position: sticky;
  top: 40px;
}

.album__image-wrap {
  position: relative;
  padding: 22px;
  background: linear-gradient(145deg, #efe7da 0%, #fcf8f1 100%);
  border: 1px solid rgba(180, 146, 82, 0.18);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.album__image-wrap::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(212, 175, 106, 0.35);
  pointer-events: none;
}

.album__image {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.album__badge {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #b89252;
}

.album__badge-line {
  width: 54px;
  height: 1px;
  background: linear-gradient(to right, #d4af6a, transparent);
}

.album__quote {
  position: relative;
  margin-bottom: 90px;
  padding: 44px 46px;
  background: #111111;
  color: #f5f2eb;
  border: 1px solid rgba(212, 175, 106, 0.18);
  overflow: hidden;
}

.album__quote::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 22px;
  font-family: "Playfair Display", serif;
  font-size: 140px;
  line-height: 1;
  color: rgba(212, 175, 106, 0.16);
}

.album__quote p {
  position: relative;
  z-index: 2;
  max-width: 980px;
  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 1.35;
  font-weight: 700;
}

.album__quote strong {
  color: #d4af6a;
}

/* =========================
   ALBUM SLIDER
========================= */

.album-slider {
  position: relative;
  z-index: 2;
  padding-top: 60px;
}

.album-slider__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.album-slider__title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1.05;
  color: #111111;
}

.album-slider__nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.album-slider__btn {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(212, 175, 106, 0.45);
  color: #111111;
  font-size: 24px;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.album-slider__btn:hover {
  background: #d4af6a;
  color: #0b0b0c;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(212, 175, 106, 0.24);
}

.album-slider__viewport {
  overflow: hidden;
}

.album-slider__track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.album-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-height: 460px;
  padding: 34px 30px 30px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 146, 82, 0.18);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
}

.album-card__index {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b89252;
}

.album-card__name {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 1.06;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}

.album-card__years {
  font-size: 16px;
  line-height: 1.4;
  color: rgba(17, 17, 17, 0.54);
  margin-bottom: 20px;
}

.album-card__works {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
  color: #111111;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(180, 146, 82, 0.2);
}

.album-card__text {
  font-size: 18px;
  line-height: 1.66;
  color: rgba(21, 21, 21, 0.82);
}

/* =========================
   READ MORE SYSTEM
========================= */

[data-expand] {
  position: relative;
  max-height: 260px;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* градієнт плавного обриву */
[data-expand]::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(247, 243, 236, 0) 0%,
    rgba(247, 243, 236, 1) 100%
  );
}

/* відкритий стан */
[data-expand].active {
  max-height: 2000px;
}

[data-expand].active::after {
  display: none;
}

/* кнопки */

.artist__actions,
.album__actions {
  margin-top: 30px;
}

.artist__toggle,
.album__toggle {
  position: relative;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b89252;
  padding-bottom: 6px;
  transition: 0.3s ease;
}

.artist__toggle::after,
.album__toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #d4af6a;
  transition: transform 0.3s ease;
}

.artist__toggle:hover,
.album__toggle:hover {
  color: #111;
}

.artist__toggle:hover::after,
.album__toggle:hover::after {
  transform: scaleX(0.7);
}

/* =========================
   TOUR STORY SECTION
========================= */

.tour-story {
  position: relative;
  background:
    radial-gradient(
      circle at top right,
      rgba(212, 175, 106, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #0b0b0c 0%, #111214 100%);
  padding-bottom: 0;
}

.tour-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 420px;
  gap: 90px;
  align-items: start;
  margin-bottom: 120px;
}

.tour-story__main {
  max-width: 760px;
}

.tour-story__main::before {
  content: "";
  display: block;
  width: 150px;
  height: 1px;
  background: linear-gradient(to right, #d4af6a, transparent);
  margin-bottom: 30px;
}

.tour-story__lead {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 700;
  color: #f5f2eb;
  margin-bottom: 34px;
  max-width: 720px;
}

.tour-story__text {
  display: grid;
  gap: 22px;
}

.tour-story__text p {
  font-size: 20px;
  line-height: 1.72;
  color: rgba(245, 242, 235, 0.84);
}

.tour-story__text strong {
  color: #d4af6a;
  font-weight: 600;
}

.tour-story__side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.tour-story__card {
  padding: 38px 34px;
  border: 1px solid rgba(212, 175, 106, 0.18);
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tour-story__card-label {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #d4af6a;
  margin-bottom: 18px;
}

.tour-story__card-title {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 1.05;
  color: #f5f2eb;
  margin-bottom: 22px;
}

.tour-story__card-text {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(245, 242, 235, 0.82);
}

.tour-story__card-text + .tour-story__card-text {
  margin-top: 16px;
}

.tour-story__card strong {
  color: #d4af6a;
}

.tour-story__note {
  padding: 28px 0 0;
}

.tour-story__note-line {
  display: block;
  width: 92px;
  height: 1px;
  background: linear-gradient(to right, #d4af6a, transparent);
  margin-bottom: 18px;
}

.tour-story__note p {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(245, 242, 235, 0.76);
}

.tour-story__note strong {
  color: #f5f2eb;
  font-weight: 600;
}

/* =========================
   TOUR SUPPORT
========================= */

.tour-support {
  padding: 56px 0 20px;
  border-top: 1px solid rgba(212, 175, 106, 0.14);
  margin-bottom: 0;
}

.tour-support__intro {
  max-width: 860px;
  margin-bottom: 44px;
}

.tour-support__title {
  font-family: "Playfair Display", serif;
  font-size: 54px;
  line-height: 1.02;
  color: #f5f2eb;
}

.tour-support__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 80px;
  align-items: center;
}

.tour-support__content {
  display: grid;
  gap: 20px;
}

.tour-support__content p {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(245, 242, 235, 0.84);
}

.tour-support__content strong {
  color: #d4af6a;
}

.tour-support__targets {
  display: grid;
  gap: 22px;
}

.tour-support__target {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(212, 175, 106, 0.14);
}

.tour-support__target:last-child {
  border-bottom: 1px solid rgba(212, 175, 106, 0.14);
}

.tour-support__target-number {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 1;
  color: rgba(212, 175, 106, 0.9);
}

.tour-support__target p {
  font-size: 20px;
  line-height: 1.65;
  color: rgba(245, 242, 235, 0.84);
}

.tour-support__target strong {
  color: #f5f2eb;
}

/* =========================
   CONTACTS HERO
========================= */

.contacts-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(
      to right,
      rgba(11, 11, 12, 0.72) 0%,
      rgba(11, 11, 12, 0.5) 45%,
      rgba(11, 11, 12, 0.72) 100%
    ),
    url("img/contacts.png") center center / cover no-repeat;
  color: #f5f2eb;
}

.contacts-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 11, 12, 0.28) 0%,
    rgba(11, 11, 12, 0.48) 100%
  );
  z-index: 1;
}

.contacts-container {
  max-width: 1280px;
  margin: 60px;
}

.contacts-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: 140px 0;
}

.contacts-hero__kicker {
  color: #d4af6a;
  margin-bottom: 24px;
}

.contacts-hero__title {
  font-family: "Playfair Display", serif;
  font-size: 76px;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #f5f2eb;
  max-width: 980px;
  margin-bottom: 34px;
}

.contacts-hero__text {
  max-width: 760px;
  display: grid;
  gap: 20px;
  margin-bottom: 46px;
}

.contacts-hero__text p {
  font-size: 22px;
  line-height: 1.7;
  color: rgba(245, 242, 235, 0.88);
}

.contacts-hero__accent {
  font-family: "Playfair Display", serif;
  font-size: 36px !important;
  line-height: 1.24 !important;
  font-weight: 700;
  color: #d4af6a !important;
  margin-bottom: 30px;
}

.contacts-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.contacts-hero__link {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid rgba(212, 175, 106, 0.42);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  color: #f5f2eb;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.contacts-hero__link:hover {
  background: #d4af6a;
  color: #0b0b0c;
  border-color: #d4af6a;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(212, 175, 106, 0.22);
}

/* =========================
   RESPONSIVE SYSTEM
========================= */

:root {
  --section-pad-desktop: 140px;
  --section-pad-tablet: 96px;
  --section-pad-mobile: 72px;

  --container-pad-desktop: 30px;
  --container-pad-tablet: 24px;
  --container-pad-mobile: 18px;

  --radius-card: 0px;
}

/* базова узгодженість */
.container {
  width: 100%;
}

.section {
  padding: var(--section-pad-desktop) 0;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {
  .container {
    padding: 0 var(--container-pad-tablet);
  }

  .section {
    padding: var(--section-pad-tablet) 0;
  }

  .section-head {
    margin-bottom: 48px;
  }

  .section-title {
    font-size: 54px;
    line-height: 0.98;
  }

  .section-kicker {
    font-size: 12px;
    letter-spacing: 0.26em;
    margin-bottom: 14px;
  }

  .section-decor--notes,
  .album__decor {
    font-size: 120px;
    right: -20px;
    top: 14px;
  }

  /* HEADER */
  .header__container {
    padding: 18px 24px;
    gap: 20px;
  }

  .logo__name {
    font-size: 30px;
  }

  .logo__top {
    font-size: 11px;
    letter-spacing: 0.24em;
  }

  /* HERO */
  .hero {
    min-height: auto;
    padding: 22px 0 0;
    background-position: center center;
  }

  .hero__container {
    padding: 44px 24px 24px;
  }

  .hero__content {
    width: 100%;
    max-width: 620px;
  }

  .hero__title {
    font-size: 52px;
    line-height: 1.08;
    max-width: 620px;
    margin-bottom: 24px;
  }

  .hero__subtitle {
    font-size: 28px;
    line-height: 1.14;
    margin-bottom: 26px;
  }

  .hero__list {
    margin-bottom: 24px;
    padding-left: 0;
  }

  .hero__list li {
    font-size: 18px;
    line-height: 1.45;
  }

  .hero__list li span {
    font-size: 28px;
    padding-right: 8px;
  }

  .hero__note {
    font-size: 16px;
  }

  .hero__banner {
    font-size: 22px;
    line-height: 1.2;
    padding: 16px 20px;
    margin-top: 18px;
  }

  .hero__cities {
    font-size: 26px;
    line-height: 1.28;
    padding: 22px 20px 10px;
  }

  .hero__coming {
    font-size: 14px;
  }

  /* ARTIST */
  .artist__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .artist__image-wrap {
    position: relative;
    top: 0;
    max-width: 560px;
    margin: 0 auto;
    padding: 18px;
  }

  .artist__image-wrap::before {
    inset: 10px;
  }

  .artist__image {
    height: 620px;
  }

  .artist__content {
    max-width: 100%;
  }

  .artist__lead {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .artist__text {
    gap: 18px;
  }

  .artist__text p,
  .artist__text p:last-child {
    font-size: 18px;
    line-height: 1.65;
    max-width: 100%;
  }

  .artist__actions,
  .album__actions {
    margin-top: 22px;
  }

  /* QUOTE */
  .artist-quote {
    min-height: auto;
    padding: 90px 24px;
  }

  .artist-quote__text {
    font-size: 30px;
    line-height: 1.28;
  }

  /* TOUR */
  .tour__grid,
  .tour-story__grid,
  .tour-support__grid,
  .tour-together {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .tour__main,
  .tour-story__main,
  .tour-support__content {
    max-width: 100%;
  }

  .tour__lead,
  .tour-story__lead {
    font-size: 32px;
    line-height: 1.18;
    margin-bottom: 24px;
  }

  .tour__text,
  .tour-story__text,
  .tour-support__content {
    gap: 18px;
  }

  .tour__text p,
  .tour-story__text p,
  .tour-support__content p,
  .tour-support__target p,
  .tour-together__text,
  .tour-story__card-text,
  .tour-story__note p {
    font-size: 18px;
    line-height: 1.68;
  }

  .tour__card,
  .tour-story__card,
  .tour-together__list-wrap {
    padding: 30px 26px;
  }

  .tour__card-title,
  .tour-story__card-title {
    font-size: 28px;
  }

  .tour__list li,
  .tour-together__list li {
    font-size: 17px;
    line-height: 1.55;
    padding-left: 42px;
  }

  .tour__list li::before,
  .tour-together__list li::before {
    width: 30px;
    top: 13px;
  }

  .tour__card--accent {
    margin: 0 24px;
  }

  /* ALBUM */
  .album__top {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-bottom: 52px;
  }

  .album__lead {
    font-size: 30px;
    line-height: 1.22;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .album__text {
    gap: 18px;
    max-width: 100%;
  }

  .album__text p,
  .album__text-accent {
    font-size: 18px !important;
    line-height: 1.68 !important;
  }

  .album__image-card {
    position: relative;
    top: 0;
    max-width: 560px;
    margin: 0 auto;
  }

  .album__image-wrap {
    padding: 18px;
  }

  .album__image-wrap::before {
    inset: 10px;
  }

  .album__image {
    height: 560px;
  }

  .album__quote {
    margin-bottom: 56px;
    padding: 34px 26px;
  }

  .album__quote::before {
    font-size: 110px;
    top: 8px;
    left: 14px;
  }

  .album__quote p {
    font-size: 28px;
    line-height: 1.34;
  }

  .album-slider__top {
    align-items: start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
  }

  .album-slider__title {
    font-size: 34px;
    line-height: 1.08;
  }

  .album-slider__btn {
    width: 54px;
    height: 54px;
    font-size: 20px;
  }

  .album-card {
    flex: 0 0 calc((100% - 24px) / 2);
    min-height: 420px;
    padding: 28px 24px 24px;
  }

  .album-card__name {
    font-size: 28px;
  }

  .album-card__works {
    font-size: 16px;
  }

  .album-card__text {
    font-size: 17px;
    line-height: 1.6;
  }

  /* CONTACTS HERO */
  .contacts-hero {
    min-height: auto;
  }

  .contacts-hero__inner {
    padding: 100px 0;
    max-width: 100%;
  }

  .contacts-hero__title {
    font-size: 54px;
    line-height: 1;
    margin-bottom: 24px;
  }

  .contacts-hero__text {
    gap: 16px;
    margin-bottom: 34px;
  }

  .contacts-hero__text p {
    font-size: 18px;
    line-height: 1.65;
  }

  .contacts-hero__accent {
    font-size: 28px !important;
    line-height: 1.28 !important;
  }

  .contacts-hero__actions {
    gap: 12px;
  }

  .contacts-hero__link {
    min-height: 52px;
    padding: 0 20px;
    font-size: 12px;
    letter-spacing: 0.14em;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 575px) {
  .container {
    padding: 0 var(--container-pad-mobile);
  }

  .section {
    padding: var(--section-pad-mobile) 0;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: 38px;
    line-height: 1.02;
    letter-spacing: -0.03em;
  }

  .section-kicker {
    font-size: 11px;
    letter-spacing: 0.22em;
    margin-bottom: 12px;
  }

  .section-decor--notes,
  .album__decor {
    font-size: 76px;
    right: -12px;
    top: 10px;
  }

  /* HEADER */
  .header__container {
    padding: 14px 18px;
    gap: 14px;
  }

  .logo {
    align-items: flex-start;
  }

  .logo__top {
    gap: 6px;
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .logo__line {
    width: 24px;
  }

  .logo__name {
    font-size: 20px;
    margin-top: -4px;
  }

  .burger {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    top: 72px;
    padding: 20px 18px 26px;
  }

  .mobile-menu__list {
    gap: 18px;
    margin-bottom: 0;
  }

  .mobile-menu__link {
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  /* HERO */
  .hero {
    padding: 18px 0 0;
    min-height: calc(80vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: end;
  }

  .hero__container {
    padding: 34px 18px 12px;
    margin: 0;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__title {
    font-size: 37px;
    line-height: 1.2;
    margin-bottom: 18px;
    padding-right: 20vw;
  }

  .hero__subtitle {
    font-size: 22px;
    line-height: 1.18;
    margin-bottom: 20px;
  }

  .hero__list {
    margin-bottom: 18px;
  }

  .hero__list li {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero__list li span {
    font-size: 22px;
    padding-right: 6px;
  }

  .hero__note {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero__banner {
    font-size: 16px;
    line-height: 1.3;
    padding: 14px 16px;
    margin-top: 14px;
  }

  .hero__cities {
    font-size: 20px;
    line-height: 1.3;
    padding: 18px 16px 8px;
  }

  .hero__coming {
    font-size: 13px;
    padding: 0 16px;
  }

  /* ARTIST */
  .artist__grid {
    gap: 28px;
  }

  .artist__image-wrap {
    padding: 12px;
  }

  .artist__image-wrap::before {
    inset: 7px;
  }

  .artist__image {
    height: 480px;
  }

  .artist__content::before {
    width: 92px;
    margin-bottom: 20px;
  }

  .artist__lead {
    font-size: 24px;
    line-height: 1.22;
    margin-bottom: 18px;
  }

  .artist__text {
    gap: 14px;
  }

  .artist__text p,
  .artist__text p:last-child {
    font-size: 16px;
    line-height: 1.62;
  }

  .artist__toggle,
  .album__toggle {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  /* READ MORE */
  [data-expand] {
    max-height: 210px;
  }

  [data-expand]::after {
    height: 90px;
  }

  /* QUOTE */
  .artist-quote {
    padding: 160px 18px 60px;
    position: relative;
    z-index: 1000;
  }

  .artist-quote__text {
    font-size: 20px;
    line-height: 1.4;
  }

  .artist-quote::after {
    height: 80px;
  }

  /* TOUR */
  .tour__lead,
  .tour-story__lead {
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 18px;
    font-weight: 100;
    color: rgba(245, 242, 235, 0.84);

    font-family: "Inter", sans-serif;
  }

  .tour__text,
  .tour-story__text,
  .tour-support__content,
  .tour-support__targets,
  .tour-together__list {
    gap: 14px;
  }

  .tour__text p,
  .tour-story__text p,
  .tour-support__content p,
  .tour-support__target p,
  .tour-together__text,
  .tour-story__card-text,
  .tour-story__note p {
    font-size: 16px;
    line-height: 1.65;
  }

  .tour__card,
  .tour-story__card,
  .tour-together__list-wrap,
  .tour__card--accent {
    padding: 22px 18px;
  }

  .tour__card--accent {
    margin: 0;
  }

  .tour__card-title,
  .tour-story__card-title {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .tour__list li,
  .tour-together__list li {
    font-size: 15px;
    line-height: 1.55;
    padding-left: 32px;
  }

  .tour__list li::before,
  .tour-together__list li::before {
    width: 22px;
    top: 11px;
  }

  .tour-story__main::before,
  .tour-story__note-line,
  .album__content::before {
    width: 82px;
    margin-bottom: 18px;
  }

  .tour-support {
    padding: 34px 0 0;
    margin-bottom: 0;
  }

  .tour-support__title,
  .tour-together__title {
    font-size: 30px;
    line-height: 1.06;
  }

  .tour-support__target {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 18px 0;
  }

  .tour-support__target-number {
    font-size: 24px;
  }

  /* ALBUM */
  .album__top {
    gap: 28px;
    margin-bottom: 36px;
  }

  .album__lead {
    font-size: 24px;
    line-height: 1.24;
    margin-bottom: 18px;
  }

  .album__text {
    gap: 14px;
  }

  .album__text p,
  .album__text-accent {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .album__image-wrap {
    padding: 12px;
  }

  .album__image-wrap::before {
    inset: 7px;
  }

  .album__image {
    height: 380px;
  }

  .album__badge {
    margin-top: 12px;
    gap: 10px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .album__badge-line {
    width: 34px;
  }

  .album__quote {
    margin-bottom: 38px;
    padding: 22px 18px;
  }

  .album__quote::before {
    font-size: 72px;
    left: 10px;
    top: 4px;
  }

  .album__quote p {
    font-size: 22px;
    line-height: 1.34;
  }

  .album-slider__top {
    gap: 16px;
    margin-bottom: 18px;
  }

  .album-slider__title {
    font-size: 26px;
    line-height: 1.1;
  }

  .album-slider__nav {
    gap: 10px;
  }

  .album-slider__btn {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .album-card {
    flex: 0 0 100%;
    min-height: auto;
    padding: 22px 18px 20px;
  }

  .album-card__index {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .album-card__name {
    font-size: 24px;
    line-height: 1.08;
    margin-bottom: 8px;
  }

  .album-card__years {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .album-card__works {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .album-card__text {
    font-size: 15px;
    line-height: 1.58;
  }

  /* CONTACTS */
  .contacts-hero__inner {
    padding: 0;
  }
  .contacts-container {
    margin: 30px;
  }
  .tour__card--accent p {
    font-size: 18px;
    line-height: 30px;
  }
  .tour {
    padding-top: 0;
  }
  .contacts-hero__title {
    font-size: 36px;
    line-height: 1.02;
    margin-bottom: 18px;
  }

  .contacts-hero__text {
    gap: 14px;
    margin-bottom: 24px;
  }

  .contacts-hero__text p {
    font-size: 16px;
    line-height: 1.62;
  }

  .contacts-hero__accent {
    font-size: 22px !important;
    line-height: 1.26 !important;
  }

  .contacts-hero__actions {
    gap: 10px;
  }

  .contacts-hero__link {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    padding: 0 16px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .tour__text {
    margin-bottom: 20px;
  }

  .tour-story__grid {
    margin-bottom: 30px;
  }
}

/* =========================
   MOBILE MENU — LIGHT / SOFT / BLUR
========================= */

body.menu-open {
  overflow: hidden;
}

.burger {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 106, 0.28);
  position: relative;
  z-index: 1002;
  backdrop-filter: blur(10px);
}

.burger span,
.burger::before,
.burger::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: #f5f2eb;
  transition: 0.3s ease;
}

.burger span {
  top: 50%;
  transform: translateY(-50%);
}

.burger::before {
  top: 14px;
}

.burger::after {
  bottom: 14px;
}

.burger.active span {
  opacity: 0;
}

.burger.active::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background: #d4af6a;
}

.burger.active::after {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  background: #d4af6a;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 110px 24px 40px;
  background: rgba(36, 30, 24, 0.52);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease;
  transform: translateY(-8px);
  border-top: none;
}

.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(247, 243, 236, 0.14) 0%,
    rgba(236, 227, 213, 0.08) 100%
  );
  pointer-events: none;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu__list {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 22px 18px;
  border: 1px solid rgba(212, 175, 106, 0.18);
  background: rgba(255, 248, 240, 0.06);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.mobile-menu__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: 100%;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  line-height: 1.1;
  color: #f5f2eb;
  position: relative;
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

.mobile-menu__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: #d4af6a;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.mobile-menu__link:hover {
  color: #f1d29a;
  transform: translateY(-1px);
}

.mobile-menu__link:hover::after {
  width: 44%;
}

@media (max-width: 991px) {
  .burger {
    display: flex;
  }
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}

@media (max-width: 575px) {
  .mobile-menu {
    padding: 92px 18px 28px;
    align-items: flex-start;
  }

  .mobile-menu__list {
    max-width: 100%;
    gap: 10px;
    padding: 18px 14px;
  }

  .mobile-menu__link {
    min-height: 38px;
    font-size: 18px;
  }

  .burger {
    width: 42px;
    height: 42px;
  }
}

/* =========================
   MOBILE MENU FINAL HARD FIX
========================= */

body.menu-open {
  overflow: hidden;
}

.header {
  position: relative;
  z-index: 1000;
}

.burger {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1002;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 106, 0.28);
  backdrop-filter: blur(10px);
}

.burger span,
.burger::before,
.burger::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: #f5f2eb;
  transition: 0.3s ease;
}

.burger span {
  top: 50%;
  transform: translateY(-50%);
}

.burger::before {
  top: 14px;
}

.burger::after {
  bottom: 14px;
}

.burger.active span {
  opacity: 0;
}

.burger.active::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background: #d4af6a;
}

.burger.active::after {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  background: #d4af6a;
}

/* дуже важливо: ховаємо меню жорстко */
.mobile-menu {
  display: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100dvh !important;
  min-height: 100dvh !important;
  padding: 96px 20px 32px !important;
  align-items: flex-start !important;
  justify-content: center !important;
  background: rgba(44, 37, 31, 0.48) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  z-index: 1001 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(-8px) !important;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease !important;
  border: 0 !important;
  overflow-y: auto !important;
}

.mobile-menu.active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(245, 242, 235, 0.05) 100%
  );
  pointer-events: none;
}

.mobile-menu__list {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  padding: 18px 14px !important;
  background: var(--accent);
  border: 1px solid rgba(212, 175, 106, 0.18);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.mobile-menu__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  width: 100%;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 1.1;
  color: #f5f2eb;
  position: relative;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.mobile-menu__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: #d4af6a;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.mobile-menu__link:hover {
  color: #f1d29a;
  transform: translateY(-1px);
}

.mobile-menu__link:hover::after {
  width: 40%;
}

@media (max-width: 991px) {
  .burger {
    display: flex;
  }
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

.artist__signature {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

.artist__signature span {
  font-size: 16px;
  line-height: 1;
}

.artist__signature strong {
  font-size: 24px;
  font-weight: 400;
  color: #b89252;
}

/* =========================
   POSTER SECTION
========================= */

.poster {
  position: relative;
  background: #0b0b0c;
  padding: 120px 0 140px;
}

.poster__head {
  text-align: center;
  margin-bottom: 50px;
}

.poster__head .section-kicker {
  display: block;
  text-align: center;
}

.poster__head .section-title {
  text-align: center;
}

.poster__frame {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 22px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(212, 175, 106, 0.22);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.poster__frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212, 175, 106, 0.28);
  pointer-events: none;
}

.poster__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.poster__bottom {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.poster__note {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.2;
  color: #f5f2eb;
  text-align: center;
}

.poster__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 34px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.poster__btn:hover {
  background: var(--accent);
  color: #0b0b0c;
  box-shadow: 0 0 24px rgba(212, 175, 106, 0.18);
}

@media (max-width: 991px) {
  .poster {
    padding: 90px 0 100px;
  }

  .poster__frame {
    max-width: 680px;
    padding: 18px;
  }

  .poster__note {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .poster {
    padding: 70px 0 80px;
  }

  .poster__head {
    margin-bottom: 32px;
  }

  .poster__frame {
    padding: 12px;
  }

  .poster__note {
    font-size: 18px;
    line-height: 1.35;
  }

  .poster__btn {
    width: 100%;
    max-width: 320px;
    min-height: 48px;
    padding: 0 20px;
    text-align: center;
  }
}

/* =========================
   CONTACTS LEGAL
========================= */

.contacts__legal-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.contacts__legal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 30px 60px;
}

.contacts__copyright {
  font-size: 18px;
  line-height: 1.4;
  color: rgba(245, 242, 235, 0.78);
}

.contacts__legal-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.contacts__legal-link {
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.3);
  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

.contacts__legal-link:hover {
  color: var(--accent);
}

.contacts__legal-dot {
  font-size: 18px;
  line-height: 1;
  color: rgba(245, 242, 235, 0.28);
}

/* =========================
   MODAL
========================= */

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 6, 0.78);
  backdrop-filter: blur(10px);
}

.modal__dialog {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  background: linear-gradient(145deg, #121214 0%, #0b0b0c 100%);
  border: 1px solid rgba(212, 175, 106, 0.24);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.modal__content {
  position: relative;
  padding: 56px 56px 48px;
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border: 0;
  font-size: 28px;
  line-height: 1;
  transition: 0.3s ease;
}

.modal__close:hover {
  background: var(--accent);
  color: #0b0b0c;
}

.modal__kicker {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #b89252;
  margin-bottom: 18px;
}

.modal__title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  line-height: 1;
  color: #f5f2eb;
  margin-bottom: 30px;
}

.modal__text {
  display: grid;
  gap: 18px;
}

.modal__text p {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(245, 242, 235, 0.86);
}

.modal__text a {
  color: var(--accent);
  word-break: break-word;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 991px) {
  .contacts__legal-row {
    gap: 20px;
  }

  .contacts__copyright,
  .contacts__legal-link,
  .contacts__legal-dot {
    font-size: 16px;
  }

  .modal {
    padding: 20px;
  }

  .modal__content {
    padding: 46px 34px 34px;
  }

  .modal__title {
    font-size: 38px;
  }

  .modal__text p {
    font-size: 17px;
    line-height: 1.7;
  }
}

@media (max-width: 575px) {
  .contacts__legal-row {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .contacts__legal-row {
    padding: 15px 30px;
  }

  .contacts__legal-links {
    gap: 12px;
  }

  .contacts__copyright,
  .contacts__legal-link,
  .contacts__legal-dot {
    font-size: 15px;
  }

  .modal {
    padding: 14px;
  }

  .modal__content {
    padding: 42px 22px 24px;
  }

  .modal__title {
    font-size: 30px;
    margin-bottom: 22px;
  }

  .modal__text {
    gap: 14px;
  }

  .modal__text p {
    font-size: 15px;
    line-height: 1.68;
  }

  .modal__close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
}
