:root {
  --ink: #546a72;
  --ink-soft: #435960;
  --paper: #f0ebea;
  --paper-deep: #e5dddb;
  --white: #fbfaf8;
  --muted: #6f797c;
  --line: rgba(84, 106, 114, 0.19);
  --line-light: rgba(251, 250, 248, 0.19);
  --gold: #fc826c;
  --gold-light: #ffc0b3;
  --coral: #fc826c;
  --red: #ef4f42;
  --container: 1240px;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", "DM Sans", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
p,
blockquote {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

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

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

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

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 20px;
  top: -60px;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.section {
  padding: clamp(88px, 10vw, 148px) 0;
}

.eyebrow,
.mini-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  color: #817052;
}

.eyebrow-light {
  color: var(--gold-light);
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(17, 18, 15, 0.96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(calc(100% - 48px), 1380px);
  min-height: 84px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: none;
}

.brand img {
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-copy small {
  color: var(--gold-light);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin-left: auto;
}

.desktop-nav a,
.live-link {
  position: relative;
  font-size: 0.71rem;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -9px;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.live-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
}

.live-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(220, 74, 61, 0.14);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  min-height: 790px;
  height: 100svh;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero-media {
  background: url("assets/bstl-hero-real.webp") center 43% / cover no-repeat;
  transform: scale(1.015);
  animation: hero-settle 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 11, 9, 0.91) 0%, rgba(10, 11, 9, 0.64) 38%, rgba(10, 11, 9, 0.05) 72%),
    linear-gradient(0deg, rgba(10, 11, 9, 0.77) 0%, transparent 33%, rgba(10, 11, 9, 0.28) 100%);
}

@keyframes hero-settle {
  from { transform: scale(1.08); }
  to { transform: scale(1.015); }
}

@keyframes live-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.58;
    transform: scale(0.82);
  }
}

.hero-inner {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 84px;
}

.hero-copy {
  width: min(760px, 68vw);
  padding-bottom: 48px;
}

.hero h1 {
  max-width: 850px;
  margin-top: 24px;
  font-size: clamp(4.3rem, 7.7vw, 8.2rem);
  line-height: 0.88;
}

.hero h1 em,
.about h2 em,
.broadcast h2 em,
.connect h2 em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.hero-lead {
  max-width: 590px;
  margin-top: 32px;
  color: rgba(255, 253, 248, 0.76);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
}

.hero-actions,
.connect-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  min-height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.button-primary {
  background: var(--white);
  color: var(--ink);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(17, 18, 15, 0.14);
  backdrop-filter: blur(8px);
}

.play-icon {
  font-size: 0.65rem;
}

.scroll-cue {
  position: absolute;
  right: 0;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  width: 1px;
  height: 68px;
  background: linear-gradient(var(--gold-light), transparent);
}

.service-strip {
  background: var(--ink);
  color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-inline: 1px solid var(--line-light);
}

.service-grid[data-card-count="2"] {
  grid-template-columns: 1.05fr 1fr;
}

.service-grid[data-card-count="3"] {
  grid-template-columns: 1.05fr 1fr 1fr;
}

.service-grid article {
  min-height: 214px;
  padding: 36px clamp(28px, 3.2vw, 48px);
  border-right: 1px solid var(--line-light);
}

.service-grid[data-card-count="1"] article:first-child,
.service-grid[data-card-count="2"] article:nth-child(2),
.service-grid[data-card-count="3"] article:nth-child(3) {
  border-right: 0;
}

.service-grid article[hidden] {
  display: none;
}

.service-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--gold-light);
  color: var(--ink);
}

.service-event {
  margin-top: 24px;
}

.service-date {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.service-date strong {
  font: 400 clamp(2.7rem, 4vw, 4.6rem) / 0.9 var(--serif);
  letter-spacing: -0.06em;
}

.service-date span {
  max-width: 110px;
  font-size: 0.71rem;
  line-height: 1.5;
}

.service-event h2 {
  margin-top: 17px;
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  line-height: 1.08;
}

.service-event-note {
  margin-top: 7px;
  font-size: 0.69rem;
  line-height: 1.45;
  opacity: 0.72;
}

.quick-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 25px;
}

.quick-number {
  min-width: 52px;
  color: var(--gold-light);
  line-height: 1;
  text-align: center;
}

