/* CLOUDCOVER rebrand, 9 Aug 2026.
   Styled against the brand board in projects/cloud-cover/brand/ (Rachel, 8 Aug 2026):
   Soft White / Stone Grey / Warm Taupe / Graphite / Warm Metallic accent.
   Type: Inter Tight (self-hosted) standing in for Neue Montreal (commercial licence,
   Neil + Rachel to decide whether to buy it).
   Warm Metallic and Warm Taupe fail 4.5:1 contrast on Soft White, so on light
   surfaces they are decorative only (rules, hovers); text stays Graphite. */

:root {
  --soft-white: #F7F6F4;
  --stone: #D8D4CF;
  --taupe: #A89B8C;
  --graphite: #2E2E2E;
  --metallic: #B59F8A;
  --header-h: 76px;
  --pad-x: 4vw;
  --section: clamp(64px, 8vw, 120px);
}

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

@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/inter-tight-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/inter-tight-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

html { font-size: 17px; scroll-snap-type: y proximity; }
/* no root snapping where the burger menu runs: mobile sections aren't
   screen-height, and WebKit can snap a freshly loaded page away from the top,
   landing burger navigations mid-page (Rachel, 9 Aug) */
@media (max-width: 899px) {
  html { scroll-snap-type: none; }
}
main > section, .site-footer { scroll-snap-align: start; scroll-margin-top: var(--header-h); }
/* a section taller than the viewport must scroll freely; snap only at its start */
.screen {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 40px;
}
/* direct flex children with auto side margins stop stretching and shrink to
   fit their content; force full width so max-width + margin auto centre them */
.screen > [class*="grid"], .screen .sc-frame, .pkg-lede, .pkg-intro > p, .pricing-cols { width: 100%; }
@media (max-width: 767px) {
  .screen { min-height: 0; padding-block: 48px; }
}

body {
  font-family: 'Inter Tight', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.7;
  color: var(--graphite);
  background: var(--soft-white);
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-weight: 300; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 1.2rem + 2.6vw, 3.2rem); line-height: 1.2; }
h3 { font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem); line-height: 1.3; }
h4 { font-size: clamp(1.15rem, 1rem + 0.6vw, 1.45rem); line-height: 1.35; }

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow::after {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--metallic);
  margin-top: 14px;
}
.eyebrow--center { text-align: center; }
.eyebrow--center::after { margin-inline: auto; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: var(--soft-white);
  border-bottom: 1px solid var(--stone);
  z-index: 100;
  display: flex;
  align-items: center;
  padding-inline: var(--pad-x);
}
.site-header .nav,
.site-header .socials { flex: 1 1 0; display: flex; align-items: center; }
.site-header .nav { gap: 30px; }
.site-header .nav a {
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 0;
  white-space: nowrap;
}
.site-header .nav a[aria-current="page"] {
  border-bottom: 1px solid var(--metallic);
}
.site-header .nav a:hover { color: var(--taupe); }
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-indent: 0.32em;   /* balances the trailing tracking space */
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark img { width: 40px; height: 40px; }
.site-header .socials { justify-content: flex-end; gap: 20px; }

.icon-link { display: inline-flex; }
.icon-link svg { width: 18px; height: 18px; fill: currentColor; }
.icon-link:hover { color: var(--taupe); }

.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px 0;
}
.burger span {
  display: block;
  width: 34px;
  height: 1px;
  background: var(--graphite);
  margin: 9px 0;
}

/* mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--soft-white);
  z-index: 99;
  padding: 8vw 6vw;
  overflow-y: auto;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 26px; }
.mobile-menu nav a {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
}
.mobile-menu nav a[aria-current="page"] {
  border-bottom: 1px solid var(--metallic);
  display: inline-block;
  align-self: flex-start;
}
.mobile-menu .socials { display: flex; gap: 26px; margin-top: 48px; }
body.menu-open .mobile-menu { display: block; }
body.menu-open { overflow: hidden; }

@media (max-width: 899px) {
  .site-header { padding-inline: 5.64vw; }
  .site-header .nav, .site-header .socials { display: none; }
  .site-header .wordmark { margin-right: auto; font-size: 0.8rem; letter-spacing: 0.18em; text-indent: 0.18em; gap: 10px; }
  .wordmark img { width: 34px; height: 34px; }
  .burger { display: block; margin-left: 20px; }
  .site-header .btn-nav { margin-left: 0; padding: 9px 16px; }
}

/* ---------- shared section bits ---------- */
.content { padding-inline: var(--pad-x); }
.inset   { padding-inline: calc(2 * var(--pad-x)); }
@media (max-width: 767px) {
  .content { padding-inline: 5.64vw; }
  .inset   { padding-inline: 5.64vw; }
}

