@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #F5EFE6;
  --bg-deep: #EAE0D5;
  --text: #1A1A1A;
  --muted: #71685D;
  --gold: #C8A96B;
  --gold-dark: #9E7E3E;
  --white: #FFFDFC;
  --line: rgba(26, 26, 26, .12);
  --shadow: 0 30px 80px rgba(26, 26, 26, .12);
  --shadow-soft: 0 18px 50px rgba(26, 26, 26, .08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
  --head: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: radial-gradient(circle at 18% 7%, rgba(200, 169, 107, .22), transparent 28%), radial-gradient(circle at 83% 14%, rgba(255, 255, 255, .95), transparent 23%), var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

.site-header {
  width: min(calc(100% - 36px), 1240px);
  position: sticky;
  top: 18px;
  z-index: 100;
  margin: 18px auto 0;
  border: 1px solid rgba(26, 26, 26, .09);
  background: rgba(245, 239, 230, .82);
  backdrop-filter: blur(22px);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(26, 26, 26, .08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #1A1A1A, #4F4232);
  color: var(--gold);
  font-family: var(--head);
  font-weight: 700;
  letter-spacing: -.04em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.brand strong {
  display: block;
  font-family: var(--head);
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.brand small {
  display: block;
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 11px 14px;
  color: rgba(26, 26, 26, .72);
  font-size: .9rem;
  font-weight: 500;
  border-radius: 999px;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: rgba(200, 169, 107, .17);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: var(--text);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.nav-toggle span {
  position: absolute;
  left: 14px;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform .35s cubic-bezier(.16,1,.3,1), top .35s cubic-bezier(.16,1,.3,1), opacity .25s ease;
}

.nav-toggle span:nth-child(1) {
  top: 17px;
}

.nav-toggle span:nth-child(2) {
  top: 24px;
}

.nav-toggle span:nth-child(3) {
  top: 31px;
}

.nav-open .nav-toggle span:nth-child(1) {
  top: 24px;
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: translateX(16px);
}

.nav-open .nav-toggle span:nth-child(3) {
  top: 24px;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(26, 26, 26, .92);
  backdrop-filter: blur(28px);
  color: var(--white);
  display: grid;
  place-items: center;
  transform: translateY(-110%);
  transition: transform .65s cubic-bezier(.16,1,.3,1);
  padding: 110px 24px 34px;
}

.nav-open .mobile-nav {
  transform: translateY(0);
}

.mobile-nav-inner {
  width: min(100%, 560px);
}

.mobile-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--head);
  font-size: clamp(2rem, 10vw, 4rem);
  letter-spacing: -.06em;
  line-height: 1;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  opacity: 0;
  transform: translateY(22px);
}

.nav-open .mobile-nav a {
  animation: navItem .65s cubic-bezier(.16,1,.3,1) forwards;
}

.mobile-nav a:nth-child(2) { animation-delay: .05s; }
.mobile-nav a:nth-child(3) { animation-delay: .10s; }
.mobile-nav a:nth-child(4) { animation-delay: .15s; }
.mobile-nav a:nth-child(5) { animation-delay: .20s; }
.mobile-nav a:nth-child(6) { animation-delay: .25s; }
.mobile-nav a:nth-child(7) { animation-delay: .30s; }

.mobile-nav a span {
  font-family: var(--body);
  font-size: .8rem;
  letter-spacing: .16em;
  color: var(--gold);
}

@keyframes navItem {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main {
  min-height: 60vh;
}

.section {
  width: min(calc(100% - 42px), var(--max));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) 0;
}

.section-tight {
  padding-top: clamp(44px, 7vw, 74px);
  padding-bottom: clamp(44px, 7vw, 74px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  font-family: var(--head);
  line-height: .95;
  letter-spacing: -.06em;
  margin: 0;
}

h1 {
  font-size: clamp(4rem, 13vw, 9.6rem);
  max-width: 860px;
}

h2 {
  font-size: clamp(2.65rem, 7vw, 6rem);
}

h3 {
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  font-size: clamp(1.04rem, 2vw, 1.3rem);
  max-width: 720px;
  color: rgba(26, 26, 26, .72);
}

.gold {
  color: var(--gold-dark);
}

.hero {
  position: relative;
  width: min(calc(100% - 42px), 1360px);
  margin: 26px auto 0;
  min-height: calc(100vh - 130px);
  border-radius: clamp(30px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, .08);
  box-shadow: var(--shadow);
  background: var(--bg-deep);
  display: grid;
  grid-template-columns: 1.03fr .97fr;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(26, 26, 26, .35), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(34px, 6vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.hero-content h1 span {
  display: block;
}

.hero-subtitle {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  color: rgba(26, 26, 26, .72);
  font-size: clamp(.95rem, 1.4vw, 1.08rem);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-subtitle span {
  padding: 9px 13px;
  border: 1px solid rgba(26, 26, 26, .09);
  border-radius: 999px;
  background: rgba(255, 255, 255, .34);
  backdrop-filter: blur(14px);
}

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

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245, 239, 230, .7), transparent 34%), radial-gradient(circle at 50% 20%, transparent 18%, rgba(26, 26, 26, .08) 70%);
  z-index: 1;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 3vw, 38px);
  bottom: clamp(18px, 3vw, 38px);
  width: min(70%, 310px);
  padding: 20px;
  border-radius: 26px;
  background: rgba(255, 253, 252, .72);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, .45);
  box-shadow: var(--shadow-soft);
}

.hero-badge strong {
  display: block;
  font-family: var(--head);
  font-size: 1.35rem;
  letter-spacing: -.04em;
  margin-bottom: 5px;
}

.hero-badge p {
  font-size: .88rem;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  left: clamp(28px, 6vw, 76px);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-scroll i {
  width: 34px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 999px;
  position: relative;
}

.hero-scroll i::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--white);
  transform: translateX(-50%);
  animation: wheel 1.7s ease-in-out infinite;
}

@keyframes wheel {
  0%,100% { transform: translate(-50%, 0); opacity: .25; }
  45% { transform: translate(-50%, 18px); opacity: 1; }
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 23px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

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

.btn-primary {
  background: var(--text);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(26, 26, 26, .16);
}

.btn-primary:hover {
  box-shadow: 0 18px 45px rgba(26, 26, 26, .22);
}

.btn-gold {
  background: var(--gold);
  color: var(--text);
  box-shadow: 0 14px 34px rgba(200, 169, 107, .3);
}

.btn-ghost {
  background: rgba(255, 253, 252, .45);
  color: var(--text);
  border-color: rgba(26, 26, 26, .12);
}

.intro-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(26px, 5vw, 74px);
  align-items: end;
}

.editorial-card {
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 252, .62);
  border: 1px solid rgba(26, 26, 26, .08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.editorial-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.editorial-card-content {
  padding: 26px;
}

.text-stack {
  display: grid;
  gap: 22px;
}

.signature-line {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--head);
  font-size: 1.2rem;
  letter-spacing: -.04em;
}

.signature-line::before {
  content: "";
  width: 74px;
  height: 1px;
  background: var(--gold);
}

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.feature-card,
.service-card,
.video-card,
.music-card,
.contact-panel,
.booking-step,
.stat-card {
  background: rgba(255, 253, 252, .55);
  border: 1px solid rgba(26, 26, 26, .08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.feature-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
  min-height: 210px;
}

.feature-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -40px;
  top: -40px;
  border-radius: 50%;
  background: rgba(200, 169, 107, .16);
}

.feature-card span,
.service-card span,
.booking-step span,
.stat-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--text);
  font-weight: 800;
  margin-bottom: 22px;
}

