:root {
  --ivory: #F4EFE7;
  --ivory-deep: #E8DED2;
  --warm-black: #171513;
  --graphite: #2A2926;
  --brown: #6A4A35;
  --terracotta: #A85F3D;
  --burgundy: #6F2E2E;
  --brass: #B08A57;
  --cream: #FFF9EF;
  --muted: #756B62;
  --line: rgba(23, 21, 19, 0.14);
  --shadow: 0 22px 60px rgba(23, 21, 19, 0.14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1120px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--warm-black);
  background:
    radial-gradient(circle at top left, rgba(176, 138, 87, 0.22), transparent 34rem),
    radial-gradient(circle at 80% 8%, rgba(168, 95, 61, 0.14), transparent 28rem),
    var(--ivory);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    repeating-linear-gradient(90deg, rgba(23, 21, 19, 0.02) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(0deg, rgba(23, 21, 19, 0.015) 0 1px, transparent 1px 5px);
  mix-blend-mode: multiply;
  z-index: 0;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 76px 0;
}

.section-tight {
  padding: 36px 0 72px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 500;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 15vw, 6.6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 10vw, 5rem);
}

h3 {
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-size: 1.35rem;
}

p {
  margin-bottom: 1rem;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--cream);
  background: var(--warm-black);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(244, 239, 231, 0.82);
  border-bottom: 1px solid rgba(23, 21, 19, 0.08);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-logo {
  display: block;
  width: auto;
  height: 22px;
  max-width: 154px;
}

@media (max-width: 420px) {
  .brand-logo {
    height: 19px;
    max-width: 138px;
  }
}

@media (min-width: 940px) {
  .brand-logo {
    height: 24px;
    max-width: 190px;
  }
}


.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--cream);
  background: var(--warm-black);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--warm-black);
  background: rgba(255, 249, 239, 0.72);
  cursor: pointer;
}

.menu-toggle-line {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--warm-black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:first-child {
  transform: translateX(12px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
  transform: translateX(-12px) rotate(-45deg);
}

.menu-toggle-text {
  font-size: 0.82rem;
  font-weight: 700;
}

.site-nav {
  position: fixed;
  inset: 68px 16px auto 16px;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 249, 239, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-nav a {
  padding: 13px 14px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(168, 95, 61, 0.1);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--terracotta);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.lead {
  font-size: clamp(1.1rem, 4.4vw, 1.36rem);
  line-height: 1.46;
}

.hero {
  padding-top: 54px;
}

.hero-copy {
  max-width: 760px;
}

.hero-note {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 6vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-subnote {
  max-width: 620px;
  color: var(--graphite);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button-row.centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:focus-visible,
.playlist-card:focus-visible,
.accordion-button:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(168, 95, 61, 0.35);
  outline-offset: 3px;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--cream);
  background: var(--warm-black);
  border: 1px solid var(--warm-black);
}

.button-primary:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.button-secondary {
  color: var(--warm-black);
  background: transparent;
  border: 1px solid rgba(23, 21, 19, 0.24);
}

.button-secondary:hover {
  background: rgba(255, 249, 239, 0.72);
}

.button[href="#music"]::before,
.button[href*="t.me"]::before,
.button[href*="vk.com/gim31734266"]::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: currentColor;
}

.button[href="#music"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 18V5.9L20 3v11.8a3.2 3.2 0 1 1-2-3V6.1l-7 1.8V18a3.2 3.2 0 1 1-2-3z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 18V5.9L20 3v11.8a3.2 3.2 0 1 1-2-3V6.1l-7 1.8V18a3.2 3.2 0 1 1-2-3z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.button[href*="t.me"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.7 4.2 18.3 20c-.25 1.1-.9 1.4-1.84.88l-5.1-3.76-2.46 2.37c-.27.27-.5.5-1.02.5l.36-5.2 9.46-8.55c.41-.36-.09-.56-.64-.2L5.37 13.4.32 11.82c-1.1-.34-1.12-1.1.23-1.63L20.3 2.58c.92-.34 1.72.2 1.4 1.62z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.7 4.2 18.3 20c-.25 1.1-.9 1.4-1.84.88l-5.1-3.76-2.46 2.37c-.27.27-.5.5-1.02.5l.36-5.2 9.46-8.55c.41-.36-.09-.56-.64-.2L5.37 13.4.32 11.82c-1.1-.34-1.12-1.1.23-1.63L20.3 2.58c.92-.34 1.72.2 1.4 1.62z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.button[href*="vk.com/gim31734266"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.1 17.7c-5.1 0-8-3.5-8.12-9.3h2.55c.08 4.25 1.96 6.05 3.44 6.42V8.4h2.4v3.66c1.45-.16 2.98-1.84 3.5-3.66h2.4c-.4 2.24-2.08 3.92-3.28 4.61 1.2.56 3.12 2.02 3.85 4.69h-2.65c-.57-1.74-1.97-3.1-3.82-3.3v3.3h-.27z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.1 17.7c-5.1 0-8-3.5-8.12-9.3h2.55c.08 4.25 1.96 6.05 3.44 6.42V8.4h2.4v3.66c1.45-.16 2.98-1.84 3.5-3.66h2.4c-.4 2.24-2.08 3.92-3.28 4.61 1.2.56 3.12 2.02 3.85 4.69h-2.65c-.57-1.74-1.97-3.1-3.82-3.3v3.3h-.27z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.button[href*="max.ru"]::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  border: 5px solid currentColor;
  border-radius: 999px;
  box-shadow: inset 0 0 0 2px rgba(255, 249, 239, 0.18);
}

.photo-placeholder {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  border: 1px solid rgba(255, 249, 239, 0.24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 18%, rgba(176, 138, 87, 0.72), transparent 24%),
    radial-gradient(circle at 88% 72%, rgba(168, 95, 61, 0.6), transparent 26%),
    linear-gradient(145deg, var(--graphite), var(--brown) 55%, var(--burgundy));
  box-shadow: var(--shadow);
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background:
    repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 50% 120%, rgba(255, 249, 239, 0.22), transparent 28rem);
}

.photo-placeholder::after {
  content: "♫";
  position: absolute;
  right: 22px;
  bottom: 8px;
  color: rgba(255, 249, 239, 0.16);
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
}

.placeholder-content {
  position: absolute;
  inset: auto 22px 22px 22px;
  z-index: 1;
  display: grid;
  gap: 4px;
  max-width: 420px;
  color: var(--cream);
}

.placeholder-content strong {
  font-size: 1.35rem;
  line-height: 1.1;
}

.placeholder-content span:last-child {
  color: rgba(255, 249, 239, 0.72);
}

.placeholder-kicker {
  color: rgba(255, 249, 239, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-photo {
  margin-top: 34px;
  min-height: 430px;
}

.principle-card,
.note-card,
.cta-card,
.price-card,
.fit-card,
.sound-panel,
.checklist,
.stepper,
.accordion,
.stage-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 249, 239, 0.58);
  box-shadow: 0 18px 42px rgba(23, 21, 19, 0.08);
}

.principle-card {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 7vw, 48px);
}

.evening-map {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.evening-map span,
.chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(106, 74, 53, 0.25);
  border-radius: 999px;
  color: var(--brown);
  background: rgba(244, 239, 231, 0.7);
  font-size: 0.9rem;
  font-weight: 800;
}

.accent-text {
  color: var(--brown);
  font-weight: 800;
}

.two-column {
  display: grid;
  gap: 28px;
}

.section-copy {
  max-width: 700px;
}

.note-card {
  padding: 24px;
}

.note-card strong {
  display: block;
  margin: 14px 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 7vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.playlists-section {
  position: relative;
  overflow: hidden;
  margin: clamp(18px, 4vw, 42px) 0;
  padding: clamp(88px, 12vw, 144px) 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 8% 4%, rgba(176, 138, 87, 0.34), transparent 26rem),
    radial-gradient(circle at 86% 14%, rgba(168, 95, 61, 0.28), transparent 24rem),
    radial-gradient(circle at 72% 84%, rgba(111, 46, 46, 0.28), transparent 28rem),
    linear-gradient(145deg, #171513 0%, #241d19 54%, #3A2A22 100%);
  isolation: isolate;
}

.playlists-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  pointer-events: none;
  background:
    repeating-linear-gradient(110deg, rgba(255, 249, 239, 0.045) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 50% -8%, rgba(255, 249, 239, 0.16), transparent 24rem);
}

.playlists-section::after {
  content: "TASTE CHECK";
  position: absolute;
  right: max(18px, calc((100vw - var(--container)) / 2));
  top: 34px;
  z-index: -1;
  color: rgba(255, 249, 239, 0.045);
  font-family: var(--font-display);
  font-size: clamp(4rem, 13vw, 11rem);
  line-height: 0.8;
  letter-spacing: -0.07em;
  white-space: nowrap;
  pointer-events: none;
}

.playlists-section .section-head {
  max-width: 860px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.playlists-section .section-head h2,
.playlists-section .section-head p {
  color: inherit;
}

.playlists-section .section-head > p:not(.eyebrow),
.playlists-section .playlist-playback-note {
  color: rgba(255, 249, 239, 0.74);
}

.playlists-section .eyebrow {
  color: rgba(255, 249, 239, 0.64);
}

.music-section-note {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 249, 239, 0.18);
  border-radius: 24px;
  background: rgba(255, 249, 239, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 249, 239, 0.08);
  backdrop-filter: blur(10px);
}

.music-section-note span {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.music-section-note p {
  max-width: 66ch;
  margin: 0;
  color: rgba(255, 249, 239, 0.82) !important;
}

.playlist-grid {
  display: grid;
  gap: 16px;
}

.playlist-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 310px;
  align-content: end;
  padding: 24px;
  border-radius: var(--radius-lg);
  color: var(--cream);
  text-decoration: none;
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.playlist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(23, 21, 19, 0.2);
}

.playlist-card::before,
.playlist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.playlist-card::before {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 249, 239, 0.22), transparent 20rem),
    radial-gradient(circle at 90% 70%, rgba(176, 138, 87, 0.34), transparent 18rem),
    linear-gradient(145deg, var(--graphite), var(--brown));
}

.playlist-card::after {
  opacity: 0.38;
  background:
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 13px),
    linear-gradient(0deg, rgba(23, 21, 19, 0.86), rgba(23, 21, 19, 0.08));
}

.playlist-welcome::before {
  background: radial-gradient(circle at 18% 12%, rgba(244, 239, 231, 0.32), transparent 19rem), linear-gradient(145deg, #4D382B, #A85F3D 62%, #B08A57);
}

.playlist-ceremony::before {
  background: radial-gradient(circle at 70% 16%, rgba(244, 239, 231, 0.28), transparent 18rem), linear-gradient(145deg, #302725, #6F2E2E 66%, #B08A57);
}

.playlist-rock::before {
  background: radial-gradient(circle at 18% 82%, rgba(168, 95, 61, 0.42), transparent 20rem), linear-gradient(145deg, #171513, #2A2926 46%, #6F2E2E);
}

.playlist-groove::before {
  background: radial-gradient(circle at 80% 18%, rgba(176, 138, 87, 0.44), transparent 19rem), linear-gradient(145deg, #171513, #6A4A35 56%, #A85F3D);
}

.playlist-number {
  color: rgba(255, 249, 239, 0.52);
  font-family: var(--font-display);
  font-size: 4.2rem;
  line-height: 0.85;
}

.playlist-card h3 {
  max-width: 360px;
  margin: 14px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 500;
}

.playlist-card p {
  max-width: 410px;
  color: rgba(255, 249, 239, 0.78);
}

.playlist-button {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 10px;
  padding: 12px 15px;
  border-radius: 999px;
  color: var(--warm-black);
  background: var(--cream);
  font-weight: 900;
}

.after-playlists {
  margin-top: 18px;
}

.cta-card {
  padding: clamp(26px, 8vw, 56px);
  text-align: left;
}

.cta-card h2 {
  max-width: 800px;
}

.microcopy,
.honest-note {
  color: var(--muted);
  font-size: 0.96rem;
}

.stepper {
  counter-reset: step;
  display: grid;
  gap: 0;
  padding: 8px 22px;
  list-style: none;
}

.stepper li {
  counter-increment: step;
  position: relative;
  display: grid;
  gap: 4px;
  padding: 22px 0 22px 46px;
  border-bottom: 1px solid var(--line);
}

.stepper li:last-child {
  border-bottom: 0;
}

.stepper li::before {
  content: counter(step);
  position: absolute;
  top: 20px;
  left: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--cream);
  background: var(--terracotta);
  font-size: 0.84rem;
  font-weight: 900;
}

.stepper span {
  color: var(--muted);
}

.wide-photo {
  min-height: 380px;
}

.stage-grid {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.stage-grid article {
  padding: 20px;
}

.stage-grid span {
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 2rem;
}

.stage-grid h3 {
  margin: 6px 0 8px;
}

.sound-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.small-photo {
  min-height: 280px;
  box-shadow: none;
}

.fit-grid {
  display: grid;
  gap: 16px;
}

.fit-card {
  padding: clamp(24px, 7vw, 44px);
}

.fit-card.negative {
  background: rgba(42, 41, 38, 0.92);
  color: var(--cream);
}

.fit-card.negative .eyebrow,
.fit-card.negative .accent-text {
  color: #E3B882;
}

.clean-list,
.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid rgba(23, 21, 19, 0.1);
}

.fit-card.negative .clean-list li {
  border-bottom-color: rgba(255, 249, 239, 0.13);
}

.clean-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 900;
}

.faq-grid {
  display: grid;
  gap: 24px;
}

.accordion {
  overflow: hidden;
}

.accordion-item + .accordion-item {
  border-top: 1px solid var(--line);
}

.accordion-button {
  position: relative;
  width: 100%;
  padding: 20px 54px 20px 20px;
  border: 0;
  color: var(--warm-black);
  background: transparent;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.accordion-button::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.accordion-button[aria-expanded="true"]::after {
  content: "−";
}

.accordion-panel {
  padding: 0 20px 22px;
  color: var(--graphite);
}

.checklist {
  display: grid;
  gap: 0;
  padding: 22px;
}

.checklist li {
  position: relative;
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid var(--line);
}

.checklist li:last-child {
  border-bottom: 0;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 11px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--cream);
  background: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
}

.price-card {
  display: grid;
  gap: 16px;
  padding: clamp(26px, 8vw, 56px);
  background:
    radial-gradient(circle at 90% 12%, rgba(176, 138, 87, 0.16), transparent 20rem),
    rgba(255, 249, 239, 0.68);
}

.price-value {
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 15vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--burgundy);
}

.experience-grid {
  display: grid;
  gap: 28px;
}

.experience-copy h2 span {
  display: block;
  color: var(--terracotta);
  font-size: clamp(4.8rem, 24vw, 10rem);
}

.proof-grid {
  display: grid;
  gap: 12px;
}

.proof-photo {
  min-height: 220px;
}

.final-cta .cta-card {
  color: var(--cream);
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(176, 138, 87, 0.24), transparent 26rem),
    linear-gradient(145deg, var(--warm-black), var(--graphite));
}

.final-cta .eyebrow,
.final-cta .microcopy,
.final-cta .honest-note {
  color: rgba(255, 249, 239, 0.72);
}

.final-cta .button-secondary {
  color: var(--cream);
  border-color: rgba(255, 249, 239, 0.26);
}