.quick-number strong {
  display: block;
  font: 400 1.7rem var(--serif);
}

.quick-number small {
  display: block;
  margin-top: 5px;
  font-size: 0.57rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.quick-card h2 {
  margin-top: 28px;
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
}

.quick-card.calendar-empty-card h2 {
  max-width: 370px;
  font-size: clamp(1.45rem, 1.9vw, 1.9rem);
  line-height: 1.12;
}

.quick-card p:not(.mini-label),
.quick-card a {
  margin-top: 11px;
  color: rgba(255, 253, 248, 0.57);
  font-size: 0.72rem;
  line-height: 1.6;
}

.quick-card a {
  display: inline-block;
  color: var(--gold-light);
}

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.82fr 0.66fr;
  gap: clamp(38px, 6vw, 92px);
  align-items: start;
}

.about h2,
.section-heading h2,
.visit h2,
.locations h2 {
  margin-top: 22px;
  font-size: clamp(3.5rem, 6vw, 6.6rem);
  line-height: 0.92;
}

.about-title > h2 {
  margin-top: 40px;
}

.about h2 em {
  color: #9b8050;
}

.about-copy {
  padding-top: 54px;
}

.about-copy p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.8;
}

.about-copy .about-lead {
  margin-bottom: 24px;
  color: var(--ink);
  font: 400 clamp(1.65rem, 2.3vw, 2.3rem) / 1.2 var(--serif);
  letter-spacing: -0.03em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 31px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 700;
}

.verse-card {
  min-height: 410px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
  overflow: hidden;
  background: var(--gold-light);
}

.verse-card::before {
  content: "“";
  position: absolute;
  right: 9px;
  top: -76px;
  color: rgba(17, 18, 15, 0.1);
  font: 400 18rem/1 var(--serif);
}

.verse-card img {
  position: absolute;
  top: 34px;
  left: 34px;
}

.verse-card blockquote {
  position: relative;
  font: 400 clamp(1.5rem, 2.1vw, 2.05rem) / 1.16 var(--serif);
  letter-spacing: -0.035em;
}

.verse-card > span {
  margin-top: 24px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 62px;
}

.section-heading h2 {
  font-size: clamp(3.5rem, 5.6vw, 6rem);
}

.locations-intro {
  max-width: 370px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
}

.broadcast {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  color: var(--white);
}

.broadcast::before {
  content: "BSTL";
  position: absolute;
  right: -2vw;
  bottom: -8vw;
  color: rgba(255, 255, 255, 0.025);
  font: 500 clamp(10rem, 30vw, 34rem) / 0.75 var(--sans);
  letter-spacing: -0.11em;
}

.broadcast-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(54px, 8vw, 118px);
  align-items: center;
}

.broadcast h2 {
  margin-top: 23px;
  font-size: clamp(3.4rem, 5.5vw, 6rem);
  line-height: 0.94;
}

.broadcast-copy > p:not(.eyebrow) {
  max-width: 430px;
  margin-top: 26px;
  color: rgba(255, 253, 248, 0.59);
  font-size: 0.88rem;
  line-height: 1.75;
}

.button-light {
  margin-top: 33px;
  background: var(--white);
  color: var(--ink);
}

.video-card {
  min-height: 490px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background:
    linear-gradient(rgba(17, 18, 15, 0.18), rgba(17, 18, 15, 0.68)),
    url("assets/bstl-hero-real.webp") center / cover;
}