.feature-card h3,
.service-card h3,
.video-card h3,
.music-card h3,
.booking-step h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.marquee {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(26, 26, 26, .1);
  background: rgba(255, 253, 252, .34);
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 28px;
  animation: marquee 22s linear infinite;
}

.marquee span {
  font-family: var(--head);
  font-size: clamp(2.1rem, 6vw, 5.2rem);
  letter-spacing: -.07em;
  line-height: .9;
  color: rgba(26, 26, 26, .82);
  white-space: nowrap;
}

.marquee em {
  font-style: normal;
  color: var(--gold-dark);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.page-hero {
  width: min(calc(100% - 42px), var(--max));
  margin: 48px auto 0;
  padding: clamp(64px, 9vw, 120px) 0 clamp(35px, 6vw, 68px);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
}

.page-hero-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 26, 26, .08);
  background: var(--bg-deep);
}

.page-hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.stat-card {
  padding: 24px;
}

.stat-card strong {
  display: block;
  font-family: var(--head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -.07em;
  line-height: 1;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 32px;
}

.story-panel {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 252, .55);
  border: 1px solid rgba(26, 26, 26, .08);
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 252, .52);
  border: 1px solid rgba(26, 26, 26, .08);
}

.timeline-item strong {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.filter-btn {
  border: 1px solid rgba(26, 26, 26, .1);
  background: rgba(255, 253, 252, .5);
  color: var(--text);
  padding: 10px 15px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
  transform: translateY(-1px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.gallery-item {
  grid-column: span 4;
  position: relative;
  border: 0;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-deep);
  cursor: pointer;
  min-height: 280px;
  box-shadow: var(--shadow-soft);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 8;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16,1,.3,1), filter .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.02);
}