/* dark page banners (about / packages) */
.banner {
  background: var(--graphite);
  color: var(--soft-white);
  text-align: center;
  padding-block: 52px;
}
.banner h2 { color: var(--soft-white); }
.banner h2::after {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--metallic);
  margin: 26px auto 0;
}
@media (max-width: 767px) {
  .banner { padding-block: 44px; }
}

/* button */
.site-header .btn-nav {
  padding: 12px 24px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  margin-left: 24px;
  flex: none;
  background: var(--graphite);
  color: var(--soft-white);
  border-color: var(--graphite);
}
.site-header .btn-nav:hover {
  background: var(--metallic);
  border-color: var(--metallic);
  color: var(--graphite);
}
@media (min-width: 900px) {
  .site-header .wordmark {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .site-header .nav { flex: 1 1 0; }
  .site-header .socials { margin-left: auto; }
}
@media (min-width: 900px) and (max-width: 1249px) {
  .site-header .socials { display: none; }
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: var(--graphite);
  background: transparent;
  border: 1px solid var(--graphite);
  border-radius: 0;
  padding: 19px 46px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { background: var(--graphite); color: var(--soft-white); }
.btn--light { color: var(--soft-white); border-color: var(--soft-white); }
.btn--light:hover { background: var(--soft-white); color: var(--graphite); }
/* solid button for dark surfaces (contact form Send) */
.btn--accent { background: var(--soft-white); color: var(--graphite); border-color: var(--soft-white); }
.btn--accent:hover { background: var(--metallic); border-color: var(--metallic); color: var(--graphite); }

/* soft pulse on calls to action: a ring sweeps inward from the button's own
   edge, so the animation stays inside the button; stops on hover + reduced motion */
@keyframes cta-pulse {
  0%   { box-shadow: inset 0 0 0 1px rgba(181, 159, 138, 0.7); }
  65%  { box-shadow: inset 0 0 0 8px rgba(181, 159, 138, 0); }
  100% { box-shadow: inset 0 0 0 1px rgba(181, 159, 138, 0); }
}
.cta-band .btn, .site-header .btn-nav { animation: cta-pulse 2.8s ease-out infinite; }
.cta-band .btn:hover, .site-header .btn-nav:hover { animation: none; }
@media (prefers-reduced-motion: reduce) {
  .cta-band .btn, .site-header .btn-nav { animation: none; }
}

/* two-column row */
.cols2 { display: flex; gap: 40px; align-items: flex-start; }
.cols2 > * { flex: 1 1 0; min-width: 0; }
@media (max-width: 767px) {
  .cols2 { flex-direction: column; gap: 28px; }
  .cols2 > * { width: 100%; }
}

/* ---------- home ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  background: var(--graphite);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--soft-white);
}
.hero-poster {
  position: absolute;
  inset: 0;
  background: var(--graphite);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(7px) brightness(0.85);
  transform: scale(1.06);   /* hides the blurred edge fringe */
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-video.is-playing { opacity: 1; }
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(46, 46, 46, 0.45);
}
.hero-content { position: relative; z-index: 2; padding-inline: 6vw; }
.hero-content .hero-mark {
  width: clamp(72px, 10vw, 96px);
  height: auto;
  margin: 0 auto 30px;
}
.hero-content .hero-name {
  color: var(--soft-white);
  font-size: clamp(1.9rem, 1.1rem + 3vw, 3.3rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
  line-height: 1.1;
}
.hero-content .hero-sub {
  color: var(--soft-white);
  font-size: clamp(0.72rem, 0.6rem + 0.5vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.55em;
  text-indent: 0.55em;
  text-transform: uppercase;
  margin-top: 18px;
}
.hero-line {
  width: 44px;
  height: 1px;
  background: var(--metallic);
  margin: 30px auto;
}
.hero-content .hero-strap {
  color: var(--soft-white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.hero-content .hero-tags {
  color: var(--stone);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 20px;
}
.hero-content .hero-tags .sep { color: var(--metallic); padding-inline: 0.35em; }

.bio .cols2 { align-items: center; }
.bio .bio-text { padding-top: 8px; }
.bio .bio-text p + p { margin-top: 18px; }
.framed { position: relative; }
.framed::after {
  content: '';
  position: absolute;
  inset: 16px 16px -16px -16px;
  border: 1px solid var(--metallic);
  z-index: -1;
}

/* scroll cue: lives inside the home hero only, so it can never sit over copy */
.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--soft-white);
  pointer-events: none;
  animation: rise 0.8s ease 0.72s both;
}
.scroll-cue-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
}
.scroll-cue-line {
  width: 1px;
  height: 26px;
  background: rgba(216, 212, 207, 0.35);
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 1px;
  height: 10px;
  background: var(--metallic);
  animation: cue-drop 2.2s ease-in-out infinite;
}
@keyframes cue-drop {
  0%   { top: -10px; }
  70%  { top: 26px; }
  100% { top: 26px; }
}

/* hero load sequence */
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.hero-content > * { animation: rise 0.8s ease both; }
.hero-content > :nth-child(2) { animation-delay: 0.12s; }
.hero-content > :nth-child(3) { animation-delay: 0.24s; }
.hero-content > :nth-child(4) { animation-delay: 0.36s; }
.hero-content > :nth-child(5) { animation-delay: 0.48s; }
.hero-content > :nth-child(6) { animation-delay: 0.6s; }

.testimonials { text-align: center; padding-block: 28px; }
.quote-grid {
  columns: 3;
  column-gap: 20px;
  max-width: 1320px;
  margin: 22px auto 0;
  text-align: left;
}
.quote-card {
  break-inside: avoid;
  border: 1px solid var(--stone);
  background: var(--soft-white);
  padding: 14px 18px 12px;
  margin-bottom: 16px;
}
.quote-card::before {
  content: '\201C';
  display: block;
  font-size: 2.2rem;
  line-height: 0.6;
  font-weight: 300;
  color: var(--metallic);
  margin-bottom: 8px;
}
.quote-card blockquote {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
}
.quote-card figcaption {
  margin-top: 10px;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.quote-card .quote-meta {
  display: inline-block;
  margin-left: 10px;
  padding-left: 12px;
  border-left: 1px solid var(--metallic);
  font-weight: 400;
  color: #6d675f;
}
@media (max-width: 999px) { .quote-grid { columns: 2; } }
/* phones: one row you swipe through, snapping card to card; the sliver of the
   next card is the cue that there are more */
@media (max-width: 699px) {
  .quote-grid {
    columns: auto;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .quote-grid::-webkit-scrollbar { display: none; }
  .quote-card {
    flex: 0 0 84%;
    scroll-snap-align: center;
    margin-bottom: 0;
  }
}

.follow h2 { text-align: center; }
.follow-link { text-decoration: none; }
.follow-link:hover { color: var(--taupe); }
.follow-cta { text-align: center; margin-top: 28px; }
.btn--handle { text-transform: none; letter-spacing: 0.08em; font-size: 0.85rem; }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 30px;
  max-width: 1140px;
  margin-inline: auto;
}
.ig-grid a { display: block; aspect-ratio: 1 / 1; overflow: hidden; position: relative; }
.ig-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.25s ease;
}
.ig-grid a:hover img { opacity: 0.85; }
.ig-grid .play::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 18px 0 18px 30px;
  border-color: transparent transparent transparent var(--soft-white);
}
@media (max-width: 767px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 40px; }
}

