:root {
  --bg: #f7f1ec;
  --bg-soft: #efe3d8;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #fffaf5;
  --text: #241715;
  --muted: #6d5a56;
  --line: rgba(95, 57, 57, 0.14);
  --brand: #6d2332;
  --brand-deep: #45111d;
  --shadow: 0 24px 60px rgba(45, 24, 22, 0.12);
  --radius: 28px;
  --radius-sm: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(148, 74, 90, 0.16), transparent 28%),
    linear-gradient(180deg, #fbf7f2 0%, var(--bg) 45%, #f3ebe5 100%);
}

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

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

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 242, 0.72);
  border-bottom: 1px solid rgba(95, 57, 57, 0.08);
}

.nav-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;
  min-height: 72px;
  padding: 0.05rem 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: min(100%, 250px);
  height: 70px;
  overflow: hidden;
}

.brand-mark__eyebrow,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand);
}

.brand-mark__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  min-width: 0;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--brand);
}

.site-nav .button {
  color: white;
}

.site-nav .button:hover {
  color: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, #873548 100%);
  color: white;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  box-shadow: 0 18px 32px rgba(109, 35, 50, 0.22);
}

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

.button--sm {
  min-height: 44px;
  padding: 0 1.1rem;
}

.button--ghost {
  background: transparent;
  color: var(--brand-deep);
  border-color: rgba(109, 35, 50, 0.18);
  box-shadow: none;
}

.hero,
.section,
.site-footer {
  padding: 5.5rem 0;
}

.hero {
  padding-top: 4rem;
}

.hero__grid,
.split-layout,
.video-layout,
.footer-layout {
  display: grid;
  gap: 2rem;
}

.hero__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
}

.hero__content h1,
.section-heading h2,
.site-footer h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.94;
}

.hero__content h1 {
  margin-top: 0.75rem;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  max-width: 10ch;
}

.hero__lede,
.section-heading p,
.intro-copy,
.feature-card p,
.act-card p,
.package-card p,
.testimonial-card p,
.note-panel p,
.site-footer,
.footer-links {
  color: var(--muted);
  line-height: 1.75;
}

.hero__lede {
  margin: 1.5rem 0 0;
  max-width: 56ch;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 2.2rem 0 0;
}

.hero__highlights li {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--text);
}

.hero__media {
  position: relative;
  min-height: 640px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-card--primary {
  inset: 0 3.5rem 3.5rem 0;
}

.hero-card--secondary {
  right: 0;
  bottom: 0;
  width: 52%;
  aspect-ratio: 1 / 1;
}

.hero-card img,
.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-strip {
  padding: 0 0 2rem;
}

.offer-strip__panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0.35rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #3b0d18 0%, var(--brand) 100%);
  box-shadow: 0 18px 38px rgba(69, 17, 29, 0.2);
}

.offer-strip__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 90px;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  color: white;
  background: rgba(255, 255, 255, 0.04);
}

.offer-strip__item p {
  margin: 0;
  color: white;
  line-height: 1.45;
  font-size: 0.98rem;
  font-weight: 700;
}

.offer-strip__icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.offer-strip__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
}

.hero-card--primary img {
  object-position: 48% 28%;
}

.hero-card--secondary img {
  object-position: 28% 42%;
}

.enquiry-cta {
  padding-top: 0;
}

.enquiry-cta__panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: 1.75rem 2rem;
  align-items: start;
  padding: 2rem 2.1rem;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(109, 35, 50, 0.08), rgba(109, 35, 50, 0.02)),
    rgba(255, 250, 245, 0.72);
  border: 1px solid rgba(95, 57, 57, 0.1);
  box-shadow: 0 18px 36px rgba(54, 30, 26, 0.06);
}

.enquiry-cta__media {
  position: sticky;
  top: 5.75rem;
  align-self: start;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(95, 57, 57, 0.1);
  box-shadow: 0 18px 36px rgba(54, 30, 26, 0.06);
  aspect-ratio: 4 / 5.35;
}

.enquiry-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 34%;
}