.video-card-top,
.video-card-bottom {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 27px;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-card-top {
  top: 0;
  border-bottom: 1px solid var(--line-light);
}

.video-card-top span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.video-card-bottom {
  bottom: 0;
  align-items: end;
  border-top: 1px solid var(--line-light);
  text-transform: none;
  letter-spacing: 0;
}

.video-card-bottom strong {
  font: 400 1.35rem var(--serif);
}

.video-card-bottom span {
  color: rgba(255, 253, 248, 0.6);
  font-size: 0.68rem;
}

.youtube-live-player {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: var(--ink);
}

.youtube-live-player iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-card.is-live .video-card-top,
.video-card.is-live .video-card-bottom {
  pointer-events: none;
  background: rgba(17, 18, 15, 0.7);
  backdrop-filter: blur(8px);
}

.video-card.is-live .video-card-top {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.video-card.is-live .video-card-bottom {
  border-top-color: rgba(255, 255, 255, 0.22);
}

.video-play {
  position: relative;
  z-index: 1;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  padding-left: 6px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(17, 18, 15, 0.32);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.video-play:hover {
  transform: scale(1.08);
  background: var(--gold-light);
  color: var(--ink);
}

.video-play[hidden] {
  display: none;
}

.spotify-section {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}

.spotify-section::before {
  content: "";
  position: absolute;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  right: -15vw;
  top: -55%;
  border: 1px solid rgba(84, 106, 114, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 52px rgba(84, 106, 114, 0.035),
    0 0 0 104px rgba(84, 106, 114, 0.025);
}

.spotify-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(54px, 8vw, 118px);
  align-items: center;
}

.spotify-copy h2 {
  margin-top: 22px;
  font-size: clamp(3.4rem, 5.5vw, 5.8rem);
  line-height: 0.94;
}

.spotify-copy h2 em {
  color: #817052;
}

.spotify-copy > p:not(.eyebrow) {
  max-width: 430px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.spotify-player-shell {
  padding: 18px;
  border: 1px solid rgba(251, 250, 248, 0.12);
  background: var(--ink-soft);
  box-shadow: 0 30px 70px rgba(67, 89, 96, 0.2);
}

.spotify-player-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 4px 17px;
  color: rgba(251, 250, 248, 0.72);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.spotify-player-label > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.spotify-player-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(255, 192, 179, 0.1);
}

.spotify-player-shell iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: #121212;
}

.visit {
  background: var(--gold-light);
}

.visit-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 10vw, 145px);
}

.visit h2 {
  font-size: clamp(3.6rem, 5.8vw, 6rem);
}

.visit-intro > p:not(.eyebrow) {
  max-width: 460px;
  margin-top: 25px;
  color: rgba(17, 18, 15, 0.68);
  font-size: 0.9rem;
  line-height: 1.75;
}

.button-dark {
  margin-top: 33px;
  background: var(--ink);
  color: var(--white);
}

.visit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(17, 18, 15, 0.23);
}

.visit-list li {
  display: grid;
  grid-template-columns: 47px 1fr;
  gap: 24px;
  padding: 29px 0 31px;
  border-bottom: 1px solid rgba(17, 18, 15, 0.23);
}

.visit-list li > span {
  padding-top: 6px;
  font: 400 0.86rem var(--serif);
}

.visit-list h3 {
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
}

.visit-list p {
  max-width: 480px;
  margin-top: 7px;
  color: rgba(17, 18, 15, 0.64);
  font-size: 0.76rem;
  line-height: 1.65;
}

.locations {
  background: var(--paper);
}

.locations-intro {
  align-self: end;
  justify-self: end;
  font-size: 0.86rem;
}

.london-location {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  margin-bottom: 70px;
  background: var(--white);
  border: 1px solid var(--line);
}

.location-photo {
  min-height: 470px;
  background:
    linear-gradient(0deg, rgba(67, 89, 96, 0.14), transparent 42%),
    url("assets/bstl-kingsbury-aerial-v3.webp") center 58% / cover no-repeat;
  background-color: var(--paper-deep);
}

.location-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 68px);
  border-left: 1px solid var(--line);
}

.location-details h3 {
  margin-top: 18px;
  font-size: clamp(2.5rem, 4.2vw, 4.5rem);
  line-height: 0.94;
}

.location-details address {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.7;
}

.location-schedule {
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}

.location-schedule div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.location-schedule dt,
.location-schedule dd {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.4;
}