.final-cta .button-secondary:hover {
  background: rgba(255, 249, 239, 0.1);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-brand-block {
  display: grid;
  gap: 8px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}

.footer-logo {
  display: block;
  width: auto;
  height: 22px;
  max-width: 170px;
}


.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.56s ease, transform 0.56s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 720px) {
  .container {
    width: min(100% - 56px, var(--container));
  }

  .section {
    padding: 104px 0;
  }

  .section-tight {
    padding: 54px 0 96px;
  }

  .playlist-grid,
  .fit-grid,
  .stage-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .playlist-card {
    min-height: 390px;
    padding: 32px;
  }

  .principle-card {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .principle-card .accent-text {
    grid-column: 1 / -1;
  }

  .price-card {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .price-card .button-row,
  .price-card p:last-of-type {
    grid-column: 1 / -1;
  }
}

@media (min-width: 940px) {
  body {
    font-size: 18px;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 8px 10px;
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-grid,
  .two-column,
  .faq-grid,
  .experience-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 56px;
  }

  .two-column-reverse {
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  }

  .hero-photo {
    margin-top: 0;
    min-height: 620px;
  }

  .playlist-grid {
    gap: 22px;
  }

  .stage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-grid .proof-photo:first-child {
    grid-row: span 2;
    min-height: 464px;
  }

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

  .cta-card .button-row {
    justify-content: center;
  }
}

@media (min-width: 1180px) {
  .site-nav a {
    padding-inline: 12px;
  }
}

/* --------------------------------------------------------------------------
   Laptop tuning v2
   Fixes the awkward middle zone between mobile and large desktop: 1024–1366px.
   The site remains mobile-first, but laptop screens get calmer typography,
   tighter vertical rhythm and less aggressive two-column layouts.
---------------------------------------------------------------------------- */

@media (min-width: 940px) and (max-width: 1079px) {
  :root {
    --container: 900px;
  }

  body {
    font-size: 17px;
  }

  .container {
    width: min(100% - 48px, var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .section-tight {
    padding: 44px 0 72px;
  }

  h1 {
    max-width: 820px;
    font-size: clamp(4.2rem, 8.2vw, 5.25rem);
  }

  h2 {
    font-size: clamp(3rem, 6.8vw, 4.15rem);
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid,
  .two-column,
  .two-column-reverse,
  .faq-grid,
  .experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-photo {
    margin-top: 0;
    min-height: 420px;
  }

  .wide-photo {
    min-height: 340px;
  }

  .small-photo {
    min-height: 260px;
  }

  .playlist-card {
    min-height: 330px;
  }

  .playlist-card h3 {
    font-size: clamp(2rem, 4.8vw, 2.65rem);
  }

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

  .cta-card .button-row {
    justify-content: flex-start;
  }

  .price-value {
    font-size: clamp(4.2rem, 11vw, 5.8rem);
  }

  .experience-copy h2 span {
    font-size: clamp(5rem, 15vw, 7.6rem);
  }

  .proof-grid .proof-photo:first-child {
    grid-row: auto;
    min-height: 260px;
  }
}

@media (min-width: 1080px) and (max-width: 1399px) {
  :root {
    --container: 1040px;
  }

  body {
    font-size: 17px;
  }

  .container {
    width: min(100% - 56px, var(--container));
  }

  .section {
    padding: 86px 0;
  }

  .section-tight {
    padding: 48px 0 82px;
  }

  h1 {
    font-size: clamp(4.1rem, 6.1vw, 5.35rem);
  }

  h2 {
    font-size: clamp(3rem, 4.8vw, 4.25rem);
  }

  .lead {
    font-size: 1.16rem;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-grid,
  .two-column,
  .faq-grid,
  .experience-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    gap: 38px;
  }

  .two-column-reverse {
    grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  }

  .hero-photo {
    min-height: 500px;
  }

  .photo-placeholder::after {
    font-size: 6.8rem;
  }

  .principle-card,
  .cta-card,
  .price-card,
  .fit-card {
    border-radius: 26px;
  }

  .playlist-grid {
    gap: 18px;
  }

  .playlist-card {
    min-height: 340px;
    padding: 28px;
  }

  .playlist-card h3 {
    font-size: clamp(2rem, 3.15vw, 2.55rem);
  }

  .playlist-number {
    font-size: 3.6rem;
  }

  .stage-grid article {
    padding: 18px;
  }

  .wide-photo {
    min-height: 330px;
  }

  .small-photo {
    min-height: 250px;
  }

  .sound-panel {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: center;
  }

  .price-value {
    font-size: clamp(4.8rem, 7.8vw, 6.2rem);
  }

  .experience-copy h2 span {
    font-size: clamp(6rem, 10vw, 8.2rem);
  }

  .proof-photo {
    min-height: 190px;
  }

  .proof-grid .proof-photo:first-child {
    min-height: 392px;
  }
}

@media (min-width: 940px) and (max-height: 820px) {
  .site-header .header-inner {
    min-height: 62px;
  }

  html {
    scroll-padding-top: 74px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-photo {
    min-height: min(500px, calc(100vh - 170px));
  }

  .hero-note {
    margin-top: 16px;
    font-size: clamp(1.45rem, 2.7vw, 2rem);
  }

  .button-row {
    margin-top: 20px;
  }
}

@media (min-width: 1400px) {
  h1 {
    font-size: clamp(5.4rem, 7.5vw, 6.6rem);
  }

  h2 {
    font-size: clamp(3.8rem, 5.5vw, 5rem);
  }
}

/* --------------------------------------------------------------------------
   Laptop / small desktop hero fix v3
   The previous desktop rules still treated 1440–1536px screens like a large
   monitor. This keeps the warm visual language, but gives the headline more
   horizontal room and stops the hero from becoming a giant poster crop.
---------------------------------------------------------------------------- */

@media (min-width: 940px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
    align-items: center;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-copy h1 {
    max-width: 760px;
  }
}

@media (min-width: 1080px) and (max-width: 1399px) {
  :root {
    --container: 1120px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.26fr) minmax(300px, 0.74fr);
    gap: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(3.95rem, 5.35vw, 4.7rem);
    line-height: 0.99;
    letter-spacing: -0.052em;
  }

  .hero-photo {
    min-height: 430px;
  }

  .lead {
    max-width: 660px;
  }
}

@media (min-width: 1400px) and (max-width: 1699px) {
  :root {
    --container: 1260px;
  }

  .container {
    width: min(100% - 72px, var(--container));
  }

  .hero {
    padding-top: 62px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
    gap: 54px;
  }

  .hero-copy h1 {
    font-size: clamp(4.4rem, 5.15vw, 5.45rem);
    line-height: 0.98;
    letter-spacing: -0.052em;
  }

  .hero-copy,
  .hero-copy h1,
  .lead,
  .hero-subnote {
    max-width: 780px;
  }

  .hero-photo {
    min-height: 500px;
  }

  .lead {
    font-size: 1.18rem;
    line-height: 1.5;
  }
}

@media (min-width: 1400px) and (max-height: 900px) {
  .site-header .header-inner {
    min-height: 62px;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-photo {
    min-height: 460px;
  }

  .hero-copy h1 {
    font-size: clamp(4.1rem, 4.75vw, 5.05rem);
  }

  .hero-note {
    margin-top: 14px;
  }

  .button-row {
    margin-top: 18px;
  }
}

@media (min-width: 1700px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  }
}

/* --------------------------------------------------------------------------
   Desktop composition fix v4
   Fixes large-screen text placement after laptop review: service/CTA blocks
   should feel like editorial sections, not billboard posters.
---------------------------------------------------------------------------- */

@media (min-width: 940px) {
  h2 {
    font-size: clamp(3rem, 4.2vw, 4.35rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .section-head,
  .section-copy {
    max-width: 640px;
  }

  .section-head h2,
  .section-copy h2 {
    max-width: 680px;
  }

  .cta-card h2 {
    font-size: clamp(2.7rem, 3.5vw, 3.85rem);
    line-height: 1.04;
    max-width: 740px;
  }

  .after-playlists {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 36px;
    align-items: center;
    margin-top: 28px;
    padding: 38px 46px;
    text-align: left !important;
  }

  .after-playlists .eyebrow {
    grid-column: 1;
    margin-bottom: 0;
  }

  .after-playlists h2 {
    grid-column: 1;
    margin-bottom: 0;
    font-size: clamp(2.35rem, 3.1vw, 3.25rem);
    line-height: 1.05;
    max-width: 720px;
  }

  .after-playlists .button {
    grid-column: 2;
    grid-row: 1 / span 3;
    justify-self: end;
    white-space: nowrap;
  }

  .after-playlists .microcopy {
    grid-column: 1;
    max-width: 680px;
    margin-top: 6px;
  }

  .price-card {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
    gap: 20px 42px;
    padding: 44px 52px;
    align-items: center;
  }

  .price-card h2 {
    font-size: clamp(2.8rem, 3.6vw, 3.8rem);
    margin-bottom: 16px;
  }

  .price-card .price-value {
    align-self: center;
    justify-self: end;
    max-width: 520px;
    font-size: clamp(4rem, 5.4vw, 5.4rem);
    line-height: 0.96;
    text-align: right;
  }

  .price-card p {
    max-width: 620px;
  }

  .price-card .button-row {
    margin-top: 10px;
  }

  .org-faq-section .faq-grid {
    grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
    align-items: start;
    gap: 70px;
  }

  .org-faq-section .section-copy {
    max-width: 520px;
    padding-top: 36px;
  }

  .org-faq-section .section-copy h2 {
    font-size: clamp(3.2rem, 4.2vw, 4.4rem);
    max-width: 500px;
  }

  .org-faq-section .section-copy p {
    max-width: 460px;
  }

  .faq-section .section-copy h2 {
    font-size: clamp(3rem, 3.9vw, 4.2rem);
  }

  .final-cta .cta-card {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 16px 58px;
    align-items: center;
    max-width: 1080px;
    margin-inline: auto;
    padding: 54px 64px;
    text-align: left;
  }

  .final-cta .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -4px;
  }

  .final-cta h2 {
    grid-column: 1;
    grid-row: 2 / span 4;
    max-width: 520px;
    margin-bottom: 0;
    font-size: clamp(3rem, 4.1vw, 4.15rem);
    line-height: 1.02;
  }

  .final-cta .cta-card > p:not(.eyebrow):not(.microcopy):not(.honest-note),
  .final-cta .button-row,
  .final-cta .microcopy,
  .final-cta .honest-note {
    grid-column: 2;
  }

  .final-cta .button-row {
    justify-content: flex-start;
    margin-top: 10px;
  }

  .final-cta .microcopy,
  .final-cta .honest-note {
    max-width: 560px;
  }
}

@media (min-width: 1080px) and (max-width: 1699px) {
  .section {
    padding: 78px 0;
  }

  .section-tight {
    padding: 42px 0 72px;
  }

  .after-playlists h2 {
    font-size: clamp(2.25rem, 2.8vw, 2.95rem);
  }

  .price-card .price-value {
    font-size: clamp(3.9rem, 5vw, 5rem);
  }

  .org-faq-section .section-copy h2 {
    font-size: clamp(3rem, 3.8vw, 4rem);
  }

  .final-cta .cta-card {
    max-width: 1060px;
    padding: 50px 58px;
  }

  .final-cta h2 {
    font-size: clamp(2.85rem, 3.65vw, 3.75rem);
  }
}

@media (min-width: 940px) and (max-width: 1120px) {
  .after-playlists,
  .price-card,
  .final-cta .cta-card {
    grid-template-columns: 1fr;
    padding: 36px;
  }

  .after-playlists .button,
  .after-playlists .microcopy,
  .final-cta h2,
  .final-cta .cta-card > p:not(.eyebrow):not(.microcopy):not(.honest-note),
  .final-cta .button-row,
  .final-cta .microcopy,
  .final-cta .honest-note {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .price-card .price-value {
    justify-self: start;
    text-align: left;
  }

  .org-faq-section .faq-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .org-faq-section .section-copy {
    padding-top: 0;
  }
}

@media (max-width: 719px) {
  .after-playlists h2,
  .final-cta h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }
}

/* --------------------------------------------------------------------------
   Approved copy v5
   The client-facing text is now preserved more fully, so these helpers keep
   longer approved paragraphs readable instead of turning them into posters.
---------------------------------------------------------------------------- */

.copy-flow p {
  max-width: 720px;
}

.copy-flow p + p {
  margin-top: 0.92rem;
}

.process-layout {
  display: grid;
  gap: 28px;
}

.steps-column h3 {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.steps-note {
  max-width: 680px;
  margin-top: 16px;
}

.human-card {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(26px, 7vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 86% 8%, rgba(176, 138, 87, 0.16), transparent 20rem),
    rgba(255, 249, 239, 0.62);
  box-shadow: 0 18px 42px rgba(23, 21, 19, 0.08);
}

.human-card h2 {
  max-width: 860px;
}

.fit-card.copy-flow p {
  max-width: 760px;
}

.fit-card.copy-flow p:last-child {
  margin-bottom: 0;
}

.final-copy {
  max-width: 560px;
}

.final-copy p {
  margin-bottom: 0.55rem;
}

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

@media (min-width: 940px) {
  .process-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    align-items: start;
    gap: 58px;
  }

  .process-layout .section-head {
    position: sticky;
    top: 96px;
    margin-bottom: 0;
  }

  .steps-column .stepper {
    margin-top: 0;
  }

  .fit-card h2 {
    font-size: clamp(2.6rem, 3.4vw, 3.55rem);
  }

  .fit-card.copy-flow p {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .human-card h2 {
    font-size: clamp(2.8rem, 3.65vw, 4rem);
  }

  .final-cta .final-copy {
    grid-column: 2;
  }
}

@media (min-width: 940px) and (max-width: 1120px) {
  .process-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-layout .section-head {
    position: static;
  }

  .final-cta .final-copy {
    grid-column: 1;
  }
}

@media (min-width: 1080px) and (max-width: 1699px) {
  .fit-card.copy-flow p {
    font-size: 0.95rem;
  }

  .human-card {
    padding: 44px 52px;
  }
}

/* --------------------------------------------------------------------------
   Editorial text layout v7
   Based on v5 approved copy. The text stays visible, but long blocks now read
   like an editorial page instead of a stack of portyanki.
---------------------------------------------------------------------------- */

.lead-text {
  color: var(--graphite);
  font-size: clamp(1.12rem, 2.8vw, 1.38rem);
  line-height: 1.45;
  letter-spacing: -0.015em;
}

.decision-grid {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.decision-grid p {
  display: grid;
  gap: 6px;
  max-width: none;
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(106, 74, 53, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 249, 239, 0.64);
}

.decision-grid strong {
  color: var(--burgundy);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.decision-grid span {
  color: var(--graphite);
}

.music-territory-card {
  margin: 22px 0;
  padding: 22px;
  border: 1px solid rgba(168, 95, 61, 0.22);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 92% 12%, rgba(176, 138, 87, 0.18), transparent 18rem),
    rgba(255, 249, 239, 0.66);
}

.music-territory-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.music-territory-card p {
  max-width: 680px;
  margin: 0;
}

.editorial-list {
  display: grid;
  gap: 0;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.editorial-list li {
  position: relative;
  padding: 15px 0 15px 34px;
  border-top: 1px solid rgba(23, 21, 19, 0.11);
  line-height: 1.55;
}

.editorial-list li:last-child {
  border-bottom: 1px solid rgba(23, 21, 19, 0.11);
}

.editorial-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--terracotta);
  box-shadow: 0 0 0 6px rgba(168, 95, 61, 0.11);
}

.fit-card.negative .editorial-list li {
  border-color: rgba(255, 249, 239, 0.14);
}

.fit-card.negative .editorial-list li::before {
  background: #E3B882;
  box-shadow: 0 0 0 6px rgba(227, 184, 130, 0.12);
}

.human-note {
  margin: 22px 0;
  padding: 20px;
  border: 1px solid rgba(106, 74, 53, 0.18);
  border-radius: var(--radius-md);
  background: rgba(244, 239, 231, 0.62);
}

.human-note p {
  margin-bottom: 0.75rem;
}

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

.dark-note {
  border-color: rgba(255, 249, 239, 0.14);
  background: rgba(255, 249, 239, 0.08);
}

.experience-story {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.experience-story p {
  max-width: 66ch;
  margin: 0;
}

.story-quote {
  padding: 18px 20px;
  border-left: 4px solid var(--terracotta);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--brown);
  background: rgba(255, 249, 239, 0.62);
  font-weight: 900;
}

.final-copy-card {
  padding: 20px 22px;
  border: 1px solid rgba(255, 249, 239, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 249, 239, 0.08);
}

.final-copy-card p {
  max-width: none;
}

@media (min-width: 720px) and (max-width: 939px) {
  .fit-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 940px) {
  .lead-text {
    font-size: 1.24rem;
  }

  .decision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .decision-grid p {
    padding: 20px 22px;
  }

  .music-territory-card {
    padding: 24px 28px;
  }

  .fit-card {
    padding: 40px 42px;
  }

  .fit-card h2 {
    margin-bottom: 24px;
  }

  .editorial-list {
    margin: 24px 0;
  }

  .editorial-list li {
    padding-block: 16px;
    font-size: 0.98rem;
  }

  .human-note {
    padding: 22px 24px;
  }

  .experience-story {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 28px;
  }

  .experience-story .story-quote {
    grid-column: 1 / -1;
    max-width: 720px;
  }
}

@media (min-width: 1080px) and (max-width: 1699px) {
  .fit-grid {
    gap: 22px;
  }

  .fit-card h2 {
    font-size: clamp(2.35rem, 2.85vw, 3.2rem);
  }

  .fit-card {
    padding: 34px 36px;
  }

  .editorial-list li {
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .human-note {
    font-size: 0.95rem;
  }
}

@media (min-width: 1400px) {
  .fit-grid {
    align-items: start;
  }

  .experience-grid {
    align-items: start;
  }
}

@media (max-width: 719px) {
  .editorial-list li {
    padding-left: 30px;
  }

  .human-note,
  .music-territory-card,
  .final-copy-card {
    padding: 18px;
  }
}


/* --------------------------------------------------------------------------
   Desktop composition fixes v8
   Fixes laptop review notes: awkward text placement in process cards, uneven
   fit cards, excess vertical gaps around price/FAQ, and the experience story
   continuing in a narrow left column after the proof photos end.
---------------------------------------------------------------------------- */

@media (min-width: 940px) {
  .process-layout .section-head {
    position: static;
    top: auto;
  }

  .decision-grid p {
    align-content: start;
    align-items: start;
  }

  .fit-grid {
    align-items: stretch;
  }

  .fit-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .fit-card .accent-text {
    margin-top: auto;
    padding-top: 10px;
  }

  .price-section {
    padding-top: 62px;
    padding-bottom: 48px;
  }

  .org-faq-section {
    padding-top: 54px;
  }

  .experience-section {
    padding-top: 66px;
  }

  .experience-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    align-items: center;
    gap: 34px 58px;
  }

  .experience-copy {
    max-width: 620px;
  }

  .experience-story {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 32px;
    max-width: none;
    margin-top: 18px;
    padding: 26px 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 249, 239, 0.56);
    box-shadow: 0 18px 42px rgba(23, 21, 19, 0.06);
  }

  .experience-story p {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .experience-story .story-quote {
    grid-column: span 3;
    max-width: none;
  }
}

@media (min-width: 1080px) and (max-width: 1699px) {
  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .process-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
    gap: 52px;
  }

  .decision-grid {
    gap: 14px;
  }

  .decision-grid p {
    padding: 18px 20px;
  }

  .fit-section {
    padding-bottom: 58px;
  }

  .fit-card {
    padding: 34px 36px 36px;
  }

  .price-card {
    min-height: 0;
    padding: 42px 52px;
  }

  .org-faq-section .section-copy {
    padding-top: 16px;
  }

  .experience-grid {
    gap: 30px 54px;
  }

  .experience-copy h2 span {
    font-size: clamp(5.4rem, 8.2vw, 7.2rem);
  }

  .experience-story {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 24px 28px;
  }
}

@media (min-width: 940px) and (max-width: 1120px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-story {
    grid-template-columns: 1fr 1fr;
  }

  .experience-story .story-quote {
    grid-column: 1 / -1;
  }
}

@media (max-width: 939px) {
  .experience-story {
    margin-top: 22px;
  }
}

/* --------------------------------------------------------------------------
   Process section placement fix v9
   The outcome cards no longer sit as two cramped boxes inside the left text
   column. They now become a full-width editorial outcome block after the
   stepper, removing the awkward empty gutter on laptop screens.
---------------------------------------------------------------------------- */

.process-outcomes {
  display: grid;
  gap: 14px;
}

.process-outcomes .decision-grid {
  margin: 0;
}

.process-outcomes .steps-note {
  margin: 0;
  max-width: 780px;
}

@media (min-width: 940px) {
  .process-outcomes {
    grid-column: 1 / -1;
    margin-top: -4px;
  }

  .process-outcomes .decision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .process-outcomes .decision-grid p {
    min-height: 0;
    padding: 22px 24px;
  }
}

@media (min-width: 1080px) and (max-width: 1699px) {
  .process-outcomes {
    margin-top: -14px;
  }

  .process-outcomes .decision-grid p {
    padding: 20px 22px;
  }
}

@media (max-width: 939px) {
  .process-outcomes .decision-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Process conclusion fix v10
   The musical check now ends with a clear editorial conclusion, not two loose
   boxes floating in a large empty area.
---------------------------------------------------------------------------- */

.process-summary {
  grid-column: 1 / -1;
  display: grid;
  gap: 20px;
  margin-top: 8px;
  padding: 28px;
  border: 1px solid rgba(23, 21, 19, 0.12);
  border-radius: var(--radius-lg);
  color: var(--cream);
  background:
    radial-gradient(circle at 88% 8%, rgba(176, 138, 87, 0.24), transparent 22rem),
    radial-gradient(circle at 8% 100%, rgba(168, 95, 61, 0.22), transparent 20rem),
    var(--warm-black);
  box-shadow: 0 22px 54px rgba(23, 21, 19, 0.14);
}

.process-summary .summary-copy {
  max-width: 620px;
}

.process-summary .eyebrow {
  color: var(--brass);
  margin-bottom: 10px;
}

.process-summary h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.process-summary .summary-copy p:not(.eyebrow) {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 249, 239, 0.78);
}

.summary-results {
  display: grid;
  gap: 12px;
}

.summary-results article {
  position: relative;
  min-height: 100%;
  padding: 18px 18px 18px 58px;
  border: 1px solid rgba(255, 249, 239, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 249, 239, 0.08);
}

.summary-results article > span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--warm-black);
  background: var(--brass);
  font-size: 0.72rem;
  font-weight: 900;
}

.summary-results strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cream);
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.summary-results p {
  max-width: 48ch;
  margin: 0;
  color: rgba(255, 249, 239, 0.74);
  font-size: 0.98rem;
  line-height: 1.55;
}

@media (min-width: 940px) {
  .process-summary {
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
    align-items: center;
    gap: 34px;
    margin-top: 8px;
    padding: 32px 38px;
  }

  .process-summary .summary-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) and (max-width: 1699px) {
  .process-summary {
    margin-top: -2px;
    padding: 30px 36px;
  }

  .process-summary h3 {
    font-size: clamp(2.25rem, 2.75vw, 3rem);
  }

  .summary-results article {
    padding: 18px 18px 18px 56px;
  }
}

@media (max-width: 719px) {
  .process-summary {
    padding: 24px 20px;
  }

  .summary-results article {
    padding-left: 54px;
  }
}


/* --------------------------------------------------------------------------
   Yandex Music iframe v13
   Built on top of v10 typography/composition. The embed is optional and scoped
   so it does not change global heading sizes.
---------------------------------------------------------------------------- */

.music-embed-card {
  margin-top: clamp(24px, 4vw, 42px);
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3.2vw, 38px);
  border: 1px solid rgba(106, 74, 53, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 12%, rgba(176, 138, 87, 0.16), transparent 20rem),
    linear-gradient(145deg, rgba(255, 249, 239, 0.9), rgba(244, 239, 231, 0.58));
  box-shadow: 0 20px 70px rgba(23, 21, 19, 0.08);
}

.music-embed-copy {
  max-width: 620px;
}

.music-embed-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.8vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.music-embed-copy p {
  max-width: 52ch;
  margin-bottom: 14px;
}

.music-embed-copy .button {
  margin-top: 4px;
}

.embed-note {
  color: var(--muted);
  font-size: 0.98rem;
}

.music-embed-frame {
  overflow: hidden;
  width: 100%;
  min-height: 500px;
  border: 1px solid rgba(23, 21, 19, 0.08);
  border-radius: calc(var(--radius-lg) - 8px);
  background: var(--warm-black);
  box-shadow:
    inset 0 0 0 1px rgba(255, 249, 239, 0.05),
    0 18px 48px rgba(23, 21, 19, 0.14);
}

.music-embed-frame iframe {
  display: block;
  width: 100%;
  height: 556px;
  border: 0;
  background: var(--warm-black);
}

@media (min-width: 940px) {
  .music-embed-card {
    grid-template-columns: minmax(280px, 0.42fr) minmax(420px, 0.58fr);
    align-items: center;
    gap: clamp(26px, 4vw, 52px);
  }

  .music-embed-title {
    font-size: clamp(2.45rem, 3.1vw, 3.45rem);
  }
}

@media (min-width: 1080px) and (max-width: 1699px) {
  .music-embed-card {
    margin-top: 30px;
    padding: 30px 36px;
    grid-template-columns: minmax(300px, 0.4fr) minmax(500px, 0.6fr);
  }

  .music-embed-title {
    font-size: clamp(2.35rem, 2.75vw, 3.15rem);
  }
}

@media (min-width: 940px) and (max-width: 1120px) {
  .music-embed-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 719px) {
  .music-embed-card {
    padding: 20px;
    border-radius: 26px;
  }

  .music-embed-frame {
    min-height: 500px;
    border-radius: 22px;
  }

  .music-embed-frame iframe {
    height: 500px;
  }
}

/* --------------------------------------------------------------------------
   Playlist player v14
   The playlist block is now one consistent component: playlist selectors on
   the left/top, Yandex Music player on the right/below. No separate “cards +
   random iframe” mismatch.
---------------------------------------------------------------------------- */

.playlist-player {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.playlist-tabs {
  display: grid;
  gap: 12px;
}

.playlist-tab {
  width: 100%;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(106, 74, 53, 0.18);
  border-radius: 24px;
  color: var(--warm-black);
  background: rgba(255, 249, 239, 0.62);
  box-shadow: 0 12px 32px rgba(23, 21, 19, 0.055);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.playlist-tab:hover,
.playlist-tab:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(168, 95, 61, 0.32);
  box-shadow: 0 18px 42px rgba(23, 21, 19, 0.08);
}

.playlist-tab:focus-visible {
  outline: 3px solid rgba(168, 95, 61, 0.3);
  outline-offset: 3px;
}

.playlist-tab.is-active {
  color: var(--cream);
  border-color: rgba(255, 249, 239, 0.18);
  background:
    radial-gradient(circle at 88% 18%, rgba(176, 138, 87, 0.26), transparent 16rem),
    linear-gradient(145deg, var(--warm-black), var(--brown));
  box-shadow: 0 22px 58px rgba(23, 21, 19, 0.16);
}

.playlist-tab-number {
  display: block;
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 2.45rem;
  line-height: 0.84;
  letter-spacing: -0.05em;
}

.playlist-tab.is-active .playlist-tab-number {
  color: rgba(255, 249, 239, 0.52);
}

.playlist-tab-copy {
  display: grid;
  gap: 6px;
}

.playlist-tab-copy strong {
  display: block;
  font-size: 1rem;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.playlist-tab-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.playlist-tab.is-active .playlist-tab-copy span {
  color: rgba(255, 249, 239, 0.72);
}

.playlist-player-panel {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3.2vw, 38px);
  border: 1px solid rgba(106, 74, 53, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 12%, rgba(176, 138, 87, 0.16), transparent 20rem),
    linear-gradient(145deg, rgba(255, 249, 239, 0.9), rgba(244, 239, 231, 0.58));
  box-shadow: 0 20px 70px rgba(23, 21, 19, 0.08);
}

.playlist-player-copy {
  max-width: 640px;
}

.playlist-player-copy h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.8vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.playlist-player-copy p:not(.eyebrow) {
  max-width: 54ch;
  color: var(--graphite);
}

.playlist-player-copy .button {
  margin-top: 4px;
}

.playlist-player-copy .button.is-disabled {
  color: var(--muted);
  border-color: rgba(23, 21, 19, 0.14);
  background: rgba(255, 249, 239, 0.42);
  cursor: default;
}

.playlist-iframe-wrap {
  overflow: hidden;
  width: 100%;
  min-height: 500px;
  border: 1px solid rgba(23, 21, 19, 0.08);
  border-radius: calc(var(--radius-lg) - 8px);
  background: var(--warm-black);
  box-shadow:
    inset 0 0 0 1px rgba(255, 249, 239, 0.05),
    0 18px 48px rgba(23, 21, 19, 0.14);
}

.playlist-iframe-wrap iframe {
  display: block;
  width: 100%;
  height: 556px;
  border: 0;
  background: var(--warm-black);
}

.playlist-iframe-wrap.is-empty {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 26px;
  background:
    radial-gradient(circle at 20% 18%, rgba(176, 138, 87, 0.2), transparent 18rem),
    linear-gradient(145deg, var(--graphite), var(--brown));
}

.playlist-empty {
  max-width: 420px;
  color: var(--cream);
  text-align: center;
}

.playlist-empty strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.playlist-empty span {
  color: rgba(255, 249, 239, 0.72);
}

@media (min-width: 940px) {
  .playlist-player {
    grid-template-columns: minmax(290px, 0.34fr) minmax(520px, 0.66fr);
    align-items: start;
    gap: 22px;
  }

  .playlist-tabs {
    position: sticky;
    top: 92px;
  }

  .playlist-player-copy h3 {
    font-size: clamp(2.45rem, 3vw, 3.4rem);
  }
}

@media (min-width: 1080px) and (max-width: 1699px) {
  .playlist-player {
    grid-template-columns: minmax(300px, 0.32fr) minmax(560px, 0.68fr);
    gap: 24px;
    margin-top: 24px;
  }

  .playlist-tab {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 16px;
  }

  .playlist-tab-number {
    font-size: 2.22rem;
  }

  .playlist-player-panel {
    padding: 30px 34px;
  }

  .playlist-player-copy h3 {
    font-size: clamp(2.35rem, 2.65vw, 3.05rem);
  }
}

@media (min-width: 940px) and (max-width: 1120px) {
  .playlist-player {
    grid-template-columns: 1fr;
  }

  .playlist-tabs {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  .playlist-player-panel {
    padding: 20px;
    border-radius: 26px;
  }

  .playlist-tab {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 16px;
    border-radius: 22px;
  }

  .playlist-tab-number {
    font-size: 2.05rem;
  }

  .playlist-iframe-wrap {
    min-height: 500px;
    border-radius: 22px;
  }

  .playlist-iframe-wrap iframe {
    height: 500px;
  }
}

/* --------------------------------------------------------------------------
   Playlist player v15: mobile duplicate selector
   On phones the iframe is tall, so the playlist choice is repeated as compact
   chips directly above the player. Desktop keeps the cleaner two-column layout.
---------------------------------------------------------------------------- */

.playlist-mobile-nav {
  display: none;
}

@media (max-width: 719px) {
  .playlist-mobile-nav {
    display: grid;
    gap: 10px;
    margin: -2px 0 2px;
    padding: 12px;
    border: 1px solid rgba(106, 74, 53, 0.16);
    border-radius: 20px;
    background: rgba(255, 249, 239, 0.62);
  }

  .playlist-mobile-nav-label {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .playlist-mobile-chips {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .playlist-mobile-chips::-webkit-scrollbar {
    display: none;
  }

  .playlist-mobile-chip {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 10px 13px;
    border: 1px solid rgba(106, 74, 53, 0.2);
    border-radius: 999px;
    color: var(--warm-black);
    background: rgba(255, 249, 239, 0.78);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
  }

  .playlist-mobile-chip.is-active {
    color: var(--cream);
    border-color: rgba(23, 21, 19, 0.08);
    background: var(--warm-black);
  }

  .playlist-mobile-chip:focus-visible {
    outline: 3px solid rgba(168, 95, 61, 0.28);
    outline-offset: 3px;
  }
}


/* --------------------------------------------------------------------------
   Real photo replacements v18
   Keeps the old placeholder containers/grid, but uses the uploaded project
   photos inside them so layout and rhythm stay intact.
---------------------------------------------------------------------------- */

.image-photo {
  background: var(--graphite);
}

.image-photo .photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  filter: saturate(0.92) contrast(0.96) brightness(0.9);
}

.image-photo::before {
  z-index: 1;
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(23, 21, 19, 0.02) 0%, rgba(23, 21, 19, 0.2) 42%, rgba(23, 21, 19, 0.74) 100%),
    radial-gradient(circle at 24% 20%, rgba(176, 138, 87, 0.18), transparent 18rem);
}

.image-photo::after {
  display: none;
}

.image-photo .photo-caption {
  z-index: 2;
}

.hero-photo .photo-img {
  object-position: center 38%;
}

.wide-photo .photo-img {
  object-position: center 42%;
}

.small-photo .photo-img {
  object-position: center 50%;
}

.proof-photo .photo-img {
  object-position: center 45%;
}

.proof-grid .proof-photo:first-child .photo-img {
  object-position: 25% 50%;
}

/* --------------------------------------------------------------------------
   Yandex Music iOS playback helper
   Keeps the iframe visible, but gives iPhone users a clear app fallback if
   Safari/Telegram/Instagram webview refuses playback inside the embed.
---------------------------------------------------------------------------- */

.playlist-playback-note {
  margin: 10px 0 0;
  max-width: 46ch;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (min-width: 720px) {
  .playlist-playback-note {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Mobile playlist fallback v16
   On phones the Yandex Music iframe is removed from the visible flow and not
   injected by JS. People open the playlist in the Yandex Music app instead.
---------------------------------------------------------------------------- */

@media (max-width: 719px) {
  .playlist-iframe-wrap {
    display: none !important;
  }

  .playlist-mobile-nav {
    display: none !important;
  }

  .playlist-player-panel {
    gap: 14px;
  }

  .playlist-player-copy .button {
    width: 100%;
    justify-content: center;
  }

  .playlist-playback-note {
    padding: 12px 14px;
    border: 1px solid rgba(106, 74, 53, 0.16);
    border-radius: 18px;
    background: rgba(255, 249, 239, 0.62);
  }
}

/* --------------------------------------------------------------------------
   Mobile playlist CTA clarity patch v17
   The embedded Yandex iframe is unreliable on iPhone, so mobile users should
   immediately see one obvious listening action, not hunt for the button below
   the playlist selectors.
---------------------------------------------------------------------------- */

.playlist-listen-label {
  display: none;
}

.playlist-open-button {
  letter-spacing: -0.01em;
}

@media (max-width: 719px) {
  .playlist-player {
    gap: 18px;
  }

  .playlist-player-panel {
    order: -1;
    padding: 22px 18px;
    border-color: rgba(168, 95, 61, 0.24);
    box-shadow: 0 18px 54px rgba(23, 21, 19, 0.10);
  }

  .playlist-listen-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 10px;
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--cream);
    background: var(--terracotta);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .playlist-player-copy h3 {
    margin-bottom: 12px;
  }

  .playlist-player-copy .playlist-open-button {
    min-height: 62px;
    margin-top: 18px;
    padding-inline: 18px;
    border-color: var(--warm-black);
    background: var(--warm-black);
    color: var(--cream);
    box-shadow: 0 16px 34px rgba(23, 21, 19, 0.16);
    font-size: 1rem;
  }

  .playlist-player-copy .playlist-open-button:not(.is-disabled):hover,
  .playlist-player-copy .playlist-open-button:not(.is-disabled):focus-visible {
    transform: translateY(-1px);
    background: var(--graphite);
  }

  .playlist-player-copy .playlist-open-button.is-disabled {
    background: rgba(255, 249, 239, 0.54);
    color: var(--muted);
    box-shadow: none;
  }

  .playlist-playback-note {
    margin-top: 14px;
    font-size: 0.92rem;
  }

  .playlist-tabs {
    position: relative;
    padding-top: 32px;
  }

  .playlist-tabs::before {
    content: "Другие музыкальные ориентиры";
    position: absolute;
    top: 0;
    left: 2px;
    color: var(--terracotta);
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .playlist-tab {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 16px 16px 14px;
  }

  .playlist-tab[data-link]:not([data-link="#"])::after {
    content: "Слушать →";
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--cream);
    background: var(--terracotta);
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .playlist-tab.is-active[data-link]:not([data-link="#"])::after {
    content: "Открыт выше ↑";
    color: var(--warm-black);
    background: rgba(255, 249, 239, 0.82);
  }
}

/* --------------------------------------------------------------------------
   Mobile playlist button text patch v18
   Keep the phone CTA visually centered and on one line when possible.
---------------------------------------------------------------------------- */

@media (max-width: 719px) {
  .playlist-player-copy .playlist-open-button {
    text-align: center;
    line-height: 1.15;
    white-space: nowrap;
    font-size: clamp(0.88rem, 4vw, 0.98rem);
    padding-inline: 14px;
  }
}


/* Contact buttons: музыка отдельно, каналы связи отдельной строкой */
.contact-action-stack {
  display: grid;
  gap: 16px;
  margin-top: 30px;
  align-items: start;
}

.contact-action-stack > .button {
  width: fit-content;
  min-width: 260px;
  max-width: 100%;
}

.contact-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

.contact-action-group .button {
  min-width: 228px;
  min-height: 56px;
  padding-inline: 22px;
}

.contact-action-group .button-primary {
  min-width: 264px;
  box-shadow: 0 14px 28px rgba(23, 21, 19, 0.12);
}

.price-card .contact-action-stack {
  grid-column: 1 / -1;
  margin-top: 34px;
}

.price-card .contact-action-stack > .button {
  width: min(100%, 390px);
  min-width: 0;
  min-height: 58px;
}

@media (min-width: 940px) {
  .price-card .contact-action-group,
  .final-cta .contact-action-group {
    flex-wrap: nowrap;
  }

  .price-card .contact-action-group .button,
  .final-cta .contact-action-group .button {
    min-width: 230px;
  }

  .price-card .contact-action-group .button-primary,
  .final-cta .contact-action-group .button-primary {
    min-width: 272px;
  }
}

.contact-line {
  color: var(--muted);
  font-size: 0.96rem;
}

.contact-line a {
  color: inherit;
  text-underline-offset: 0.18em;
}

.final-cta .contact-line {
  color: rgba(255, 249, 239, 0.72);
}

@media (max-width: 560px) {
  .contact-action-stack > .button,
  .contact-action-group .button {
    width: 100%;
    min-width: 0;
  }
}


/* Safe CTA patch: contact buttons inside the post-playlists card must not inherit the wide-card button grid positioning. */
.after-playlists .contact-action-stack {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  justify-items: start;
}

.after-playlists .contact-action-stack .button {
  grid-column: auto !important;
  grid-row: auto !important;
  justify-self: start !important;
  width: fit-content;
  min-width: 220px;
  white-space: nowrap;
}

@media (min-width: 940px) {
  #contact-after-music.after-playlists {
    grid-template-columns: minmax(0, 1fr) minmax(260px, auto);
    column-gap: clamp(32px, 6vw, 96px);
    align-items: center;
  }

  #contact-after-music .contact-action-stack {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    justify-self: end;
    margin-top: 0;
  }

  #contact-after-music .microcopy {
    grid-column: 1;
  }
}

@media (max-width: 939px) {
  #contact-after-music.after-playlists {
    display: block;
  }

  .after-playlists .contact-action-stack .button {
    width: 100%;
    min-width: 0;
    justify-self: stretch !important;
  }
}

/* Safe iframe fallback: Yandex Music embeds are unreliable; keep the external listen button as the visible action. */
@media (min-width: 720px) {
  .playlist-iframe-wrap,
  .desktop-playlist-frame {
    display: none !important;
  }
}

/* Partners page */
.partners-page .site-nav a[href="../"] {
  color: var(--brown);
}

.partner-hero h1 {
  max-width: 820px;
}

.partner-hero .hero-note {
  max-width: 720px;
}

.partner-hero-photo .photo-img {
  object-position: 38% center;
}

.partner-principle {
  grid-template-columns: 1fr;
}

.partner-principle h2 {
  max-width: 920px;
}

.partner-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-facts span,
.card-number {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(106, 74, 53, 0.24);
  border-radius: 999px;
  color: var(--brown);
  background: rgba(244, 239, 231, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-number {
  margin-bottom: 16px;
  color: var(--terracotta);
  background: rgba(168, 95, 61, 0.08);
}

.partner-card-grid .fit-card,
.partner-benefits-grid .fit-card {
  display: flex;
  flex-direction: column;
}

.partner-card-grid .fit-card h3,
.partner-benefits-grid .fit-card h3 {
  margin-top: 0;
}

.partner-negative-card {
  display: grid;
  gap: 28px;
  padding: clamp(26px, 8vw, 56px);
}

.partner-negative-card h2 {
  max-width: 880px;
}

.partner-negative-list {
  align-self: start;
}

.partner-negative-card .clean-list li::before {
  color: #E3B882;
}

.partner-process-section .stepper {
  margin: 0;
}

.partner-music-note strong {
  font-size: clamp(1.7rem, 6vw, 3.2rem);
}

.partner-chips {
  margin-top: 20px;
}

.share-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 0%, rgba(176, 138, 87, 0.14), transparent 28rem),
    rgba(255, 249, 239, 0.62);
  box-shadow: 0 18px 42px rgba(23, 21, 19, 0.08);
  padding: clamp(24px, 7vw, 48px);
}

.share-message {
  display: grid;
  gap: 14px;
  max-width: 840px;
  padding: clamp(20px, 5vw, 34px);
  border: 1px solid rgba(106, 74, 53, 0.18);
  border-radius: var(--radius-md);
  background: rgba(244, 239, 231, 0.6);
}

.share-message p {
  margin: 0;
}

.copy-button {
  border: 1px solid var(--warm-black);
  cursor: pointer;
}

.copy-status {
  min-height: 1.5em;
  margin-top: 14px;
}

.partner-proof-grid .proof-photo {
  min-height: 240px;
}

.partner-proof-grid .proof-photo:nth-child(1) {
  min-height: 300px;
}

.partner-proof-grid .photo-img {
  object-fit: cover;
}

.partners-page .final-copy-card {
  display: grid;
  gap: 10px;
}

.partners-page .final-copy-card p {
  margin: 0;
}

@media (min-width: 720px) {
  .partner-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-proof-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .partner-proof-grid .proof-photo:first-child {
    grid-row: span 2;
  }
}

@media (min-width: 940px) {
  .partner-negative-card {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: start;
  }

  .partner-benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .partner-principle {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .partners-page .button-row .button,
  .partners-page .contact-action-stack .button {
    width: 100%;
  }

  .partner-hero-photo {
    min-height: 420px;
  }

  .share-message {
    font-size: 0.98rem;
  }
}

/* Keep partner final CTA simple and collision-free across breakpoints. */
.partners-page .final-cta .cta-card {
  display: block;
  max-width: 1040px;
  margin-inline: auto;
  text-align: center;
}

.partners-page .final-cta h2,
.partners-page .final-cta .final-copy,
.partners-page .final-cta .microcopy,
.partners-page .final-cta .contact-line {
  max-width: 760px;
  margin-inline: auto;
}

.partners-page .final-cta .contact-action-stack {
  justify-items: center;
}

.partners-page .final-cta .contact-action-stack > .button {
  width: fit-content;
  min-width: 260px;
  max-width: 100%;
}

.final-cta .contact-action-stack {
  justify-items: center;
}

.final-cta .contact-action-group {
  justify-content: center;
}


@media (max-width: 560px) {
  .partners-page .final-cta .contact-action-stack > .button {
    width: 100%;
  }
}

/* Quiet main-page link to the partner page */
.footer-side {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--terracotta);
}

@media (min-width: 720px) {
  .footer-side {
    justify-items: end;
    text-align: right;
  }
}

/* --------------------------------------------------------------------------
   Partners page visual unification v3
   The first partner draft used too many component moods at once. These rules
   calm the page down into one professional B2B rhythm while keeping the main
   landing page intact.
---------------------------------------------------------------------------- */

.partners-page {
  background:
    radial-gradient(circle at 8% 0%, rgba(176, 138, 87, 0.18), transparent 34rem),
    radial-gradient(circle at 86% 12%, rgba(168, 95, 61, 0.10), transparent 30rem),
    linear-gradient(180deg, var(--ivory) 0%, #EFE6DA 100%);
}

.partners-page .site-header {
  background: rgba(244, 239, 231, 0.9);
}

.partners-page .section {
  padding-block: clamp(58px, 8vw, 92px);
}

.partners-page .section-tight {
  padding-block: clamp(28px, 5vw, 54px) clamp(58px, 8vw, 86px);
}

.partners-page .section-head {
  max-width: 780px;
  margin-bottom: clamp(24px, 4vw, 36px);
}

.partners-page .eyebrow {
  color: var(--brown);
}

.partners-page h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 11vw, 5.3rem);
  line-height: 1.01;
}

.partners-page h2 {
  font-size: clamp(2.15rem, 8vw, 4.1rem);
  line-height: 1.04;
}

.partners-page h3 {
  font-size: clamp(1.2rem, 3vw, 1.42rem);
}

.partners-page .lead {
  max-width: 720px;
}

.partners-page .hero-note {
  max-width: 720px;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 3.6vw, 1.22rem);
  line-height: 1.52;
  letter-spacing: 0;
  color: var(--graphite);
}

.partners-page .hero-subnote {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  padding: 10px 14px;
  border: 1px solid rgba(106, 74, 53, 0.22);
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.58);
  color: var(--brown);
  font-size: 0.95rem;
  font-weight: 850;
}