.enquiry-cta__main {
  display: grid;
  gap: 1.2rem;
}

.enquiry-cta__content h2 {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.15rem, 4.2vw, 3.2rem);
  font-weight: 600;
  line-height: 0.98;
}

.enquiry-cta__content p {
  max-width: 60ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.enquiry-cta__form {
  min-height: 320px;
  padding: 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(95, 57, 57, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.enquiry-cta__form .hs-form-frame {
  width: 100%;
}

.enquiry-cta__form iframe,
.enquiry-cta__form form {
  width: 100%;
  max-width: 100%;
}

.section--soft {
  background: rgba(255, 250, 245, 0.6);
}

.about-section .container {
  display: grid;
  gap: 2rem;
}

.about-section__intro {
  display: grid;
  gap: 1rem;
  align-items: start;
  max-width: 66rem;
}

.about-section__copy {
  max-width: 68ch;
  margin: 0;
}

.about-section__media {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(95, 57, 57, 0.1);
  box-shadow: 0 18px 36px rgba(54, 30, 26, 0.06);
}

.about-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.about-section__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.about-section .feature-card {
  padding: 2rem;
}

.section--accent {
  background:
    linear-gradient(135deg, rgba(109, 35, 50, 0.06), transparent 48%),
    var(--surface-strong);
}

.split-layout,
.video-layout,
.footer-layout {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  align-items: start;
}

.section-heading {
  max-width: 38rem;
}

.section-heading h2,
.site-footer h2 {
  margin-top: 0.8rem;
  font-size: clamp(2.5rem, 5vw, 4.1rem);
}

.section-heading--centered {
  text-align: center;
  margin: 0 auto 3rem;
}

.stack {
  display: grid;
  gap: 2rem;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.section-actions--centered {
  justify-content: center;
}

.video-actions {
  margin-top: 1.5rem;
}

.music-hero {
  padding-top: 4rem;
}

.music-hero__layout,
.music-feature {
  display: grid;
  gap: 2rem;
}

.music-hero__layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.62fr);
  align-items: end;
}

.music-hero__aside {
  display: grid;
  gap: 1.25rem;
}

.music-hero__content h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 6.6vw, 5.8rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 11ch;
}

.music-hero__lede {
  max-width: 60ch;
  margin: 1.3rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.music-hero__image {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 1.28 / 1;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(95, 57, 57, 0.1);
  box-shadow: 0 18px 36px rgba(54, 30, 26, 0.06);
}

.music-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.music-hero__panel {
  padding: 1.7rem;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(109, 35, 50, 0.08), rgba(109, 35, 50, 0.02)),
    rgba(255, 250, 245, 0.72);
  border: 1px solid rgba(95, 57, 57, 0.1);
  box-shadow: 0 18px 36px rgba(54, 30, 26, 0.06);
}

.music-hero__label {
  margin: 0 0 0.75rem;
  color: var(--brand);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 800;
}

.music-hero__panel p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.music-series__stack {
  display: grid;
  gap: 2.5rem;
}

.pricing-guide-hero {
  padding-top: 4rem;
}

.pricing-guide-hero__layout {
  display: grid;
  gap: 2rem;
}

.pricing-guide-hero__content h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.3rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.02em;
  max-width: 11ch;
}

.pricing-guide-hero__lede {
  max-width: 60ch;
  margin: 1.3rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.pricing-guide-viewer {
  padding-top: 0;
}

.pricing-guide-viewer__frame {
  overflow: hidden;
  min-height: 980px;
  border-radius: 28px;
  background: rgba(255, 250, 245, 0.82);
  border: 1px solid rgba(95, 57, 57, 0.1);
  box-shadow: 0 24px 48px rgba(54, 30, 26, 0.08);
}

.pricing-guide-viewer__frame iframe {
  display: block;
  width: 100%;
  min-height: 980px;
  border: 0;
  background: white;
}

.pricing-guide-cta {
  padding-top: 0;
}

.pricing-guide-cta__panel {
  display: grid;
  gap: 1.5rem;
  padding: 2.2rem;
  border-radius: 28px;
  background: rgba(255, 250, 245, 0.72);
  border: 1px solid rgba(95, 57, 57, 0.12);
  box-shadow: 0 18px 36px rgba(54, 30, 26, 0.06);
}

.pricing-guide-cta__actions {
  align-items: center;
}

.pricing-guide-cta__embed {
  min-height: 720px;
}

.pricing-guide-cta__embed .meetings-iframe-container {
  width: 100%;
  min-height: 720px;
}

.music-feature {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  align-items: center;
}

.music-feature--reverse .music-feature__media {
  order: 2;
}

.music-feature--reverse .music-feature__content {
  order: 1;
}

.music-feature__content {
  max-width: 34rem;
}

.music-feature__content h2 {
  margin: 0.55rem 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.4vw, 3.5rem);
  font-weight: 600;
  line-height: 0.98;
}