.location-schedule dt {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-schedule dd {
  font-weight: 700;
}

.location-details .button {
  align-self: flex-start;
}

.location-list {
  border-top: 1px solid var(--line);
}

.location-row {
  display: grid;
  grid-template-columns: 70px 1fr 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease, background 0.3s ease;
}

.location-row:hover {
  padding-inline: 20px;
  background: var(--white);
}

.location-index,
.location-row small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.location-row strong {
  font: 400 clamp(2rem, 3.4vw, 3.6rem) var(--serif);
  letter-spacing: -0.045em;
}

.location-row > span:last-child {
  font-size: 1.25rem;
}

.connect {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  color: var(--white);
  text-align: center;
}

.connect::before,
.connect::after {
  content: "";
  position: absolute;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.connect::before {
  left: -180px;
  bottom: -330px;
}

.connect::after {
  right: -230px;
  top: -340px;
}

.connect-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.connect-inner > img {
  margin-bottom: 29px;
}

.connect h2 {
  margin-top: 19px;
  font-size: clamp(4rem, 7vw, 7.4rem);
  line-height: 0.88;
}

.connect-inner > p:not(.eyebrow) {
  max-width: 530px;
  margin-top: 27px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.88rem;
  line-height: 1.75;
}

.connect-actions {
  justify-content: center;
  margin-top: 34px;
}

.connect-actions .button {
  margin-top: 0;
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 1fr 0.7fr;
  gap: clamp(34px, 4vw, 60px);
  padding-top: 74px;
  padding-bottom: 74px;
}

.footer-brand > p {
  max-width: 300px;
  margin-top: 23px;
  color: rgba(255, 253, 248, 0.52);
  font-size: 0.76rem;
  line-height: 1.7;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 13px;
}

.footer-column h2 {
  margin-bottom: 10px;
  color: var(--gold-light);
  font: 700 0.62rem var(--sans);
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.72rem;
  line-height: 1.5;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-socials a > span {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(190, 157, 91, 0.1);
}

.footer-socials a:hover {
  transform: translateX(3px);
}

.footer-bottom {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 253, 248, 0.43);
  font-size: 0.59rem;
}

.footer-bottom div {
  display: flex;
  gap: 28px;
}

.toast {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: 24px;
  max-width: min(420px, calc(100% - 36px));
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  font-size: 0.74rem;
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a:nth-last-child(2) {
    display: none;
  }

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

  .service-main {
    grid-column: 1 / -1;
  }

  .service-grid article:nth-child(2) {
    border-left: 0;
  }

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

  .verse-card {
    grid-column: 1 / -1;
    min-height: 330px;
  }

  .verse-card blockquote {
    max-width: 690px;
  }

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

  .broadcast-copy,
  .spotify-copy {
    max-width: 720px;
  }

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

@media (max-width: 780px) {
  html {
    scroll-padding-top: 72px;
  }

  .container,
  .nav-shell {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .nav-shell {
    min-height: 72px;
  }

  .desktop-nav,
  .live-link {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 7px;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 24px;
    height: 1px;
    display: block;
    background: var(--white);
    transition: transform 0.25s ease;
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    height: calc(100svh - 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 10px 24px 50px;
    overflow: hidden;
    isolation: isolate;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .mobile-menu::before {
    content: "";
    position: absolute;
    z-index: -1;
    right: -145px;
    top: -150px;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 130, 108, 0.2), transparent 67%);
    opacity: 0;
    transform: scale(0.65);
    transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .mobile-menu.is-open::before {
    opacity: 1;
    transform: scale(1);
  }

  .mobile-menu a {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 2px;
    border-bottom: 1px solid var(--line-light);
    font: 400 clamp(2rem, 9vw, 3rem) var(--serif);
    letter-spacing: -0.04em;
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 0.34s ease,
      transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
      padding 0.22s ease,
      color 0.22s ease,
      background 0.22s ease;
  }

  .mobile-menu.is-open a {
    opacity: 1;
    transform: none;
  }

  .mobile-menu.is-open a:nth-child(1) { transition-delay: 0.04s; }
  .mobile-menu.is-open a:nth-child(2) { transition-delay: 0.08s; }
  .mobile-menu.is-open a:nth-child(3) { transition-delay: 0.12s; }
  .mobile-menu.is-open a:nth-child(4) { transition-delay: 0.16s; }
  .mobile-menu.is-open a:nth-child(5) { transition-delay: 0.2s; }
  .mobile-menu.is-open a:nth-child(6) { transition-delay: 0.24s; }
  .mobile-menu.is-open a:nth-child(7) { transition-delay: 0.28s; }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    padding-left: 11px;
    padding-right: 11px;
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.035);
  }

  .mobile-menu a:active {
    color: var(--white);
    background: rgba(252, 130, 108, 0.16);
    transform: scale(0.985);
  }

  .mobile-menu a:last-child {
    justify-content: center;
    gap: 13px;
    margin-top: 17px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.33);
    border-radius: 999px;
    font: 700 0.72rem var(--sans);
    text-align: center;
  }

  .mobile-menu a:last-child::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: none;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 5px rgba(239, 79, 66, 0.14);
    animation: live-pulse 1.8s ease-in-out infinite;
  }

  @media (max-height: 720px) {
    .mobile-menu {
      justify-content: flex-start;
      padding-top: 24px;
      overflow-y: auto;
    }

    .mobile-menu a {
      padding-top: 9px;
      padding-bottom: 9px;
      font-size: clamp(1.65rem, 7vw, 2.2rem);
    }
  }

  .mobile-menu a:last-child:hover,
  .mobile-menu a:last-child:focus-visible {
    padding-left: 18px;
    padding-right: 18px;
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
  }

  .hero {
    min-height: 720px;
    height: 100svh;
    align-items: end;
  }

  .hero-media {
    background-position: 53% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(10, 11, 9, 0.92) 4%, rgba(10, 11, 9, 0.45) 61%, rgba(10, 11, 9, 0.35) 100%),
      linear-gradient(90deg, rgba(10, 11, 9, 0.45), transparent);
  }

  .hero-inner {
    align-items: end;
    padding-top: 98px;
    padding-bottom: 58px;
  }

  .hero-copy {
    width: 100%;
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 16vw, 5.7rem);
    line-height: 0.9;
  }

  .hero-lead {
    max-width: 520px;
    margin-top: 24px;
    font-size: 0.91rem;
  }

  .hero-actions {
    margin-top: 29px;
  }

  .scroll-cue {
    display: none;
  }

  .service-grid,
  .service-grid[data-card-count="2"],
  .service-grid[data-card-count="3"] {
    width: 100%;
    grid-template-columns: 1fr;
    border: 0;
  }

  .service-grid article,
  .service-grid article:nth-child(2) {
    min-height: 177px;
    border-inline: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .service-main {
    grid-column: auto;
  }

  .about-grid,
  .section-heading,
  .spotify-grid,
  .visit-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 48px;
  }

  .about h2,
  .section-heading h2,
  .spotify-copy h2,
  .visit h2,
  .locations h2 {
    font-size: clamp(3.3rem, 14vw, 5.2rem);
  }

  .about-copy {
    padding-top: 0;
  }

  .verse-card {
    grid-column: auto;
    min-height: 375px;
  }

  .section-heading {
    gap: 26px;
    margin-bottom: 43px;
  }

  .locations-intro {
    justify-self: start;
    text-align: left;
  }

  .london-location {
    grid-template-columns: 1fr;
    margin-bottom: 52px;
  }

  .location-photo {
    min-height: 330px;
    background:
      linear-gradient(0deg, rgba(67, 89, 96, 0.14), transparent 42%),
      url("assets/bstl-kingsbury-aerial-v3.webp") center 58% / cover no-repeat;
    background-color: var(--paper-deep);
  }

  .location-details {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .video-card {
    min-height: 390px;
  }

  .video-card-bottom {
    align-items: start;
    flex-direction: column;
    gap: 7px;
  }

  .visit-grid {
    gap: 58px;
  }

  .location-row {
    grid-template-columns: 44px 1fr auto;
  }

  .location-row small {
    display: none;
  }

  .connect h2 {
    font-size: clamp(3.8rem, 16vw, 5.8rem);
  }

  .footer-main {
    gap: 42px;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .footer-bottom div {
    flex-direction: column;
    gap: 11px;
  }
}

@media (max-width: 480px) {
  .brand-copy strong {
    max-width: 135px;
    line-height: 1.15;
  }

  .hero-actions,
  .connect-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-grid article {
    padding-inline: 22px;
  }

  .service-date {
    align-items: start;
    flex-direction: column;
    gap: 9px;
  }

  .service-date span {
    max-width: none;
  }

  .verse-card {
    padding: 26px;
  }

  .video-play {
    width: 76px;
    height: 76px;
  }

  .spotify-player-shell {
    padding: 12px;
  }

  .spotify-player-label {
    padding: 3px 3px 14px;
  }

  .location-photo {
    min-height: 255px;
  }

  .location-details .button {
    align-self: stretch;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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