.partners-page .hero-photo {
  box-shadow: 0 18px 44px rgba(23, 21, 19, 0.13);
}

.partners-page .photo-placeholder::after {
  display: none;
}

.partners-page .photo-placeholder::before {
  opacity: 0.22;
  background: linear-gradient(180deg, transparent 30%, rgba(23, 21, 19, 0.76));
}

.partners-page .photo-caption {
  padding-top: 76px;
  background: linear-gradient(180deg, transparent, rgba(23, 21, 19, 0.42));
}

.partners-page .button {
  min-height: 50px;
}

.partners-page .button-row {
  gap: 10px;
}

.partners-page .principle-card,
.partners-page .fit-card,
.partners-page .note-card,
.partners-page .share-card,
.partners-page .stepper,
.partners-page .accordion,
.partners-page .stage-grid article {
  border-color: rgba(106, 74, 53, 0.16);
  background: rgba(255, 249, 239, 0.62);
  box-shadow: 0 14px 34px rgba(23, 21, 19, 0.065);
}

.partners-page .partner-principle {
  position: relative;
  overflow: hidden;
}

.partners-page .partner-principle::before,
.partners-page .share-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 94% 12%, rgba(176, 138, 87, 0.16), transparent 22rem);
}

.partners-page .partner-principle > *,
.partners-page .share-card > * {
  position: relative;
  z-index: 1;
}