.music-feature__content p:last-of-type {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.music-feature__media {
  min-width: 0;
}

.music-video__placeholder {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(36, 23, 21, 0.08) 0%, rgba(36, 23, 21, 0.48) 100%),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(135deg, #d8c0b3 0%, #b98676 48%, #6d2332 100%);
  border: 1px solid rgba(95, 57, 57, 0.1);
  box-shadow: 0 18px 36px rgba(54, 30, 26, 0.06);
}

.music-video__placeholder::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 250, 245, 0.22);
}

.music-video__play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.16);
  border: 1px solid rgba(255, 250, 245, 0.34);
  backdrop-filter: blur(10px);
}

.music-video__play::before {
  content: "";
  margin-left: 0.3rem;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid white;
}

.music-video__text {
  position: relative;
  z-index: 1;
  color: rgba(255, 246, 240, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.music-video__embed {
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(95, 57, 57, 0.1);
  box-shadow: 0 18px 36px rgba(54, 30, 26, 0.06);
}

.music-video__embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.acts-section .section-heading--centered {
  margin-bottom: 2.5rem;
}

.acts-collage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(95, 57, 57, 0.1);
  box-shadow: 0 16px 30px rgba(54, 30, 26, 0.05);
}

.acts-collage__item {
  position: relative;
  margin: 0;
  min-height: 260px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  background: #d9c6ba;
}

.acts-collage__item + .acts-collage__item {
  border-left: 1px solid rgba(95, 57, 57, 0.08);
}

.acts-collage__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 23, 21, 0.06) 0%, rgba(36, 23, 21, 0.1) 38%, rgba(36, 23, 21, 0.48) 100%);
  z-index: 1;
}

.acts-collage__item::after {
  content: none;
}

.acts-collage__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.acts-collage__item figcaption {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.1rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.74);
  backdrop-filter: blur(8px);
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.acts-collage__item--soloists img {
  object-position: 63% 34%;
}

.acts-collage__item--duos img {
  object-position: 54% 56%;
  transform: scale(1.14);
  transform-origin: center;
}

.acts-collage__item--trios img {
  object-position: 50% 46%;
}

.acts-collage__item--bands img {
  object-fit: cover;
  object-position: 50% 50%;
}

.acts-section__cards {
  gap: 1.5rem;
}

.feature-grid,
.acts-grid,
.package-grid,
.testimonial-grid {
  display: grid;
  gap: 1.25rem;
}

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

.feature-card,
.act-card,
.package-card,
.testimonial-card,
.video-frame,
.note-panel {
  background: var(--surface);
  border: 1px solid rgba(95, 57, 57, 0.1);
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 36px rgba(54, 30, 26, 0.06);
}

.feature-card,
.act-card,
.package-card,
.testimonial-card {
  padding: 1.7rem;
}

.feature-card h3,
.act-card h3,
.package-card h3 {
  margin: 0 0 0.7rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
}

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

.act-card {
  min-height: 240px;
}

.act-card__index,
.package-card__label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--brand);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 800;
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 1.5rem;
}

.packages-section__top {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.52fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.35rem;
}

.packages-section__media {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(95, 57, 57, 0.1);
  box-shadow: 0 18px 36px rgba(54, 30, 26, 0.06);
}