.gallery-item::after {
  content: attr(data-title);
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 13px 15px;
  border-radius: 999px;
  background: rgba(255, 253, 252, .72);
  backdrop-filter: blur(18px);
  font-weight: 700;
  color: var(--text);
  text-align: left;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(26, 26, 26, .88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-height: 84vh;
  border-radius: 26px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.video-card {
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.video-thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-deep);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 253, 252, .78);
  backdrop-filter: blur(18px);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
}

.video-play::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--text);
  margin-left: 5px;
}

.video-card-content,
.music-card,
.service-card {
  padding: 26px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0 0;
}

.badge {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(200, 169, 107, .17);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: .75rem;
}

.music-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(22px, 5vw, 60px);
  align-items: center;
}

.cover-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 26, 26, .08);
  transform: rotate(-2deg);
}

.cover-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.release-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.release-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 253, 252, .54);
  border: 1px solid rgba(26, 26, 26, .08);
}

.release-item strong {
  font-family: var(--head);
  letter-spacing: -.03em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.service-card {
  min-height: 226px;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 107, .35);
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.booking-step {
  padding: 28px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(22px, 5vw, 60px);
  align-items: start;
}

.contact-panel {
  padding: clamp(24px, 4vw, 42px);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-link {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(26, 26, 26, .08);
  background: rgba(255, 253, 252, .48);
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 700;
  font-size: .86rem;
  color: rgba(26, 26, 26, .76);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid rgba(26, 26, 26, .12);
  background: rgba(255, 253, 252, .72);
  color: var(--text);
  border-radius: 18px;
  padding: 15px 16px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: rgba(200, 169, 107, .75);
  box-shadow: 0 0 0 4px rgba(200, 169, 107, .14);
  background: var(--white);
}

.form-actions {
  margin-top: 18px;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  font-weight: 600;
  color: var(--gold-dark);
}

.cta-band {
  width: min(calc(100% - 42px), var(--max));
  margin: 0 auto clamp(70px, 8vw, 110px);
  border-radius: clamp(28px, 5vw, 50px);
  overflow: hidden;
  background: linear-gradient(135deg, #1A1A1A, #4C3E2D);
  color: var(--white);
  padding: clamp(34px, 7vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  position: relative;
}

.cta-band::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -50%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(200, 169, 107, .18);
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band p {
  color: rgba(255, 255, 255, .72);
  max-width: 620px;
  margin-top: 14px;
}

.cta-band h2 {
  color: var(--white);
}

.site-footer {
  width: min(calc(100% - 42px), 1240px);
  margin: 0 auto 20px;
  padding: clamp(34px, 6vw, 62px);
  border-radius: clamp(28px, 4vw, 44px);
  background: rgba(26, 26, 26, .94);
  color: var(--white);
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 32px;
}

.footer-brand {
  font-family: var(--head);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: .9;
  letter-spacing: -.07em;
  color: var(--white);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, .68);
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-title {
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .75rem;
}

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

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .84rem;
  color: rgba(255, 255, 255, .55);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}

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

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero,
  .intro-grid,
  .page-hero-grid,
  .music-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
    order: -1;
  }

  .hero-content {
    padding-bottom: 96px;
  }

  .hero-scroll {
    color: var(--text);
  }

  .hero-scroll i {
    border-color: rgba(26, 26, 26, .32);
  }

  .hero-scroll i::after {
    background: var(--text);
  }

  .feature-grid,
  .video-grid,
  .services-grid,
  .booking-steps,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  body {
    background: radial-gradient(circle at 20% 5%, rgba(200, 169, 107, .23), transparent 26%), var(--bg);
  }

  .site-header {
    top: 12px;
    width: min(calc(100% - 24px), 1240px);
    margin-top: 12px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: .92rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero,
  .section,
  .page-hero,
  .cta-band,
  .site-footer {
    width: min(calc(100% - 24px), var(--max));
  }

  .hero {
    margin-top: 18px;
    border-radius: 30px;
  }

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

  .hero-badge {
    width: calc(100% - 32px);
    left: 16px;
    right: 16px;
  }

  .hero-content {
    padding: 30px 22px 94px;
    gap: 22px;
  }

  h1 {
    font-size: clamp(3.55rem, 18vw, 5.6rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 4.2rem);
  }

  .split-block,
  .feature-grid,
  .video-grid,
  .services-grid,
  .booking-steps,
  .story-grid,
  .stats-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: auto;
    min-height: 330px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .release-item,
  .contact-link,
  .cta-band,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .cta-band {
    display: grid;
  }

  .btn-row .btn,
  .cta-band .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .hero-subtitle span {
    width: 100%;
    text-align: center;
  }

  .mobile-nav a {
    font-size: 2.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