.partners-page .partner-facts span,
.partners-page .card-number,
.partners-page .chips span {
  background: rgba(244, 239, 231, 0.82);
  border-color: rgba(106, 74, 53, 0.20);
}

.partners-page .card-number {
  margin-bottom: 14px;
  color: var(--brown);
}

.partners-page .fit-grid,
.partners-page .partner-card-grid,
.partners-page .partner-benefits-grid {
  gap: clamp(14px, 2vw, 20px);
}

.partners-page .fit-card {
  padding: clamp(22px, 4.8vw, 34px);
}

.partners-page .fit-card p {
  color: var(--graphite);
}

.partners-page .partner-card-grid .fit-card,
.partners-page .partner-benefits-grid .fit-card {
  min-height: 100%;
}

.partners-page .partner-negative-card {
  color: var(--warm-black);
  background:
    linear-gradient(135deg, rgba(42, 41, 38, 0.055), transparent),
    rgba(255, 249, 239, 0.68);
  border: 1px solid rgba(111, 46, 46, 0.20);
}

.partners-page .partner-negative-card.negative .eyebrow,
.partners-page .partner-negative-card.negative .accent-text {
  color: var(--burgundy);
}

.partners-page .partner-negative-card .clean-list li {
  border-bottom-color: rgba(111, 46, 46, 0.13);
}