.packages-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 36%;
}

.packages-section .package-card {
  display: grid;
  align-content: start;
  padding: 1.45rem;
}

.packages-section .section-heading {
  margin-bottom: 0;
}

.packages-section .package-card:not(.package-card--featured) {
  transform: scale(0.965);
}

.package-card__price {
  margin: -0.15rem 0 0.65rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1;
  color: var(--brand-deep);
}

.packages-section .package-card h3 {
  margin-bottom: 0.35rem;
}

.packages-section .package-card p {
  line-height: 1.62;
}

.package-card--featured {
  background: linear-gradient(180deg, rgba(109, 35, 50, 0.9), rgba(69, 17, 29, 0.96));
  color: white;
}

.package-card--featured p,
.package-card--featured .package-card__label {
  color: rgba(255, 246, 240, 0.85);
}

.package-card--featured .package-card__price {
  color: white;
}

.note-panel {
  margin-top: 1.25rem;
  padding: 1.2rem 1.5rem;
}

.packages-section .note-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.packages-section .note-panel p {
  margin: 0;
}

.packages-section__link {
  flex: 0 0 auto;
}

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

.testimonial-card {
  margin: 0;
}

.testimonial-card footer {
  margin-top: 1rem;
  color: var(--brand);
  font-weight: 700;
}

.reviews-embed {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(109, 35, 50, 0.05), rgba(109, 35, 50, 0.01)),
    rgba(255, 250, 245, 0.72);
  border: 1px solid rgba(95, 57, 57, 0.1);
  box-shadow: 0 18px 36px rgba(54, 30, 26, 0.06);
}

.reviews-embed__inner {
  min-height: 280px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 18px;
  border: 1px dashed rgba(109, 35, 50, 0.18);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.44), transparent 42%),
    rgba(255, 255, 255, 0.52);
}

.reviews-embed__label {
  margin: 0 0 0.8rem;
  color: var(--brand);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
}

.reviews-embed__inner h3 {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
}

.reviews-embed__inner p:last-child {
  max-width: 52ch;
  margin: 0;
}

.video-frame {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.video-frame--placeholder {
  position: relative;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(36, 23, 21, 0.06) 0%, rgba(36, 23, 21, 0.54) 100%),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(135deg, #d9beb1 0%, #b98676 45%, #6d2332 100%);
}

.video-frame--placeholder::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border-radius: calc(var(--radius-sm) - 6px);
  border: 1px solid rgba(255, 250, 245, 0.24);
}

.video-frame__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  text-align: center;
  color: white;
}

.video-frame__eyebrow,
.video-frame__meta {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 800;
  color: rgba(255, 246, 240, 0.82);
}

.video-frame__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 600;
  line-height: 0.96;
  max-width: 12ch;
}

.video-frame__play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin-bottom: 1.3rem;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.18);
  border: 1px solid rgba(255, 250, 245, 0.36);
  backdrop-filter: blur(10px);
}