/* ---------- about (Look & Listen) ---------- */
.eyebrow--ondark { color: var(--soft-white); }

.stage {
  background: var(--graphite);
  color: var(--soft-white);
}
.stage--more { justify-content: center; }
.stage .stage-feature { max-width: min(960px, calc((100svh - 340px) * 1.7778)); }
.page-title { text-align: center; }
.page-title::after {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--metallic);
  margin: 22px auto 0;
}
.stage .page-title { color: var(--soft-white); }
.stage .eyebrow { margin-top: 40px; }
.stage iframe { width: 100%; border: 0; display: block; }
.stage .yt { aspect-ratio: 16 / 9; background: #000; }

/* click-to-play video facade */
.yt-facade { position: relative; overflow: hidden; cursor: pointer; }
.yt-facade img {
  width: 100%; height: 100%;
  object-fit: cover;   /* crops the 4:3 thumbnail's letterbox bars to 16:9 */
  filter: brightness(0.72);
  transition: filter 0.25s ease, transform 0.4s ease;
}
.yt-facade:hover img, .yt-facade:focus-visible img { filter: brightness(0.9); transform: scale(1.02); }
.yt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 74px; height: 74px;
  border: 1px solid var(--soft-white);
  border-radius: 50%;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.yt-play::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-42%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--soft-white);
}
.yt-facade:hover .yt-play, .yt-facade:focus-visible .yt-play {
  background: rgba(181, 159, 138, 0.35);
  border-color: var(--metallic);
}
.stage-feature { max-width: 960px; margin-inline: auto; }
.stage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .stage-grid { grid-template-columns: 1fr; }
}