.partners-page .partner-negative-card .clean-list li::before {
  color: var(--burgundy);
}

.partners-page .partner-process-section {
  background: linear-gradient(180deg, transparent 0%, rgba(23, 21, 19, 0.028) 48%, transparent 100%);
}

.partners-page .partner-process-section .stepper {
  padding: clamp(10px, 2vw, 18px) clamp(18px, 3vw, 28px);
}

.partners-page .stepper li::before {
  background: var(--brown);
}

.partners-page .partner-music-note {
  align-self: start;
}

.partners-page .partner-music-note strong {
  font-size: clamp(1.42rem, 4vw, 2.18rem);
  line-height: 1.12;
}

.partners-page .share-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 5vw, 40px);
  background: rgba(255, 249, 239, 0.70);
}

.partners-page .share-message {
  max-width: none;
  padding: clamp(18px, 3.4vw, 28px);
  border-color: rgba(106, 74, 53, 0.18);
  background: rgba(244, 239, 231, 0.74);
  color: var(--graphite);
}

.partners-page .copy-button {
  border-color: var(--warm-black);
}

.partners-page .experience-grid {
  align-items: center;
}

.partners-page .experience-copy h2 span {
  color: var(--brown);
}

.partners-page .partner-proof-grid {
  gap: 14px;
}

.partners-page .partner-proof-grid .proof-photo {
  min-height: 220px;
  border-color: rgba(106, 74, 53, 0.16);
  box-shadow: 0 14px 34px rgba(23, 21, 19, 0.08);
}

.partners-page .faq-section .faq-grid {
  align-items: start;
}

.partners-page .accordion-button {
  padding-block: 18px;
}

.partners-page .final-cta .cta-card {
  background:
    radial-gradient(circle at 16% 18%, rgba(176, 138, 87, 0.24), transparent 24rem),
    linear-gradient(145deg, var(--warm-black), var(--graphite));
  box-shadow: 0 20px 52px rgba(23, 21, 19, 0.18);
}

.partners-page .final-copy-card {
  max-width: 700px;
  margin-inline: auto;
  color: rgba(255, 249, 239, 0.86);
}

.partners-page .contact-action-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.partners-page .contact-line a {
  color: var(--cream);
  text-underline-offset: 3px;
}


@media (min-width: 720px) {
  .partners-page .partner-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-page .partner-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-page .share-card .button-row {
    align-items: center;
  }
}

@media (min-width: 940px) {
  .partners-page .hero {
    padding-top: clamp(54px, 5vw, 78px);
  }

  .partners-page .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
    gap: clamp(34px, 5vw, 62px);
  }

  .partners-page .hero-copy,
  .partners-page .hero-copy h1 {
    max-width: 820px;
  }

  .partners-page .hero-photo {
    min-height: 520px;
  }

  .partners-page .partner-hero-photo .photo-img {
    object-position: 36% center;
  }

  .partners-page .partner-negative-card {
    grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.82fr);
    gap: 36px;
  }

  .partners-page .partner-benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .partners-page .process-layout {
    grid-template-columns: minmax(280px, 0.7fr) minmax(520px, 1.3fr);
    align-items: start;
    gap: 48px;
  }

  .partners-page .two-column,
  .partners-page .faq-grid,
  .partners-page .experience-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 52px;
  }

  .partners-page .partner-music-note {
    margin-top: 8px;
  }

  .partners-page .share-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px 28px;
    align-items: center;
  }

  .partners-page .share-message {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .partners-page .share-card .button-row,
  .partners-page .share-card .copy-status {
    grid-column: 2;
    align-self: center;
    margin-top: 0;
  }

  .partners-page .share-card .button-row {
    display: grid;
    min-width: 240px;
  }

  .partners-page .share-card .button {
    width: 100%;
  }

  .partners-page .final-cta .cta-card {
    max-width: 980px;
    padding: clamp(42px, 5vw, 58px);
  }
}

@media (min-width: 1080px) and (max-width: 1399px) {
  .partners-page .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  }

  .partners-page .hero-copy h1 {
    font-size: clamp(3.5rem, 4.9vw, 4.45rem);
  }

  .partners-page .hero-photo {
    min-height: 460px;
  }
}

@media (min-width: 1400px) {
  .partners-page .hero-copy h1 {
    font-size: clamp(4.1rem, 4.8vw, 5.1rem);
  }

  .partners-page .hero-photo {
    min-height: 540px;
  }
}

@media (max-width: 719px) {
  .partners-page .container {
    width: min(100% - 28px, var(--container));
  }

  .partners-page .hero {
    padding-top: 38px;
  }

  .partners-page .hero-photo,
  .partners-page .partner-hero-photo {
    min-height: 340px;
  }

  .partners-page .hero-subnote {
    border-radius: 18px;
  }

  .partners-page .partner-facts,
  .partners-page .chips {
    gap: 8px;
  }

  .partners-page .partner-negative-card {
    gap: 22px;
  }

  .partners-page .contact-action-stack {
    display: grid;
  }
}

@media (max-width: 719px) {
  .partners-page .contact-action-stack .button {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Playlist artist markers v19
   Small reference chips help users understand the musical territory of the
   active playlist without turning the block into a heavy catalogue.
---------------------------------------------------------------------------- */

.playlist-artist-markers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 18px 0 16px;
  max-width: 58ch;
}

.playlist-artist-label {
  flex: 0 0 auto;
  margin-right: 2px;
  color: var(--terracotta);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.playlist-artist-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(106, 74, 53, 0.18);
  border-radius: 999px;
  color: var(--graphite);
  background: rgba(255, 249, 239, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

.tender-artist-markers {
  margin-top: 14px;
}

@media (max-width: 719px) {
  .playlist-artist-markers {
    gap: 7px;
    margin: 16px 0 16px;
  }

  .playlist-artist-label {
    flex-basis: 100%;
    margin: 0 0 1px;
    font-size: 0.7rem;
  }

  .playlist-artist-chip {
    min-height: 32px;
    padding: 8px 10px;
    font-size: 0.82rem;
  }
}

/* --------------------------------------------------------------------------
   Music block emphasis v19
   The playlist section is the heart of the page, so it gets its own warm
   listening-room background while keeping the cards calm and readable.
---------------------------------------------------------------------------- */

.playlists-section .playlist-player {
  position: relative;
  z-index: 1;
}

.playlists-section .playlist-tab {
  color: var(--cream);
  border-color: rgba(255, 249, 239, 0.14);
  background: rgba(255, 249, 239, 0.075);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
}

.playlists-section .playlist-tab:hover,
.playlists-section .playlist-tab:focus-visible {
  border-color: rgba(255, 249, 239, 0.28);
  background: rgba(255, 249, 239, 0.11);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.playlists-section .playlist-tab-number {
  color: rgba(255, 249, 239, 0.48);
}

.playlists-section .playlist-tab-copy span {
  color: rgba(255, 249, 239, 0.64);
}

.playlists-section .playlist-tab.is-active {
  color: var(--warm-black);
  border-color: rgba(255, 249, 239, 0.68);
  background:
    radial-gradient(circle at 92% 12%, rgba(176, 138, 87, 0.22), transparent 14rem),
    linear-gradient(145deg, var(--cream), #E8DED2);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.26);
}

.playlists-section .playlist-tab.is-active .playlist-tab-number {
  color: var(--terracotta);
}

.playlists-section .playlist-tab.is-active .playlist-tab-copy span {
  color: var(--muted);
}

.playlists-section .playlist-player-panel,
.playlists-section .after-playlists {
  border-color: rgba(255, 249, 239, 0.2);
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.22);
}

.playlists-section .after-playlists {
  background:
    radial-gradient(circle at 92% 12%, rgba(176, 138, 87, 0.16), transparent 18rem),
    rgba(255, 249, 239, 0.9);
}

.playlists-section .after-playlists .eyebrow {
  color: var(--terracotta);
}

.playlists-section .after-playlists h2,
.playlists-section .after-playlists p:not(.microcopy),
.playlists-section .after-playlists .playlist-artist-label {
  color: var(--warm-black);
}

.playlists-section .after-playlists .microcopy {
  color: var(--muted);
}

.playlists-section .button-secondary {
  color: var(--cream);
  border-color: rgba(255, 249, 239, 0.34);
}

.playlists-section .button-secondary:hover {
  color: var(--warm-black);
  background: var(--cream);
}

.playlists-section .after-playlists .button-secondary {
  color: var(--warm-black);
  border-color: rgba(23, 21, 19, 0.24);
}

.playlists-section .after-playlists .button-secondary:hover {
  background: rgba(255, 249, 239, 0.8);
}

@media (max-width: 719px) {
  .playlists-section {
    margin: 18px 0;
    padding: 74px 0 84px;
  }

  .playlists-section::after {
    left: 16px;
    right: auto;
    top: 24px;
    font-size: 4.8rem;
    opacity: 0.9;
  }

  .music-section-note {
    padding: 16px;
    border-radius: 20px;
  }

  .playlists-section .playlist-tabs::before {
    color: rgba(255, 249, 239, 0.68);
  }

  .playlists-section .playlist-tab[data-link]:not([data-link="#"])::after {
    color: var(--warm-black);
    background: var(--cream);
  }

  .playlists-section .playlist-tab.is-active[data-link]:not([data-link="#"])::after {
    color: var(--cream);
    background: var(--terracotta);
  }

  .playlists-section .playlist-playback-note {
    color: var(--graphite);
  }
}

/* --------------------------------------------------------------------------
   Playlist readability patch v20
   The music section now has a dark listening-room background, but the active
   playlist panel itself is light. These overrides keep all headings and kicker
   text readable on desktop and mobile.
---------------------------------------------------------------------------- */
.playlists-section .playlist-player-panel {
  color: var(--warm-black);
}

.playlists-section .playlist-player-copy .playlist-listen-label,
.playlists-section .playlist-player-copy .eyebrow,
.playlists-section .playlist-player-copy [data-playlist-kicker] {
  color: var(--terracotta);
  text-shadow: none;
}

.playlists-section .playlist-player-copy h3,
.playlists-section .playlist-player-copy [data-playlist-title] {
  color: var(--warm-black);
  text-shadow: none;
}

.playlists-section .playlist-player-copy p[data-playlist-description] {
  color: var(--graphite);
}

.playlists-section .playlist-player-copy .playlist-playback-note {
  color: var(--muted);
}

.playlists-section .playlist-player-panel .playlist-artist-label {
  color: var(--terracotta);
}

@media (max-width: 719px) {
  .playlists-section .playlist-player-panel {
    color: var(--warm-black);
  }

  .playlists-section .playlist-player-copy .playlist-listen-label,
  .playlists-section .playlist-player-copy .eyebrow,
  .playlists-section .playlist-player-copy [data-playlist-kicker] {
    color: var(--terracotta);
  }

  .playlists-section .playlist-player-copy h3,
  .playlists-section .playlist-player-copy [data-playlist-title] {
    color: var(--warm-black);
  }
}

/* --------------------------------------------------------------------------
   Designer CTA button layout patch v20
   Fixes VK overflow and turns contact CTAs into a deliberate two-row system.
---------------------------------------------------------------------------- */

.contact-action-stack {
  width: min(100%, 640px);
  display: grid;
  gap: 14px;
  align-items: stretch;
}

.contact-action-stack > .button {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 58px;
  justify-content: center;
}

.contact-action-group {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 12px 14px;
  align-items: stretch;
}

.contact-action-group .button {
  width: 100%;
  min-width: 0 !important;
  max-width: 100%;
  min-height: 58px;
  justify-content: center;
  padding-inline: clamp(18px, 2vw, 26px);
}

.contact-action-group .button-primary {
  min-width: 0 !important;
}

.contact-action-group .button:nth-child(3) {
  grid-column: 1 / -1;
}

.final-cta .contact-action-stack {
  width: min(100%, 560px);
  justify-items: stretch;
  margin-top: 24px;
}

.final-cta .contact-action-group {
  justify-content: stretch;
}

.final-cta .contact-action-stack > .button,
.final-cta .contact-action-group .button {
  border-radius: 999px;
  letter-spacing: -0.01em;
}

.final-cta .contact-action-stack > .button {
  border-color: rgba(255, 249, 239, 0.74);
}

.final-cta .contact-action-group .button-secondary {
  background: rgba(255, 249, 239, 0.025);
  border-color: rgba(255, 249, 239, 0.22);
}

.final-cta .contact-action-group .button-secondary:hover,
.final-cta .contact-action-stack > .button:hover {
  background: rgba(255, 249, 239, 0.09);
  border-color: rgba(255, 249, 239, 0.48);
}

.final-cta .button[href*="vk.com/gim31734266"]::before {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}

.price-card .contact-action-stack {
  width: min(100%, 680px);
}

.price-card .contact-action-stack > .button {
  width: 100%;
  min-width: 0;
}

.after-playlists .contact-action-stack:not(:has(.contact-action-group)),
.partners-page .final-cta .contact-action-stack:not(:has(.contact-action-group)) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: min(100%, 560px);
}

.after-playlists .contact-action-stack:not(:has(.contact-action-group)) .button,
.partners-page .final-cta .contact-action-stack:not(:has(.contact-action-group)) .button {
  width: 100%;
  min-width: 0;
  justify-content: center;
}

.after-playlists .contact-action-stack:not(:has(.contact-action-group)) .button:nth-child(3),
.partners-page .final-cta .contact-action-stack:not(:has(.contact-action-group)) .button:nth-child(3) {
  grid-column: 1 / -1;
}

@media (min-width: 940px) {
  .final-cta .final-copy,
  .final-cta .contact-action-stack,
  .final-cta .contact-line {
    grid-column: 2;
  }

  .final-cta .final-copy-card {
    max-width: 560px;
  }

  .final-cta .cta-card {
    overflow: hidden;
  }
}

@media (min-width: 940px) and (max-width: 1120px) {
  .final-cta .final-copy,
  .final-cta .contact-action-stack,
  .final-cta .contact-line {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .contact-action-group,
  .after-playlists .contact-action-stack:not(:has(.contact-action-group)),
  .partners-page .final-cta .contact-action-stack:not(:has(.contact-action-group)) {
    grid-template-columns: 1fr;
  }

  .contact-action-group .button:nth-child(3),
  .after-playlists .contact-action-stack:not(:has(.contact-action-group)) .button:nth-child(3),
  .partners-page .final-cta .contact-action-stack:not(:has(.contact-action-group)) .button:nth-child(3) {
    grid-column: auto;
  }
}

/* --------------------------------------------------------------------------
   Reviews / social proof block v1
---------------------------------------------------------------------------- */

.hero-proof-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  margin: 16px 0 0;
  color: var(--brown);
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-proof-links a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(106, 74, 53, 0.32);
}

.hero-proof-links a:hover,
.hero-proof-links a:focus-visible {
  color: var(--terracotta);
  border-bottom-color: currentColor;
}

.social-proof-section {
  padding-top: 0;
}

.social-proof-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(22px, 5vw, 52px);
  align-items: center;
  padding: clamp(28px, 7vw, 58px);
  border: 1px solid rgba(106, 74, 53, 0.16);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 20%, rgba(176, 138, 87, 0.16), transparent 24rem),
    linear-gradient(145deg, rgba(255, 249, 239, 0.86), rgba(232, 222, 210, 0.54));
  box-shadow: 0 24px 60px rgba(23, 21, 19, 0.08);
}

.social-proof-copy h2 {
  max-width: 680px;
}

.social-proof-actions {
  display: grid;
  gap: 14px;
}

.social-proof-link {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(23, 21, 19, 0.12);
  border-radius: var(--radius-md);
  color: var(--warm-black);
  background: rgba(255, 249, 239, 0.72);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.social-proof-link:hover,
.social-proof-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(168, 95, 61, 0.36);
  background: rgba(255, 249, 239, 0.92);
  box-shadow: 0 16px 34px rgba(23, 21, 19, 0.1);
}

.social-proof-link span {
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-proof-link strong {
  max-width: 24ch;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.social-proof-link em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.proof-link-panel {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(106, 74, 53, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 249, 239, 0.64);
}

.proof-link-panel p {
  margin: 0;
}

.proof-link-panel .button-row {
  margin-top: 0;
}

.button[href*="vk.com/djmikhailbarkanov"]::before,
.button[href*="instagram.com"]::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  background: currentColor;
}

.button[href*="vk.com/djmikhailbarkanov"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.1 17.7c-5.1 0-8-3.5-8.12-9.3h2.55c.08 4.25 1.96 6.05 3.44 6.42V8.4h2.4v3.66c1.45-.16 2.98-1.84 3.5-3.66h2.4c-.4 2.24-2.08 3.92-3.28 4.61 1.2.56 3.12 2.02 3.85 4.69h-2.65c-.57-1.74-1.97-3.1-3.82-3.3v3.3h-.27z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.1 17.7c-5.1 0-8-3.5-8.12-9.3h2.55c.08 4.25 1.96 6.05 3.44 6.42V8.4h2.4v3.66c1.45-.16 2.98-1.84 3.5-3.66h2.4c-.4 2.24-2.08 3.92-3.28 4.61 1.2.56 3.12 2.02 3.85 4.69h-2.65c-.57-1.74-1.97-3.1-3.82-3.3v3.3h-.27z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.button[href*="instagram.com"]::before {
  border: 2px solid currentColor;
  border-radius: 6px;
  background: transparent;
  box-shadow: inset 0 0 0 3px rgba(255, 249, 239, 0.12);
}

@media (max-width: 840px) {
  .social-proof-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-proof-links {
    display: grid;
    gap: 6px;
  }

  .hero-proof-links span {
    display: none;
  }

  .social-proof-card {
    padding: 24px;
  }

  .social-proof-link {
    padding: 18px;
  }
}

/* Legal note for Instagram link in Russia */
.legal-note,
.footer-legal {
  max-width: 560px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.social-proof-note {
  margin: 0;
}

.footer-legal {
  margin: 0;
}

@media (min-width: 720px) {
  .footer-legal {
    max-width: 420px;
    margin-left: auto;
  }
}


/* Site architecture update: short root page + /weddings/ + /events/ */
.home-page .home-routes-section .section-head,
.events-page #formats .section-head,
.events-page #event-process .section-head {
  max-width: 820px;
}

.route-grid {
  display: grid;
  gap: 16px;
}

.route-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.route-card .button {
  width: fit-content;
  margin-top: auto;
}

.home-page .route-card h3,
.events-page .event-format-grid h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.1rem);
  letter-spacing: -0.045em;
}

.home-page .route-card p,
.events-page .event-format-grid p {
  color: var(--graphite);
}

.events-page .event-format-grid {
  grid-template-columns: 1fr;
}

.fit-split {
  align-items: stretch;
}

.home-page .chips span,
.events-page .chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(23, 21, 19, 0.18);
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.48);
  font-size: 0.92rem;
  font-weight: 800;
}