.video-frame__play::before {
  content: "";
  margin-left: 0.35rem;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid white;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.site-footer {
  border-top: 1px solid rgba(95, 57, 57, 0.08);
}

.footer-links {
  display: grid;
  justify-items: start;
  gap: 0.75rem;
}

@media (max-width: 1040px) {
  .hero__grid,
  .split-layout,
  .video-layout,
  .footer-layout,
  .feature-grid,
  .acts-grid,
  .package-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__media {
    min-height: 520px;
  }

  .music-hero__layout,
  .music-feature,
  .pricing-guide-hero__layout {
    grid-template-columns: 1fr;
  }

  .music-feature--reverse .music-feature__media,
  .music-feature--reverse .music-feature__content {
    order: initial;
  }

  .pricing-guide-viewer__frame,
  .pricing-guide-viewer__frame iframe {
    min-height: 760px;
  }

  .hero-card--primary img {
    object-position: 50% 30%;
  }

  .hero-card--secondary img {
    object-position: 29% 40%;
  }

  .offer-strip__panel {
    grid-template-columns: 1fr;
  }

  .enquiry-cta__panel {
    grid-template-columns: 1fr;
  }

  .enquiry-cta__media {
    position: static;
    max-width: 420px;
  }

  .about-section__intro {
    gap: 1.5rem;
  }

  .about-section__media {
    max-width: none;
  }

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

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

  .packages-section__top {
    grid-template-columns: 1fr;
  }

  .packages-section .note-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .packages-section .package-card:not(.package-card--featured) {
    transform: none;
  }
}

@media (max-width: 760px) {
  .nav-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    min-height: auto;
    gap: 0.75rem;
  }

  .brand-mark {
    width: min(100%, 200px);
    height: 56px;
    flex: 0 0 auto;
  }

  .site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    justify-self: auto;
    gap: 0.6rem 1rem;
    font-size: 0.88rem;
  }

  .hero,
  .section,
  .site-footer {
    padding: 3.5rem 0;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero__grid,
  .split-layout,
  .video-layout,
  .footer-layout,
  .about-section__top,
  .about-section__intro,
  .feature-grid,
  .acts-grid,
  .package-grid,
  .testimonial-grid,
  .hero__highlights {
    grid-template-columns: 1fr;
  }

  .pricing-guide-viewer__frame,
  .pricing-guide-viewer__frame iframe {
    min-height: 620px;
  }

  .music-video__placeholder {
    min-height: 260px;
  }

  .about-section .container {
    gap: 2rem;
  }

  .section-actions {
    width: 100%;
    flex-direction: column;
  }

  .section-actions .button,
  .hero__actions .button {
    width: 100%;
    flex: 1 1 100%;
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .offer-strip {
    padding-bottom: 1.25rem;
  }

  .offer-strip__item {
    min-height: auto;
  }

  .about-section__grid {
    gap: 1.25rem;
  }

  .about-section__media {
    aspect-ratio: 5 / 4;
  }

  .packages-section__media {
    max-width: 100%;
  }

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

  .acts-collage__item + .acts-collage__item {
    border-left: 1px solid rgba(95, 57, 57, 0.08);
  }

  .acts-collage__item:nth-child(n+3) {
    border-top: 1px solid rgba(95, 57, 57, 0.08);
  }

  .acts-collage__item:nth-child(odd) {
    border-left: 0;
  }

  .hero__content h1 {
    max-width: 14ch;
  }

  .hero__media {
    min-height: auto;
  }

  .hero-card {
    position: static;
  }

  .hero-card--secondary {
    display: none;
  }

  .hero-card--primary img {
    aspect-ratio: 3 / 2;
    object-position: 52% 26%;
  }

  .note-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .packages-section__link {
    width: 100%;
    text-align: center;
  }

  .enquiry-cta__media {
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }

  .video-layout {
    gap: 1.75rem;
  }

  .video-frame {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .hero,
  .section,
  .site-footer {
    padding: 2.75rem 0;
  }

  .hero {
    padding-top: 2rem;
  }

  .pricing-guide-hero {
    padding-top: 2rem;
  }

  .nav-bar {
    justify-content: center;
  }

  .site-nav {
    justify-content: center;
    width: 100%;
    gap: 0.5rem 1rem;
  }

  .pricing-guide-viewer__frame,
  .pricing-guide-viewer__frame iframe {
    min-height: 520px;
  }

  .brand-mark {
    width: min(100%, 180px);
    height: 50px;
  }

  .enquiry-cta__panel {
    padding: 1.25rem 1rem;
    border-radius: 18px;
  }

  .enquiry-cta__form {
    padding: 0.75rem;
  }

  .feature-card,
  .act-card,
  .package-card,
  .testimonial-card {
    padding: 1.25rem;
  }

  .about-section .feature-card {
    padding: 1.25rem;
  }

  .acts-collage__item {
    min-height: 200px;
  }

  .section-heading h2,
  .site-footer h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero__content h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .section-heading--centered {
    margin-bottom: 2rem;
  }

  .packages-section__top {
    margin-bottom: 1.5rem;
  }

  .hero__highlights {
    gap: 0.75rem;
    margin-top: 1.75rem;
  }
}