.listen { }
.sc-frame {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  border: 1px solid var(--stone);
  padding: 10px;
  position: relative;
}
.sc-frame iframe { display: block; border: 0; width: 100%; }
/* transparent cover that keeps wheel scrolling alive over the player;
   one click hands control to SoundCloud, mouseleave restores it */
.sc-shield {
  position: absolute;
  inset: 10px;
  z-index: 2;
  background: transparent;
  border: 0;
  padding: 0 0 18px;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: inherit;
}
.sc-shield--off { display: none; }
.sc-shield span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft-white);
  background: rgba(46, 46, 46, 0.72);
  padding: 9px 18px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.sc-shield:hover span, .sc-shield:focus-visible span { opacity: 1; }

.setlists { padding-block: var(--section); }
.setlist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}
.set-card {
  background: var(--soft-white);
  border: 1px solid var(--stone);
  padding: 30px 26px;
  text-align: center;
}
.set-card .set-no {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--taupe);
}
.set-card h3 { margin-top: 10px; }
.set-card h3::after {
  content: '';
  display: block;
  width: 34px;
  height: 1px;
  background: var(--metallic);
  margin: 20px auto 0;
}
.set-songs {
  list-style: none;
  margin-top: 24px;
  max-height: calc(100svh - 560px);
  min-height: 260px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--stone) transparent;
  -webkit-mask-image: linear-gradient(to bottom, #000 82%, transparent);
          mask-image: linear-gradient(to bottom, #000 82%, transparent);
  padding-bottom: 30px;
}
.set-songs li { padding-block: 9px; }
.set-songs li + li { border-top: 1px solid rgba(216, 212, 207, 0.55); }
.set-songs .song { display: block; font-weight: 400; }
.set-songs .artist {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6d675f;
  margin-top: 2px;
}
@media (max-width: 999px) {
  .setlist-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}

/* ---------- packages ---------- */
/* heading pinned to the top, cards stretch to fill the rest of the screen:
   the three packages are the feature, not the whitespace (Neil, 9 Aug) */
.pkg-intro { text-align: center; justify-content: flex-start; padding-block: 28px 48px; }
.pkg-intro .page-title { font-size: clamp(1.7rem, 1rem + 1.9vw, 2.3rem); }
.pkg-intro .page-title::after { margin-top: 8px; }
.pkg-lede { max-width: 940px; margin: 10px auto 0; font-size: 0.9rem; }
.pkg-intro > p { max-width: 940px; margin-inline: auto; }
.pkg-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 30px;
  flex: 1;
  align-items: stretch;
  text-align: left;
}
.pkg-card {
  border: 1px solid var(--stone);
  background: var(--soft-white);
  display: flex;
  flex-direction: column;
}
.pkg-card img { width: 100%; aspect-ratio: 655 / 150; object-fit: cover; }
.pkg-card figcaption { padding: 16px 22px 18px; display: flex; flex-direction: column; flex: 1; }
.pkg-name {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.pkg-price {
  font-size: clamp(1.5rem, 1.2rem + 0.9vw, 1.9rem);
  font-weight: 300;
  line-height: 1.1;
  margin-top: 6px;
}
.pkg-tag {
  margin-top: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--stone);
}
.pkg-card ul { list-style: none; margin-top: 14px; }
.pkg-card li { padding-left: 20px; text-indent: -14px; margin-left: 6px; margin-top: 4px; font-size: 0.9rem; line-height: 1.5; }
.pkg-card li::before { content: '·\00a0\00a0'; color: var(--metallic); }
.pkg-card--feature {
  background: var(--graphite);
  border-color: var(--graphite);
  color: var(--soft-white);
}
.pkg-card--feature .pkg-name { color: var(--metallic); }
.pkg-card--feature .pkg-tag { border-bottom-color: rgba(216, 212, 207, 0.35); }
@media (max-width: 999px) {
  .pkg-cards { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}
@media (max-width: 767px) {
  .pkg-intro { padding-block: 48px 56px; }
  .pkg-lede { margin-top: 14px; }
  .pkg-cards { margin-top: 36px; gap: 26px; }
}

/* "How We Price" band, its own section below the cards */
.pricing { text-align: center; padding-block: 68px 76px; }
.pricing .eyebrow { margin-bottom: 12px; }
.pricing .eyebrow::after { margin-top: 10px; }
.pricing-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  max-width: 1320px;
  margin-inline: auto;
  text-align: left;
}
.pricing-cols h4 { font-weight: 400; margin-bottom: 8px; font-size: 1.05rem; }
.pricing-cols h4::after {
  content: '';
  display: block;
  width: 34px;
  height: 1px;
  background: var(--metallic);
  margin-top: 8px;
}
.pricing-cols p { font-size: 0.85rem; line-height: 1.5; }
@media (max-width: 999px) {
  .pricing-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .pricing { padding-block: 48px 56px; }
  .pricing-cols { grid-template-columns: 1fr; gap: 24px; }
}