.home-page .hero-note,
.events-page .hero-note {
  max-width: 720px;
}

.events-page .stepper {
  margin-top: 26px;
}

@media (min-width: 760px) {
  .route-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .events-page .event-format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fit-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .route-card .button {
    width: 100%;
  }
}

/* Events page practical format block */
.events-page .event-use-cases-head {
  margin-top: clamp(34px, 6vw, 58px);
}

.events-page .event-use-cases-grid h3 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5.8vw, 2.55rem);
  letter-spacing: -0.04em;
}

.events-page .event-use-cases-grid p {
  color: var(--graphite);
}

@media (min-width: 760px) {
  .events-page .event-use-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* --------------------------------------------------------------------------
   UX/UI cleanup v21 — route grid, mobile hero, header and text rhythm
   Keeps the current design, but fixes the awkward 3+1 service cards, oversized
   mobile hero, heavy buttons, and sticky-header anchor overlap.
---------------------------------------------------------------------------- */

html {
  scroll-padding-top: 94px;
}

[id] {
  scroll-margin-top: 94px;
}

body {
  overflow-x: hidden;
}

/* Four homepage service cards should read as one deliberate 2×2 system. */
.home-page .route-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .home-page .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (min-width: 1180px) {
  .home-page .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

/* Lighter card CTAs on the route cards: same style, less “black brick”. */
.home-page .route-card .button {
  min-height: 48px;
  padding: 12px 18px;
  font-size: 0.94rem;
}

@media (min-width: 940px) {
  .home-page .route-card {
    padding: 34px 36px;
  }

  .home-page .route-card h3 {
    font-size: clamp(2.25rem, 3.2vw, 3rem);
  }
}

/* Homepage music teaser should invite, not lecture. */
.home-page .sound-section h2 {
  max-width: 760px;
}

.home-page .sound-section .copy-flow p {
  max-width: 620px;
}

/* Mobile: calmer first screen and smaller menu button. */
@media (max-width: 719px) {
  html {
    scroll-padding-top: 72px;
  }

  [id] {
    scroll-margin-top: 72px;
  }

  .container,
  .partners-page .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 58px;
  }

  .brand-logo {
    height: 18px;
    max-width: 136px;
  }

  .menu-toggle {
    min-height: 38px;
    padding: 6px 10px;
    gap: 5px;
  }

  .menu-toggle-line {
    width: 15px;
  }

  .menu-toggle-text {
    font-size: 0.76rem;
  }

  .site-nav {
    inset: 62px 14px auto 14px;
  }

  .section {
    padding: 58px 0;
  }

  .section-tight {
    padding: 32px 0 58px;
  }

  .hero {
    padding-top: 36px;
  }

  h1,
  .partners-page h1 {
    max-width: 11ch;
    font-size: clamp(2.7rem, 11vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  h2,
  .partners-page h2 {
    font-size: clamp(2.05rem, 8.6vw, 3.1rem);
    line-height: 1.05;
  }

  .lead {
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .hero-note,
  .partners-page .hero-note {
    margin-top: 18px;
    font-size: clamp(1.22rem, 5.2vw, 1.72rem);
    line-height: 1.16;
    letter-spacing: -0.025em;
  }

  .hero-subnote,
  .partners-page .hero-subnote {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .button {
    min-height: 46px;
    padding: 11px 15px;
    font-size: 0.94rem;
  }

  .button-row {
    gap: 10px;
    margin-top: 20px;
  }

  .home-page .hero .button-row .button {
    flex: 1 1 100%;
  }

  .hero-photo {
    min-height: 360px;
  }

  .home-page .route-card {
    padding: 24px;
  }

  .home-page .route-card h3 {
    font-size: clamp(2rem, 8.2vw, 2.7rem);
  }

  .home-page .route-card .button {
    width: 100%;
    min-height: 46px;
    padding-block: 11px;
  }

  .chips {
    gap: 8px;
  }

  .chips span,
  .home-page .chips span,
  .events-page .chips span {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 0.82rem;
  }
}

/* Tablet-ish previews should not turn the mobile hero into a poster. */
@media (min-width: 720px) and (max-width: 939px) {
  h1 {
    font-size: clamp(3.6rem, 9vw, 5rem);
    line-height: 1;
  }

  .hero-note {
    font-size: clamp(1.45rem, 4.2vw, 2rem);
  }

  .menu-toggle {
    min-height: 42px;
    padding: 8px 12px;
  }
}

/* The music page / teaser heading should be calmer on wide screens. */
.music-page .hero-copy h1 {
  max-width: 920px;
}

@media (min-width: 940px) {
  .music-page .hero-copy h1 {
    font-size: clamp(4.1rem, 5.8vw, 5.7rem);
  }
}

/* UX FIX 2026-06-08: price block should look like a clear price card, not a broken two-column poster */
.price-section .price-card {
  display: grid !important;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr) !important;
  gap: 16px 72px !important;
  align-items: start !important;
  min-height: 0 !important;
  padding: clamp(34px, 5vw, 60px) !important;
}

.price-section .price-card > .eyebrow {
  grid-column: 1 !important;
  grid-row: 1 !important;
  margin: 0 0 4px !important;
}

.price-section .price-card > h2 {
  grid-column: 1 !important;
  grid-row: 2 !important;
  margin: 0 !important;
  font-size: clamp(2.7rem, 4.2vw, 4.6rem) !important;
  line-height: 0.95 !important;
}

.price-section .price-card > .price-value {
  grid-column: 1 !important;
  grid-row: 3 !important;
  justify-self: start !important;
  align-self: start !important;
  max-width: none !important;
  margin: 10px 0 0 !important;
  text-align: left !important;
  font-size: clamp(3.8rem, 6.2vw, 6.3rem) !important;
  line-height: 0.92 !important;
  white-space: nowrap !important;
}

.price-section .price-card > p:not(.eyebrow):not(.price-value),
.price-section .price-card > .button-row {
  grid-column: 2 !important;
  justify-self: start !important;
  max-width: 660px !important;
  margin: 0 !important;
}

.price-section .price-card > p:not(.eyebrow):not(.price-value) {
  font-size: clamp(1.05rem, 1.25vw, 1.22rem) !important;
  line-height: 1.55 !important;
}

.price-section .price-card > p:not(.eyebrow):not(.price-value) strong {
  display: block;
  font-size: clamp(1.18rem, 1.45vw, 1.38rem);
  line-height: 1.25;
}

.price-section .price-card > .microcopy {
  color: rgba(42, 41, 38, 0.72) !important;
  font-size: 1rem !important;
}

.price-section .price-card > .button-row {
  margin-top: 10px !important;
}

@media (max-width: 900px) {
  .price-section .price-card {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 30px 22px !important;
  }

  .price-section .price-card > .eyebrow,
  .price-section .price-card > h2,
  .price-section .price-card > .price-value,
  .price-section .price-card > p:not(.eyebrow):not(.price-value),
  .price-section .price-card > .button-row {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .price-section .price-card > h2 {
    font-size: clamp(2.6rem, 12vw, 3.9rem) !important;
  }

  .price-section .price-card > .price-value {
    margin-top: 0 !important;
    font-size: clamp(3.35rem, 14vw, 4.8rem) !important;
    white-space: normal !important;
  }
}

/* UX FIX 2026-06-08 v2: price card uses explicit columns instead of auto-placing loose text nodes */
.price-section .price-card {
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr) !important;
  gap: 30px 72px !important;
  align-items: center !important;
}

.price-section .price-main,
.price-section .price-details {
  min-width: 0;
}

.price-section .price-main {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.price-section .price-main .eyebrow,
.price-section .price-main h2,
.price-section .price-main .price-value {
  grid-column: auto !important;
  grid-row: auto !important;
  justify-self: start !important;
  text-align: left !important;
  margin: 0 !important;
}

.price-section .price-main h2 {
  font-size: clamp(2.9rem, 4.2vw, 4.8rem) !important;
  line-height: 0.95 !important;
}

.price-section .price-main .price-value {
  font-size: clamp(4.1rem, 6.1vw, 6.3rem) !important;
  line-height: 0.92 !important;
  white-space: nowrap !important;
}

.price-section .price-details {
  display: grid;
  gap: 16px;
  max-width: 680px;
}

.price-section .price-details > p,
.price-section .price-details > .button-row {
  grid-column: auto !important;
  justify-self: start !important;
  max-width: none !important;
  margin: 0 !important;
}

.price-section .price-details > p {
  font-size: clamp(1.05rem, 1.25vw, 1.22rem) !important;
  line-height: 1.55 !important;
}

.price-section .price-details > p strong {
  display: block;
  font-size: clamp(1.18rem, 1.45vw, 1.38rem);
  line-height: 1.25;
}

.price-section .price-details > .microcopy {
  color: rgba(42, 41, 38, 0.72) !important;
  font-size: 1rem !important;
}

@media (max-width: 900px) {
  .price-section .price-card {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    align-items: start !important;
  }

  .price-section .price-main .price-value {
    white-space: normal !important;
    font-size: clamp(3.35rem, 14vw, 4.8rem) !important;
  }
}

/* --------------------------------------------------------------------------
   UX/UI cleanup v22 — fix experience / FAQ / split image sections
   These overrides keep the existing visual language, but remove broken spacing:
   1) experience block no longer turns 2011 into a giant awkward separate poster;
   2) proof photos are balanced instead of one tall + one orphan card;
   3) FAQ is compact and readable, not scattered across the page;
   4) text + photo sections are real split layouts on desktop.
---------------------------------------------------------------------------- */

/* Text + image sections */
.split-grid {
  display: grid;
  gap: clamp(24px, 4.6vw, 62px);
  align-items: center;
}

@media (min-width: 940px) {
  .split-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  }

  .sound-section .copy-flow {
    max-width: 720px;
  }

  .sound-section h2 {
    max-width: 820px;
    font-size: clamp(3.05rem, 4.25vw, 4.9rem);
    line-height: 1.02;
  }

  .sound-section .wide-photo {
    min-height: 420px;
  }
}

.sound-section .chips {
  margin-top: 22px;
}

.sound-section .button-row {
  margin-top: 22px;
}

/* Experience: make the number proof readable, not a layout accident. */
.experience-section .experience-grid {
  align-items: center !important;
}

.experience-copy h2 {
  max-width: 720px;
}

.experience-copy h2 span {
  display: inline !important;
  color: var(--terracotta);
  font-size: inherit !important;
  line-height: inherit !important;
}

.experience-section .proof-grid {
  align-items: stretch !important;
}

.experience-section .proof-grid .proof-photo,
.experience-section .proof-grid .proof-photo:first-child {
  grid-row: auto !important;
  min-height: 280px !important;
}

@media (min-width: 940px) {
  .experience-section .experience-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr) !important;
    gap: clamp(36px, 5vw, 76px) !important;
  }

  .experience-section .experience-copy h2 {
    font-size: clamp(3.35rem, 4.6vw, 5.25rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .experience-section .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .experience-section .proof-grid .proof-photo,
  .experience-section .proof-grid .proof-photo:first-child {
    min-height: 300px !important;
  }

  .home-page .experience-section .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .home-page .experience-section .proof-grid .proof-photo,
  .home-page .experience-section .proof-grid .proof-photo:first-child {
    min-height: 250px !important;
  }
}

@media (min-width: 1080px) and (max-width: 1399px) {
  .experience-section .experience-copy h2 {
    font-size: clamp(3rem, 4vw, 4.35rem) !important;
  }

  .experience-section .proof-grid .proof-photo,
  .experience-section .proof-grid .proof-photo:first-child {
    min-height: 260px !important;
  }
}

/* FAQ: no huge newspaper gaps; make each question feel like a real tappable row. */
.faq-section .section-copy {
  max-width: 980px;
  margin-bottom: clamp(22px, 3vw, 38px);
}

.faq-section .section-copy h2 {
  max-width: 940px;
  font-size: clamp(3rem, 5vw, 5.15rem);
  line-height: 1.02;
}

.faq-section .faq-grid {
  align-items: start !important;
  gap: 0 34px !important;
}

.faq-section .faq-item {
  min-height: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(23, 21, 19, 0.16);
}

.faq-section .faq-item summary {
  cursor: pointer;
  color: var(--warm-black);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  font-weight: 900;
  line-height: 1.35;
}

.faq-section .faq-answer {
  max-width: 680px;
  padding-top: 12px;
  color: var(--graphite);
}

.faq-section .faq-answer p {
  margin: 0;
}

@media (min-width: 940px) {
  .faq-section .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 939px) {
  .split-grid,
  .faq-section .faq-grid,
  .experience-section .experience-grid {
    grid-template-columns: 1fr !important;
  }

  .sound-section .wide-photo {
    min-height: 320px;
  }

  .experience-section .proof-grid {
    grid-template-columns: 1fr !important;
  }

  .faq-section .section-copy h2 {
    font-size: clamp(2.25rem, 9vw, 3.35rem);
  }
}

/* --------------------------------------------------------------------------
   UX/UI cleanup v23 — partners page fixes
   Partner page should be a clean B2B page, not scattered oversized cards.
---------------------------------------------------------------------------- */

.partners-page .section-head h2,
.partners-page .section-copy h2 {
  max-width: 860px;
  font-size: clamp(2.7rem, 4.2vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.partners-page #recommend .section-head h2 {
  max-width: 760px;
}

.partners-page .route-grid {
  gap: clamp(16px, 2vw, 24px);
}

/* A card marked as negative used to inherit light background + white heading.
   Keep it readable even if a negative class appears again later. */
.partners-page .fit-card.negative,
.partners-page .fit-card.negative h3,
.partners-page .fit-card.negative p {
  color: var(--warm-black) !important;
}

.partners-page .fit-card.negative {
  background:
    linear-gradient(135deg, rgba(111, 46, 46, 0.055), transparent),
    rgba(255, 249, 239, 0.72) !important;
  border-color: rgba(111, 46, 46, 0.20) !important;
}

.partners-page .fit-card h3 {
  color: var(--warm-black);
}

.partners-page .fit-card .eyebrow {
  margin-bottom: 18px;
}

@media (min-width: 760px) {
  .partners-page .partner-two-by-two {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 1120px;
  }

  .partners-page #recommend .route-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1100px) {
  .partners-page .partner-two-by-two .fit-card {
    min-height: 250px;
  }
}

.partners-page .final-cta .cta-card {
  max-width: 1040px;
  padding: clamp(46px, 5.4vw, 78px) clamp(28px, 5vw, 72px);
}

.partners-page .final-cta .cta-card h2 {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(2.7rem, 4vw, 4.6rem);
  line-height: 1.04;
}

.partners-page .final-copy-card {
  max-width: 680px;
  padding: clamp(18px, 2.2vw, 24px) clamp(20px, 3vw, 32px);
}

@media (min-width: 760px) {
  .partners-page .final-cta .contact-action-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: min(100%, 860px);
    margin-inline: auto;
  }

  .partners-page .final-cta .contact-action-group .button,
  .partners-page .final-cta .contact-action-group .button:nth-child(3) {
    width: 100% !important;
    grid-column: auto !important;
    justify-content: center;
  }
}

@media (max-width: 759px) {
  .partners-page .section-head h2,
  .partners-page .section-copy h2 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .partners-page .final-cta .cta-card h2 {
    font-size: clamp(2.35rem, 9vw, 3.3rem);
  }

  .partners-page .final-cta .contact-action-group {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   UX/UI cleanup v24 — partner final CTA hard fix
   The partner contact card previously inherited a narrow generic CTA width,
   which squeezed three buttons into a 560px row and made them overlap.
---------------------------------------------------------------------------- */

.partners-page .final-cta .cta-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: min(100%, 1180px) !important;
  max-width: 1180px !important;
  padding: clamp(48px, 5vw, 72px) clamp(28px, 5vw, 78px) !important;
  gap: 0 !important;
}

.partners-page .final-cta .eyebrow {
  margin: 0 0 10px !important;
}

.partners-page .final-cta .cta-card h2 {
  display: block !important;
  width: 100% !important;
  max-width: 820px !important;
  margin: 0 auto 22px !important;
  font-size: clamp(3.1rem, 4.2vw, 5rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.055em !important;
}

.partners-page .final-cta .final-copy-card {
  width: min(100%, 760px) !important;
  max-width: 760px !important;
  margin: 0 auto 28px !important;
  padding: clamp(18px, 2.2vw, 26px) clamp(20px, 3vw, 36px) !important;
}

.partners-page .final-cta .contact-action-stack {
  display: grid !important;
  width: min(100%, 700px) !important;
  max-width: 700px !important;
  margin: 0 auto !important;
  gap: 14px !important;
}

.partners-page .final-cta .contact-action-group {
  display: grid !important;
  width: 100% !important;
  max-width: 700px !important;
  margin: 0 auto !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px 14px !important;
}

.partners-page .final-cta .contact-action-group .button,
.partners-page .final-cta .contact-action-group .button:nth-child(3) {
  display: inline-flex !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  justify-content: center !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.partners-page .final-cta .contact-action-group .button:nth-child(3) {
  grid-column: 1 / -1 !important;
}

.partners-page .final-cta .contact-line {
  max-width: 760px !important;
  margin: 18px auto 0 !important;
  line-height: 1.55 !important;
  overflow-wrap: anywhere !important;
}

@media (min-width: 980px) {
  .partners-page .final-cta .contact-action-group {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 759px) {
  .partners-page .final-cta .cta-card {
    padding: 38px 20px !important;
    border-radius: 32px !important;
  }

  .partners-page .final-cta .cta-card h2 {
    font-size: clamp(2.25rem, 10vw, 3.25rem) !important;
    line-height: 1.02 !important;
    margin-bottom: 18px !important;
  }

  .partners-page .final-cta .contact-action-group {
    grid-template-columns: 1fr !important;
  }

  .partners-page .final-cta .contact-action-group .button:nth-child(3) {
    grid-column: auto !important;
  }
}

/* --------------------------------------------------------------------------
   UX/UI cleanup v25 — service-page grids + calmer price cards
   Fixes service pages after the content update:
   1) 4-card blocks are always deliberate 2×2 systems on desktop/tablet;
   2) wedding benefit heading does not sit under the sticky header;
   3) price blocks stop looking like huge empty billboards.
---------------------------------------------------------------------------- */

/* Keep service-page 4-card sections balanced. */
.weddings-page section[aria-labelledby="benefits-title"] .route-grid,
.events-page #formats .route-grid,
.events-page section[aria-labelledby="use-title"] .route-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 760px) {
  .weddings-page section[aria-labelledby="benefits-title"] .route-grid,
  .events-page #formats .route-grid,
  .events-page section[aria-labelledby="use-title"] .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }
}

@media (min-width: 1180px) {
  .weddings-page section[aria-labelledby="benefits-title"] .route-grid,
  .events-page #formats .route-grid,
  .events-page section[aria-labelledby="use-title"] .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
  }
}

/* The first service block should not hide under the sticky header. */
.weddings-page section[aria-labelledby="benefits-title"],
.events-page #formats,
.events-page section[aria-labelledby="use-title"] {
  scroll-margin-top: 116px;
}

@media (min-width: 940px) {
  .weddings-page section[aria-labelledby="benefits-title"] {
    padding-top: 92px !important;
  }

  .weddings-page section[aria-labelledby="benefits-title"] .section-head h2 {
    max-width: 820px;
    font-size: clamp(3.15rem, 4.25vw, 4.85rem) !important;
    line-height: 1.03 !important;
  }
}

/* Route cards in service pages: a little calmer and equal-height. */
.weddings-page section[aria-labelledby="benefits-title"] .fit-card,
.events-page #formats .fit-card,
.events-page section[aria-labelledby="use-title"] .fit-card {
  min-height: 100%;
  padding: clamp(24px, 3.6vw, 36px) !important;
}

@media (min-width: 940px) {
  .weddings-page section[aria-labelledby="benefits-title"] .fit-card h3,
  .events-page #formats .fit-card h3,
  .events-page section[aria-labelledby="use-title"] .fit-card h3 {
    font-size: clamp(1.55rem, 2vw, 2rem) !important;
    font-family: var(--font-body) !important;
    letter-spacing: -0.035em !important;
    line-height: 1.1 !important;
  }
}

/* Price blocks: compact, readable, not a giant poster. */
.price-section .price-card:has(.price-value) {
  width: min(100%, 1120px) !important;
  max-width: 1120px !important;
  margin-inline: auto !important;
  display: grid !important;
  grid-template-columns: minmax(250px, 0.44fr) minmax(0, 0.56fr) !important;
  gap: 28px 56px !important;
  align-items: center !important;
  padding: clamp(32px, 4.2vw, 52px) !important;
  min-height: 0 !important;
}

.price-section .price-card:has(.price-value) .price-main {
  gap: 8px !important;
}

.price-section .price-card:has(.price-value) .price-main h2 {
  font-size: clamp(2.45rem, 3.2vw, 3.55rem) !important;
  line-height: 1 !important;
  letter-spacing: -0.05em !important;
}

.price-section .price-card:has(.price-value) .price-main .price-value {
  font-size: clamp(3.35rem, 5vw, 5.15rem) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.055em !important;
  white-space: nowrap !important;
}

.price-section .price-card:has(.price-value) .price-details {
  gap: 12px !important;
  max-width: 620px !important;
}

.price-section .price-card:has(.price-value) .price-details > p {
  font-size: clamp(1rem, 1.12vw, 1.12rem) !important;
  line-height: 1.55 !important;
}

.price-section .price-card:has(.price-value) .price-details > p strong {
  font-size: clamp(1.08rem, 1.22vw, 1.2rem) !important;
}

.price-section .price-card:has(.price-value) .price-details .button-row {
  margin-top: 4px !important;
}

.price-section .price-card:has(.price-value) .button {
  min-height: 50px !important;
  padding: 12px 20px !important;
}

@media (max-width: 900px) {
  .price-section .price-card:has(.price-value) {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 28px 22px !important;
  }

  .price-section .price-card:has(.price-value) .price-main h2 {
    font-size: clamp(2.35rem, 10vw, 3.35rem) !important;
  }

  .price-section .price-card:has(.price-value) .price-main .price-value {
    font-size: clamp(3.2rem, 13vw, 4.55rem) !important;
    white-space: normal !important;
  }
}


/* --------------------------------------------------------------------------
   UX/UI cleanup v26 — calm service-page hero template
   One main thought per first screen: eyebrow, H1, one lead, proof chips, buttons.
   Removes the competing giant serif subheading from service pages.
---------------------------------------------------------------------------- */
.service-hero .hero-copy {
  max-width: 800px;
}

.service-hero .hero-copy h1 {
  max-width: 900px;
}

.service-hero .lead {
  max-width: 760px;
  margin-top: 22px;
}

.service-hero .hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.service-hero .hero-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(23, 21, 19, 0.14);
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.60);
  color: var(--graphite);
  font-size: 0.92rem;
  line-height: 1.2;
  font-weight: 750;
  white-space: nowrap;
}

.service-hero .hero-facts strong {
  margin-right: 5px;
  color: var(--warm-black);
  font-weight: 950;
}

@media (min-width: 940px) {
  .service-hero.hero {
    padding-top: clamp(76px, 8vw, 118px) !important;
    padding-bottom: clamp(64px, 7vw, 100px) !important;
  }

  .service-hero .hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(330px, 0.72fr) !important;
    gap: clamp(44px, 5vw, 78px) !important;
    align-items: center !important;
  }

  .service-hero .hero-copy h1 {
    font-size: clamp(4rem, 5.1vw, 6.1rem) !important;
    line-height: 0.96 !important;
    letter-spacing: -0.058em !important;
  }

  .service-hero .lead {
    font-size: clamp(1.08rem, 1.22vw, 1.26rem) !important;
    line-height: 1.52 !important;
  }

  .service-hero .hero-photo {
    width: min(100%, 450px) !important;
    min-height: 0 !important;
    aspect-ratio: 0.78 / 1 !important;
    justify-self: center !important;
    margin-top: 0 !important;
  }

  .service-hero .photo-caption strong {
    font-size: clamp(1.18rem, 1.65vw, 1.55rem) !important;
  }
}

@media (min-width: 940px) and (max-width: 1230px) {
  .service-hero .hero-copy h1 {
    font-size: clamp(3.6rem, 4.9vw, 5.25rem) !important;
  }

  .service-hero .hero-photo {
    width: min(100%, 390px) !important;
  }
}

@media (max-width: 939px) {
  .service-hero.hero {
    padding-top: 48px !important;
  }

  .service-hero .hero-copy h1 {
    max-width: 12ch;
  }

  .service-hero .lead {
    margin-top: 18px;
  }

  .service-hero .hero-facts {
    gap: 8px;
    margin-top: 20px;
  }

  .service-hero .hero-facts span {
    min-height: 36px;
    padding: 8px 11px;
    font-size: 0.84rem;
    white-space: normal;
  }

  .service-hero .hero-photo {
    min-height: 340px !important;
  }
}

@media (max-width: 520px) {
  .service-hero .hero-facts {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-hero .hero-facts span {
    justify-content: flex-start;
    width: 100%;
  }
}


/* UX FIX 8: restored long wedding content without turning the page back into a wall of text */
.weddings-page .compact-route-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.weddings-page .compact-route-grid .fit-card {
  min-height: 0;
}
.weddings-page .after-music-section .route-grid,
.weddings-page .whole-evening-section .route-grid {
  margin-top: clamp(22px, 3vw, 34px);
}
.weddings-page .responsibility-section .split-grid {
  align-items: stretch;
}
.weddings-page .responsibility-card .clean-list li {
  padding-top: 8px;
  padding-bottom: 8px;
}
.weddings-page .not-included-card {
  margin-top: clamp(22px, 3vw, 36px);
}
.faq-section .faq-answer p + p {
  margin-top: 12px;
}
.org-faq-section .faq-grid {
  gap: 0 34px !important;
}
.reviews-section .principle-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
.reviews-section .button-row {
  justify-content: flex-end;
}
@media (min-width: 940px) {
  .weddings-page .compact-route-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 939px) {
  .weddings-page .compact-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .reviews-section .principle-card {
    grid-template-columns: 1fr;
  }
  .reviews-section .button-row {
    justify-content: flex-start;
  }
}
@media (max-width: 640px) {
  .weddings-page .compact-route-grid,
  .weddings-page .route-grid {
    grid-template-columns: 1fr !important;
  }
}


/* UX FIX 9: long service pages (corporate / birthdays / DJ sets) follow the wedding-page content rhythm */
.events-page .compact-route-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.events-page .compact-route-grid .fit-card {
  min-height: 0;
}
.events-page .after-music-section .route-grid,
.events-page .whole-evening-section .route-grid {
  margin-top: clamp(22px, 3vw, 34px);
}
.events-page .responsibility-section .split-grid {
  align-items: stretch;
}
.events-page .responsibility-card .clean-list li {
  padding-top: 8px;
  padding-bottom: 8px;
}
.events-page .reviews-section .principle-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
.events-page .reviews-section .button-row {
  justify-content: flex-end;
}
@media (min-width: 940px) {
  .events-page .compact-route-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 939px) {
  .events-page .compact-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .events-page .reviews-section .principle-card {
    grid-template-columns: 1fr;
  }
  .events-page .reviews-section .button-row {
    justify-content: flex-start;
  }
}
@media (max-width: 640px) {
  .events-page .compact-route-grid,
  .events-page .route-grid {
    grid-template-columns: 1fr !important;
  }
}

/* --------------------------------------------------------------------------
   UX/UI FIX 10 — service page rhythm
   Fixes two visual breaks noticed on service pages:
   1) playlist CTA floating too close to the last row of cards on a dark block;
   2) oversized empty air between the responsibility/tech block and pricing.
---------------------------------------------------------------------------- */

.playlists-section .playlist-card {
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
}

.playlists-section .playlist-card:hover {
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.20);
}

.playlists-section .button-row.centered {
  position: relative;
  z-index: 2;
  margin-top: clamp(40px, 5vw, 62px);
  margin-bottom: 0;
}

.playlists-section .button-row.centered .button-primary {
  color: var(--warm-black);
  background: var(--cream);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.playlists-section .button-row.centered .button-primary:hover,
.playlists-section .button-row.centered .button-primary:focus-visible {
  color: var(--warm-black);
  background: #fffdf8;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.responsibility-section + .price-section {
  padding-top: clamp(34px, 4vw, 54px);
}

.price-section {
  padding-bottom: clamp(58px, 6vw, 82px);
}

.price-card {
  min-height: 0;
}

@media (min-width: 720px) {
  .playlists-section .playlist-grid {
    gap: clamp(22px, 2.2vw, 32px);
  }
}

@media (min-width: 940px) {
  .playlists-section {
    padding-bottom: clamp(104px, 8vw, 144px);
  }

  .responsibility-section {
    padding-bottom: 34px;
  }

  .responsibility-section + .price-section {
    padding-top: 34px;
  }

  .weddings-page .not-included-card {
    margin-top: 28px;
  }

  .weddings-page .not-included-card .copy-flow {
    display: grid;
    grid-template-columns: minmax(260px, 0.62fr) minmax(420px, 1fr);
    gap: 8px 54px;
    align-items: start;
  }

  .weddings-page .not-included-card .copy-flow > .eyebrow {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
  }

  .weddings-page .not-included-card .copy-flow > h3 {
    grid-column: 1;
    grid-row: 2 / span 3;
    max-width: 360px;
    margin-bottom: 0;
  }

  .weddings-page .not-included-card .copy-flow > p:not(.eyebrow) {
    grid-column: 2;
    max-width: 680px;
  }

  .price-card {
    align-items: start;
  }

  .price-card .price-value {
    font-size: clamp(3.8rem, 4.9vw, 5.25rem);
  }
}

@media (min-width: 1080px) and (max-width: 1699px) {
  .responsibility-section + .price-section {
    padding-top: 32px;
  }

  .price-card {
    padding: 40px 50px;
  }
}

@media (max-width: 719px) {
  .playlists-section .button-row.centered {
    margin-top: 34px;
  }

  .responsibility-section + .price-section {
    padding-top: 18px;
  }
}

/* --------------------------------------------------------------------------
   UX/UI FIX 11 — balanced service grids + calmer full-width price blocks
   1) 4-card service groups are explicit 2×2 grids, never accidental 3+1.
   2) Price blocks align with the page container instead of floating as a
      centered island. They read like the next editorial block, not a poster.
---------------------------------------------------------------------------- */

@media (min-width: 760px) {
  .route-grid.balanced-four-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(16px, 2vw, 22px) !important;
  }
}

@media (min-width: 1180px) {
  .route-grid.balanced-four-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

.responsibility-section + .price-section {
  padding-top: clamp(22px, 3vw, 34px) !important;
}

.price-section {
  padding-top: clamp(32px, 4vw, 48px) !important;
  padding-bottom: clamp(56px, 6vw, 78px) !important;
}

.price-section .container {
  display: block;
}

.price-section .price-card,
.price-section .price-card:has(.price-value) {
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
  min-height: 0 !important;
  border: 1px solid rgba(106, 74, 53, 0.14) !important;
  background:
    radial-gradient(circle at 92% 14%, rgba(176, 138, 87, 0.12), transparent 22rem),
    rgba(255, 249, 239, 0.50) !important;
  box-shadow: 0 14px 36px rgba(23, 21, 19, 0.045) !important;
}

@media (min-width: 940px) {
  .price-section .price-card,
  .price-section .price-card:has(.price-value) {
    display: grid !important;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr) !important;
    gap: 24px clamp(42px, 5.5vw, 76px) !important;
    align-items: center !important;
    padding: clamp(38px, 4vw, 54px) clamp(42px, 5vw, 72px) !important;
  }

  .price-section .price-main {
    max-width: 520px;
  }

  .price-section .price-details {
    max-width: 720px !important;
  }

  .price-section .price-main h2 {
    font-size: clamp(2.7rem, 3.6vw, 4.2rem) !important;
    line-height: 0.98 !important;
  }

  .price-section .price-main .price-value,
  .price-section .price-card:has(.price-value) .price-main .price-value {
    font-size: clamp(3.6rem, 5.5vw, 5.6rem) !important;
    line-height: 0.92 !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 939px) {
  .price-section .price-card,
  .price-section .price-card:has(.price-value) {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 30px 22px !important;
  }
}

/* --------------------------------------------------------------------------
   UX/UI FIX 12 — responsibility / “what is not included” blocks
   The previous generic .principle-card desktop rule split the responsibility
   card into two cramped columns. On service pages that made the left card feel
   broken and the dark “not included” card stretch into a huge empty slab.
---------------------------------------------------------------------------- */

.responsibility-section .split-grid {
  align-items: start !important;
}

.responsibility-section .responsibility-card,
.responsibility-section .fit-card.negative {
  align-self: start !important;
  min-height: 0 !important;
}

.responsibility-section .responsibility-card {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: clamp(20px, 2.4vw, 30px) !important;
  padding: clamp(30px, 4vw, 48px) !important;
}

.responsibility-section .responsibility-card .copy-flow {
  max-width: 680px;
}

.responsibility-section .responsibility-card h2,
.responsibility-section .fit-card.negative h2 {
  max-width: 620px;
  line-height: 0.98 !important;
}

.responsibility-section .responsibility-card h2 {
  font-size: clamp(2.7rem, 3.5vw, 4.35rem) !important;
}

.responsibility-section .fit-card.negative {
  padding: clamp(30px, 4vw, 48px) !important;
}

.responsibility-section .fit-card.negative h2 {
  font-size: clamp(2.35rem, 3vw, 3.8rem) !important;
}

.responsibility-section .clean-list li {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  line-height: 1.38;
}

@media (min-width: 1100px) {
  .responsibility-section .split-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: clamp(22px, 3vw, 44px) !important;
  }
}

@media (max-width: 1099px) {
  .responsibility-section .split-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}


/* --------------------------------------------------------------------------
   Partners page v13 — organiser trust blocks
---------------------------------------------------------------------------- */
.partners-page .partner-link-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.partners-page .partner-link-list li {
  display: grid;
  gap: 3px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(23, 21, 19, 0.10);
}

.partners-page .partner-link-list li:last-child {
  border-bottom: 0;
}

.partners-page .partner-link-list a {
  color: var(--warm-black);
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.partners-page .partner-link-list span {
  color: rgba(42, 41, 38, 0.72);
  font-size: 0.92rem;
  word-break: break-word;
}

.partners-page #safe .section-head,
.partners-page #recommend .section-head,
.partners-page #share .section-head {
  max-width: 900px;
}

.partners-page #safe .fit-card,
.partners-page #recommend .fit-card {
  min-height: 100%;
}

.partners-page #proof-title + p {
  max-width: 760px;
}

.partners-page .principle-card .button-row .button {
  width: fit-content;
}

@media (max-width: 719px) {
  .partners-page .principle-card .button-row {
    display: grid;
  }

  .partners-page .principle-card .button-row .button {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   UX/UI FIX 21 — polished technical responsibility block
---------------------------------------------------------------------------- */
.responsibility-section .responsibility-main-grid {
  grid-template-columns: 1fr !important;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.responsibility-section .tech-boundary-container {
  margin-top: clamp(22px, 3.2vw, 42px);
}

.tech-boundary-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.36fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  width: 100%;
  border: 1px solid rgba(106, 74, 53, 0.16);
  border-radius: clamp(26px, 3vw, 38px);
  background:
    radial-gradient(circle at 12% 18%, rgba(176, 138, 87, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 249, 239, 0.86), rgba(244, 239, 231, 0.64));
  box-shadow: 0 24px 62px rgba(23, 21, 19, 0.08);
  padding: clamp(34px, 5vw, 58px);
  overflow: hidden;
}

.tech-boundary-aside {
  position: relative;
  display: grid;
  align-content: start;
  gap: clamp(18px, 2vw, 26px);
  padding-right: clamp(24px, 3.2vw, 46px);
  border-right: 1px solid rgba(106, 74, 53, 0.16);
}

.tech-boundary-aside .eyebrow {
  margin: 0;
}

.tech-boundary-rule {
  display: block;
  width: 42px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 999px;
}

.tech-boundary-card h3 {
  margin: 0;
  max-width: 360px;
  font-family: var(--font-serif);
  font-size: clamp(2.05rem, 3vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  color: var(--black);
}

.tech-boundary-badge,
.tech-boundary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(168, 95, 61, 0.22);
  background: rgba(255, 249, 239, 0.62);
  color: var(--terracotta);
  box-shadow: 0 12px 26px rgba(106, 74, 53, 0.08);
}

.tech-boundary-badge {
  width: 66px;
  height: 66px;
  margin-top: clamp(4px, 1vw, 12px);
  border-radius: 999px;
}

.tech-boundary-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
}

.tech-boundary-badge svg,
.tech-boundary-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tech-boundary-badge svg {
  width: 30px;
  height: 30px;
}

.tech-boundary-content {
  display: grid;
  align-content: center;
  gap: 0;
}

.tech-boundary-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: clamp(18px, 2.5vw, 32px);
  align-items: start;
  padding: clamp(18px, 2.3vw, 28px) 0;
  border-bottom: 1px solid rgba(106, 74, 53, 0.15);
}