/* add-ons: full-screen stone band, six tiles echoing the package cards */
.addons {
  background: var(--stone);
  text-align: center;
}
.addons-lede { font-size: 0.9rem; max-width: 640px; margin-inline: auto; }
.addons-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1140px;
  width: 100%;
  margin: 40px auto 0;
}
.addons-grid li {
  background: var(--soft-white);
  border: 1px solid rgba(46, 46, 46, 0.12);
  padding: 30px 22px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.addon-name {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.addon-note {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: #6d675f;
}
.addon-price {
  display: block;
  margin-top: auto;
  padding-top: 14px;
  font-size: clamp(1.3rem, 1.1rem + 0.6vw, 1.6rem);
  font-weight: 300;
  line-height: 1.1;
}
.addon-price .from {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #6d675f;
  margin-right: 7px;
}
@media (max-width: 999px) {
  .addons-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
}
@media (max-width: 599px) {
  .addons-grid { grid-template-columns: 1fr; max-width: 420px; }
}

.cta-band {
  background: var(--graphite);
  color: var(--soft-white);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;   /* flex column; keeps the button its natural width */
  padding: 64px var(--pad-x);
}
.cta-band h2 { color: var(--soft-white); }
.cta-band p { margin-top: 18px; }
.cta-band .btn { margin-top: 36px; }

.faqs { }
.faqs .page-title { margin-bottom: 44px; }
.faq-grid { columns: 3; column-gap: 37px; }
.faq { break-inside: avoid; margin-bottom: 30px; }
.faq h4 { margin-bottom: 10px; font-weight: 400; }
.faq p + p { margin-top: 12px; }
.faqs .faq p { font-size: 0.92rem; line-height: 1.6; }
@media (max-width: 767px) {
  .faqs > h2 { margin-bottom: 40px; }
  .faq-grid { columns: 1; }
  .faq { margin-bottom: 40px; }
}

.gig-photos { display: flex; flex-direction: row; gap: 26px; align-items: center; justify-content: center; }
.gig-photos > div { flex: 1 1 0; min-width: 0; }
.gig-photos img { width: 100%; aspect-ratio: 649 / 360; object-fit: cover; object-position: 50% 93%; }
@media (max-width: 767px) {
  .gig-photos { flex-direction: column; gap: 24px; }
}

/* ---------- contact ---------- */
.contact-hero {
  background: var(--graphite);
  color: var(--soft-white);
  padding-top: 52px;
  padding-bottom: 52px;
}
.contact-hero .cols2 { gap: 56px; }
.contact-hero h2 { color: var(--soft-white); margin-bottom: 36px; }
.contact-hero h2::after {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--metallic);
  margin-top: 24px;
}
.contact-hero .contact-blurb p { max-width: 480px; }
.contact-hero .socials { display: flex; gap: 18px; margin-top: 64px; }
.contact-hero .icon-link:hover { color: var(--metallic); }
.contact-hero .icon-link svg { width: 20px; height: 20px; }

.enquiry-form .field-group-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.enquiry-form .name-row { display: flex; gap: 13px; }
.enquiry-form .name-row > div { flex: 1 1 0; }
.enquiry-form label {
  display: block;
  margin-top: 28px;
  margin-bottom: 6px;
  font-size: 0.85rem;
}
.enquiry-form .name-row label { margin-top: 16px; }
.enquiry-form label .req { color: var(--metallic); }
.enquiry-form label .opt { color: var(--stone); opacity: 0.7; }
/* native date + select widgets pick up the dark surface */
.enquiry-form { color-scheme: dark; }
.enquiry-form input[type="text"],
.enquiry-form input[type="email"],
.enquiry-form input[type="date"],
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0.005em;
  color: var(--soft-white);
  background: rgba(247, 246, 244, 0.05);
  border: 1px solid rgba(216, 212, 207, 0.4);
  border-radius: 0;
  padding: 12px;
}
.enquiry-form textarea { height: 110px; resize: vertical; }
/* iOS renders date inputs as centred text unless told otherwise */
.enquiry-form input[type="date"] {
  min-height: 47px;
  -webkit-appearance: none;
  appearance: none;
  text-align: left;
}
.enquiry-form select { min-height: 47px; }
.enquiry-form input:focus-visible,
.enquiry-form select:focus-visible,
.enquiry-form textarea:focus-visible {
  outline: none;
  border-color: var(--metallic);
}
.enquiry-form .btn { margin-top: 28px; }
@media (max-width: 767px) {
  .contact-hero { padding-top: 84px; }
  .contact-hero .socials { margin-top: 56px; }
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.cf-turnstile { margin: 18px 0 4px; }

/* thank-you */
.thanks {
  background: var(--graphite);
  color: var(--soft-white);
  padding-top: 140px;
  padding-bottom: 140px;
  text-align: center;
}
.thanks h2 { color: var(--soft-white); margin-bottom: 36px; }
.thanks .btn { margin-top: 40px; }

/* privacy + 404 */
.plain-page { padding-top: 90px; padding-bottom: 90px; max-width: 760px; }
.plain-page h2 { margin-bottom: 36px; }
.plain-page h4 { margin-top: 36px; margin-bottom: 12px; font-weight: 400; }
.plain-page p + p { margin-top: 18px; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--graphite);
  color: var(--soft-white);
  text-align: center;
  padding: 88px var(--pad-x) 40px;
}
.site-footer .footer-mark { width: 132px; height: auto; margin: 0 auto 10px; }
.footer-title {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}
.site-footer .strapline {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--stone);
}
.site-footer .socials { display: flex; justify-content: center; gap: 22px; margin-top: 40px; }
.site-footer .icon-link:hover { color: var(--metallic); }
.site-footer .privacy-link {
  display: block;
  margin-top: 34px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--stone);
  text-decoration: none;
}
.site-footer .privacy-link:hover { text-decoration: underline; }
.badges { padding-top: 40px; display: flex; align-items: center; justify-content: center; gap: 44px; }
.badges img { display: block; }
.badges a:first-child img { width: 90px; height: 90px; }
.mu-logo { width: 168px; height: auto; opacity: 0.9; }
@media (max-width: 767px) {
  .site-footer { padding-top: 64px; }
}

/* ---------- motion / a11y ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none !important; }
  * { transition: none !important; animation: none !important; }
}
a:focus-visible, button:focus-visible { outline: 2px solid var(--graphite); outline-offset: 2px; }
.contact-hero a:focus-visible, .banner a:focus-visible,
.hero a:focus-visible, .site-footer a:focus-visible, .thanks a:focus-visible { outline-color: var(--soft-white); }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