.tech-boundary-item:first-child {
  padding-top: 0;
}

.tech-boundary-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.tech-boundary-item p {
  margin: 0;
  max-width: 680px;
  font-size: clamp(1.04rem, 1.2vw, 1.18rem);
  line-height: 1.62;
  color: var(--black);
}

.partners-tech-boundary {
  margin-top: 0;
}

@media (max-width: 940px) {
  .tech-boundary-card {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: clamp(26px, 7vw, 40px);
  }

  .tech-boundary-aside {
    padding-right: 0;
    padding-bottom: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(106, 74, 53, 0.16);
  }

  .tech-boundary-card h3 {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .tech-boundary-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tech-boundary-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .tech-boundary-badge {
    width: 56px;
    height: 56px;
  }
}


/* --------------------------------------------------------------------------
   UX/UI FIX 23 — real spacing between responsibility card and tech card
   Fixes the visual collision where the "Что я беру на себя" block visually
   touches / overlaps the "Техническое обеспечение" card on desktop.
---------------------------------------------------------------------------- */

.responsibility-section {
  padding-bottom: clamp(74px, 8vw, 120px) !important;
}

.responsibility-section .responsibility-main-grid {
  row-gap: clamp(64px, 7vw, 104px) !important;
}

.responsibility-section .tech-boundary-container {
  margin-top: clamp(72px, 8vw, 124px) !important;
  clear: both;
}

.responsibility-section .tech-boundary-card {
  position: relative;
  z-index: 1;
}

.responsibility-section .responsibility-card,
.responsibility-section .fit-card.negative,
.responsibility-section .service-inclusion-card {
  position: relative;
  z-index: 2;
}

.responsibility-section + .price-section {
  padding-top: clamp(18px, 3vw, 40px) !important;
}

@media (min-width: 940px) {
  .responsibility-section {
    padding-bottom: clamp(82px, 7vw, 128px) !important;
  }

  .responsibility-section .tech-boundary-container {
    margin-top: clamp(84px, 7vw, 128px) !important;
  }
}

@media (max-width: 939px) {
  .responsibility-section {
    padding-bottom: clamp(54px, 10vw, 84px) !important;
  }

  .responsibility-section .tech-boundary-container {
    margin-top: clamp(46px, 9vw, 74px) !important;
  }
}

@media (max-width: 640px) {
  .responsibility-section .tech-boundary-container {
    margin-top: 42px !important;
  }
}

/* --------------------------------------------------------------------------
   UX/UI FIX 24 — actual gap between responsibility grid and tech block
   The tech card is not wrapped in .tech-boundary-container in the current HTML.
   It is placed inside the second .container within .responsibility-section.
   Therefore the real selector must separate adjacent containers directly.
---------------------------------------------------------------------------- */

.responsibility-section > .container + .container {
  margin-top: clamp(92px, 8vw, 148px) !important;
}

.responsibility-section > .container + .container .tech-boundary-card {
  margin-top: 0 !important;
}

@media (max-width: 939px) {
  .responsibility-section > .container + .container {
    margin-top: clamp(56px, 10vw, 88px) !important;
  }
}

@media (max-width: 640px) {
  .responsibility-section > .container + .container {
    margin-top: 44px !important;
  }
}

/* --------------------------------------------------------------------------
   UX/UI SYSTEM 25 — component grids across the site
   Turns repeated blocks into one shared system: 4 cards = 2×2,
   comparisons = 2 cards, route/link blocks = their own component.
---------------------------------------------------------------------------- */

.route-grid {
  grid-template-columns: 1fr !important;
  align-items: start;
}

.route-grid.four-card-grid,
.route-grid.three-card-grid,
.route-grid.six-card-grid,
.comparison-grid,
.link-grid {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}

.route-grid.four-card-grid > *,
.route-grid.three-card-grid > *,
.route-grid.six-card-grid > *,
.comparison-grid > * {
  min-width: 0;
}

@media (min-width: 760px) {
  .route-grid.four-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .route-grid.three-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .route-grid.six-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}

@media (min-width: 1120px) {
  .route-grid.six-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* A link/navigation block is not a normal benefit card. */
.link-panel {
  margin-top: clamp(22px, 3vw, 36px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 249, 239, 0.66);
  box-shadow: 0 18px 42px rgba(23, 21, 19, 0.07);
}

.link-panel-head {
  max-width: 760px;
  margin-bottom: clamp(18px, 2vw, 26px);
}

.link-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.link-grid {
  grid-template-columns: 1fr;
}

.link-card {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: clamp(18px, 2.5vw, 24px);
  border: 1px solid rgba(106, 74, 53, 0.18);
  border-radius: calc(var(--radius-lg) - 10px);
  background: rgba(244, 239, 231, 0.66);
  color: var(--warm-black);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(168, 95, 61, 0.38);
  background: rgba(255, 249, 239, 0.9);
}

.link-card strong {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.18;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.link-card span {
  color: var(--graphite);
  font-size: 0.98rem;
  line-height: 1.35;
}

.link-card small {
  color: rgba(42, 41, 38, 0.66);
  font-size: 0.9rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

@media (min-width: 680px) {
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Partner recommendation block: comparison first, navigation second. */
.partners-page #recommend .section-head {
  max-width: 860px;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.partners-page .partner-recommend-grid {
  align-items: stretch;
}

.partners-page .partner-link-panel {
  margin-top: clamp(22px, 3vw, 38px);
}

.partners-page .partner-message-note {
  margin-top: clamp(18px, 2.4vw, 28px);
  max-width: 900px;
  padding: clamp(22px, 3vw, 34px);
}

.partners-page .partner-message-note h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.partners-page .partner-message-note p:last-child {
  margin-bottom: 0;
  color: var(--graphite);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
}

@media (min-width: 760px) {
  .partners-page #recommend .fit-card {
    min-height: 0 !important;
  }
}

@media (max-width: 640px) {
  .link-panel {
    padding: 22px 18px;
  }

  .link-card {
    padding: 17px;
  }
}
