:root {
  color-scheme: light;
  --ink: #211f1b;
  --muted: #766f65;
  --paper: #fbf8f1;
  --paper-deep: #f1e9dd;
  --panel: rgba(255, 253, 248, .92);
  --soft: #f6f0e7;
  --line: rgba(122, 105, 84, .18);
  --line-strong: rgba(122, 105, 84, .32);
  --accent: #6e7d61;
  --accent-dark: #3f4d39;
  --rose: #a96459;
  --champagne: #d9c8a9;
  --shadow: 0 18px 46px rgba(64, 50, 35, .12);
  --shadow-soft: 0 8px 24px rgba(64, 50, 35, .08);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(122, 105, 84, .055) 1px, transparent 1px),
    radial-gradient(circle at 10% 0%, rgba(217, 200, 169, .42), transparent 30rem),
    radial-gradient(circle at 90% 16%, rgba(169, 100, 89, .12), transparent 26rem),
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 45%, var(--paper-deep) 100%);
  background-size: 42px 42px, auto, auto, auto;
  padding-bottom: 82px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .38;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .16) 1px, transparent 1px, transparent 4px);
}

button,
.button,
input { font: inherit; }

button,
.button {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  background: linear-gradient(180deg, #758567, var(--accent));
  color: #fff;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

button:hover,
.button:hover {
  box-shadow: 0 14px 32px rgba(64, 50, 35, .14);
}

button:active,
.button:active { transform: translateY(1px); }

button:disabled,
.button[aria-disabled="true"] {
  opacity: .46;
  cursor: not-allowed;
  box-shadow: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(169, 100, 89, .34);
  outline-offset: 3px;
}

input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, .82);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

input::placeholder { color: #9a9185; }

main {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 14px 0 38px;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 10px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
}

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

.mobile-hero {
  min-height: 312px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px max(18px, calc((100vw - 1120px) / 2)) 26px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(26, 24, 20, .16), rgba(26, 24, 20, .64)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 960 720'%3E%3Cdefs%3E%3CradialGradient id='a' cx='35%25' cy='18%25' r='72%25'%3E%3Cstop offset='0' stop-color='%23fff8eb'/%3E%3Cstop offset='.45' stop-color='%23d6c3a3'/%3E%3Cstop offset='1' stop-color='%2378856d'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='960' height='720' fill='url(%23a)'/%3E%3Cg opacity='.22' fill='none' stroke='%23fffaf0' stroke-width='2'%3E%3Cpath d='M72 540c140-180 254-262 416-302 136-34 236-92 334-174'/%3E%3Cpath d='M6 448c160-64 316-64 470 0 150 62 286 58 424-14'/%3E%3C/g%3E%3Cg opacity='.28'%3E%3Ccircle cx='768' cy='172' r='142' fill='%23a96459'/%3E%3Ccircle cx='202' cy='168' r='132' fill='%23fffaf0'/%3E%3Ccircle cx='626' cy='482' r='206' fill='%236e7d61'/%3E%3C/g%3E%3Cpath d='M0 592c184-70 354-78 512-18 164 62 294 46 448-36v182H0z' fill='%23fbf8f1'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.mobile-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 112px;
  background: linear-gradient(180deg, transparent, rgba(251, 248, 241, .96));
  pointer-events: none;
}

.topbar,
.intro { position: relative; z-index: 1; }

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 20px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .18);
}

.topbar a {
  color: #fff;
  text-decoration: none;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}

.intro { width: min(700px, 100%); }

.intro p,
.section-kicker {
  margin: 0 0 9px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 800;
}

h1,
h2 { margin: 0; line-height: 1.04; }

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(39px, 12vw, 76px);
  font-weight: 500;
  max-width: 760px;
  text-wrap: balance;
  text-shadow: 0 18px 46px rgba(0, 0, 0, .22);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 7vw, 38px);
  font-weight: 500;
  letter-spacing: 0;
}

.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 20px;
}

.quick-actions .primary {
  grid-column: 1 / -1;
  min-height: 56px;
  color: var(--accent-dark);
  background: linear-gradient(180deg, #fff, #f7efe3);
  border-color: rgba(255, 255, 255, .74);
  box-shadow: 0 18px 42px rgba(34, 31, 26, .2);
}

.quick-actions .secondary {
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .42);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.notice {
  color: #7f3129;
  background: rgba(255, 247, 242, .92);
  border: 1px solid #edcfc4;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.app-panel,
.poster,
.panel,
.admin-top {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 18px;
  margin-bottom: 20px;
  backdrop-filter: blur(18px);
}

.app-panel {
  position: relative;
}

.app-panel::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 200, 169, .92), transparent);
}

.upload-panel,
.songs,
.admin-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.privacy,
.hint,
small {
  color: var(--muted);
  line-height: 1.45;
}

.file-cta {
  position: relative;
  min-height: 126px;
  border: 1px solid rgba(110, 125, 97, .34);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(247, 239, 227, .92)),
    radial-gradient(circle at 50% 0%, rgba(217, 200, 169, .44), transparent 70%);
  display: grid;
  place-items: center;
  gap: 7px;
  text-align: center;
  padding: 20px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), var(--shadow-soft);
}

.file-cta::before {
  content: "+";
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 27px;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
}

.file-cta input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-cta span {
  font-size: 18px;
  font-weight: 850;
  color: var(--accent-dark);
}

#uploadForm button,
#songForm button { width: 100%; }

output {
  min-height: 22px;
  color: var(--accent-dark);
  font-weight: 800;
}

.gallery-head,
.actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.gallery-head button {
  color: #fff;
  background: linear-gradient(180deg, #34302a, var(--ink));
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 14px 0 30px;
}

.photo-tile {
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  background: #e9e1d5;
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(64, 50, 35, .1);
  border: 1px solid rgba(255, 255, 255, .62);
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms var(--ease), filter 260ms var(--ease);
}

.photo-tile:active img { transform: scale(1.025); }
.photo-tile span { font-weight: 850; }

.empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px 20px;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 253, 248, .62);
  color: var(--muted);
  text-align: center;
}

label,
form { display: grid; gap: 9px; }

.song-results { display: grid; gap: 8px; }

.track {
  min-height: 70px;
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-rows: auto auto;
  column-gap: 11px;
  align-items: center;
  justify-content: start;
  text-align: left;
  background: rgba(246, 240, 231, .88);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 8px;
  width: 100%;
  box-shadow: none;
}

.track img,
.track span,
.admin-item img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--line);
}

.track img,
.track span { grid-row: 1 / 3; }

.track b,
.track small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track.selected {
  outline: 0;
  border-color: rgba(169, 100, 89, .64);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(169, 100, 89, .18);
}

.bottom-nav {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(122, 105, 84, .18);
  border-radius: 8px;
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 18px 42px rgba(39, 35, 31, .18);
  backdrop-filter: blur(18px);
}

.bottom-nav a {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
  font-size: 14px;
}

.bottom-nav a.active,
.bottom-nav a:active {
  background: linear-gradient(180deg, #758567, var(--accent));
  color: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(20, 18, 16, .94);
  display: grid;
  place-items: center;
  padding: 66px 12px 82px;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 253, 248, .94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.lightbox-close { top: 14px; right: 14px; }
.lightbox-nav { bottom: 18px; min-width: 92px; }
.lightbox-nav.prev { left: 18px; }
.lightbox-nav.next { right: 18px; }

.error { color: #8f352d; }

.admin section { margin-bottom: 24px; }
.admin-list { display: grid; gap: 8px; }

.admin-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
}

.admin-item div { display: grid; gap: 4px; }

.poster {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}

.poster img {
  width: 160px;
  height: 160px;
}

@media (min-width: 721px) {
  body { padding-bottom: 0; }
  main { padding: 24px 0 58px; }
  .mobile-hero { min-height: 410px; }

  .quick-actions {
    display: flex;
    max-width: 600px;
  }

  .quick-actions .primary,
  .quick-actions .secondary { min-width: 154px; }

  .upload-panel,
  .songs,
  .admin-top {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 1.18fr);
    padding: 22px;
  }

  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(174px, 1fr));
    gap: 11px;
  }

  .photo-tile:hover img {
    transform: scale(1.035);
    filter: saturate(1.04) contrast(1.02);
  }

  .bottom-nav { display: none; }

  .poster { grid-template-columns: minmax(0, 1fr) 160px auto; }
}

@media (max-width: 720px) {
  .app-panel { margin-top: -2px; }
  .admin-top,
  .poster,
  .admin-item { grid-template-columns: 1fr; }
  .admin-item { align-items: stretch; }
}

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

@media print {
  body { padding-bottom: 0; }
  body > :not(.admin),
  .admin section:not(.poster),
  .actions,
  .bottom-nav { display: none; }

  .poster {
    min-height: 95vh;
    border: 0;
    text-align: center;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .poster img {
    width: 360px;
    height: 360px;
  }
}

/* Refined admin interface */
.admin-login-page {
  width: min(100%, 520px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 18px;
  display: grid;
  place-items: center;
}

.login-card {
  width: 100%;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .96), rgba(247, 239, 227, .94)),
    radial-gradient(circle at 50% 0%, rgba(217, 200, 169, .44), transparent 70%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(64, 50, 35, .16);
  padding: clamp(24px, 7vw, 38px);
}

.login-card::before,
.admin-top::before,
.admin-card::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 200, 169, .95), transparent);
}

.login-card h1,
.admin-top h1 {
  color: var(--ink);
  text-shadow: none;
}

.login-card .hint {
  margin: 12px 0 24px;
}

.login-card form {
  gap: 14px;
}

.login-card button {
  min-height: 52px;
}

.admin {
  width: min(1180px, calc(100% - 28px));
  padding-top: 22px;
}

.admin-top,
.admin-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 253, 248, .92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.admin-top {
  padding: clamp(20px, 4vw, 28px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 20px;
}

.admin-top .hint {
  max-width: 58ch;
  margin: 10px 0 0;
}

.admin .actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0;
}

.admin .actions form,
.admin .actions .button,
.admin .actions button {
  width: 100%;
}

.admin .button.quiet {
  color: var(--ink);
  background: rgba(255, 255, 255, .58);
  border-color: var(--line-strong);
  box-shadow: none;
}

.admin-card {
  padding: clamp(18px, 4vw, 24px);
  margin-bottom: 20px;
}

.admin-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 14px;
}

.poster.admin-card {
  grid-template-columns: 1fr;
  align-items: center;
}

.poster.admin-card p:not(.section-kicker) {
  overflow-wrap: anywhere;
  color: var(--muted);
  margin-bottom: 0;
}

.poster.admin-card img {
  justify-self: center;
  width: min(180px, 58vw);
  height: auto;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.poster.admin-card button {
  width: 100%;
}

.admin-list {
  gap: 10px;
}

.admin-item {
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 8px 22px rgba(64, 50, 35, .06);
}

.admin-item img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
}

.admin-item strong {
  overflow-wrap: anywhere;
}

.admin-item small {
  font-size: 12px;
}

.admin-item form {
  display: inline-grid;
}

.admin-item button {
  min-height: 40px;
  padding: 0 12px;
  box-shadow: none;
}

.admin-item form:last-child button {
  color: #7f3129;
  background: #fff7f2;
  border-color: #edcfc4;
}

@media (min-width: 721px) {
  .admin-top {
    grid-template-columns: minmax(0, 1fr) minmax(420px, auto);
    align-items: end;
  }

  .admin .actions {
    grid-template-columns: repeat(4, minmax(116px, auto));
    justify-content: end;
  }

  .poster.admin-card {
    grid-template-columns: minmax(0, 1fr) 180px 150px;
  }

  .admin-item {
    grid-template-columns: 58px minmax(0, 1fr) auto auto;
  }
}

.pin-entry {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.pin-box {
  height: 58px;
  min-height: 58px;
  padding: 0;
  text-align: center;
  font-size: 26px;
  font-weight: 850;
  letter-spacing: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, .86);
  border-color: rgba(122, 105, 84, .28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), var(--shadow-soft);
}

.pin-box:focus {
  border-color: rgba(169, 100, 89, .64);
}

/* Predominantly white theme override */
:root {
  --ink: #1f211f;
  --muted: #6f746d;
  --paper: #ffffff;
  --paper-deep: #f7f8f5;
  --panel: rgba(255, 255, 255, .96);
  --soft: #f6f8f4;
  --line: rgba(31, 33, 31, .10);
  --line-strong: rgba(31, 33, 31, .18);
  --accent: #6f8067;
  --accent-dark: #3f5039;
  --rose: #9b6a63;
  --champagne: #e6dccb;
  --shadow: 0 18px 48px rgba(31, 33, 31, .08);
  --shadow-soft: 0 8px 24px rgba(31, 33, 31, .06);
}

body {
  background:
    linear-gradient(90deg, rgba(31, 33, 31, .035) 1px, transparent 1px),
    radial-gradient(circle at 16% 0%, rgba(111, 128, 103, .10), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(230, 220, 203, .22), transparent 24rem),
    linear-gradient(180deg, #fff 0%, #fff 48%, #f7f8f5 100%);
  background-size: 42px 42px, auto, auto, auto;
}

body::before {
  opacity: .22;
  background: repeating-linear-gradient(135deg, rgba(31, 33, 31, .035), rgba(31, 33, 31, .035) 1px, transparent 1px, transparent 5px);
}

.mobile-hero {
  color: var(--ink);
  min-height: 300px;
  background:
    radial-gradient(circle at 8% 0%, rgba(111, 128, 103, .16), transparent 23rem),
    radial-gradient(circle at 94% 8%, rgba(230, 220, 203, .42), transparent 24rem),
    linear-gradient(180deg, #fff 0%, #fff 72%, rgba(247, 248, 245, .96) 100%);
  border-bottom: 1px solid var(--line);
}

.mobile-hero::after {
  background: linear-gradient(180deg, transparent, #fff);
}

.topbar strong,
h1 {
  text-shadow: none;
}

.topbar a {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-soft);
}

.quick-actions .primary {
  background: linear-gradient(180deg, #fff, #fbfcfa);
  border-color: var(--line-strong);
  box-shadow: 0 16px 34px rgba(31, 33, 31, .10);
}

.quick-actions .secondary {
  color: var(--accent-dark);
  background: rgba(255, 255, 255, .82);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.app-panel,
.admin-top,
.admin-card,
.login-card,
.panel,
.poster {
  background: rgba(255, 255, 255, .96);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.login-card {
  background:
    radial-gradient(circle at 50% 0%, rgba(111, 128, 103, .10), transparent 70%),
    linear-gradient(180deg, #fff, #fff);
}

.file-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(111, 128, 103, .10), transparent 68%),
    linear-gradient(180deg, #fff, #fbfcfa);
  border-color: var(--line-strong);
}

input,
.pin-box,
.track,
.empty,
.photo-tile,
.admin-item {
  background: #fff;
  border-color: var(--line);
}

.notice {
  background: #fff;
  border-color: rgba(155, 106, 99, .24);
}

.bottom-nav {
  background: rgba(255, 255, 255, .94);
  border-color: var(--line);
}

.poster.admin-card img {
  background: #fff;
}

@media (min-width: 721px) {
  .mobile-hero { min-height: 380px; }
}

/* Lighter button typography */
button,
.button,
.bottom-nav a,
.admin-item button {
  font-weight: 600;
}

/* Black button treatment */
button,
.button,
.gallery-head button,
.bottom-nav a.active,
.bottom-nav a:active {
  color: #fff;
  background: linear-gradient(180deg, #2b2b28, #050505);
  border-color: #050505;
}

.quick-actions .primary,
.quick-actions .secondary {
  color: #fff;
  background: linear-gradient(180deg, #2b2b28, #050505);
  border-color: #050505;
}

.file-cta::before {
  background: #050505;
}

.admin .button.quiet {
  color: var(--ink);
  background: #fff;
  border-color: var(--line-strong);
}

.admin-item form:last-child button {
  color: #7f3129;
  background: #fff7f2;
  border-color: #edcfc4;
}

/* Country mansion wedding hero image */
.mobile-hero {
  color: #fff;
  min-height: 340px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .36)),
    url("assets/mansion-wedding-hero.svg");
  background-size: cover;
  background-position: center 42%;
  border-bottom: 0;
}

.mobile-hero::after {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, .18) 62%, #fff 100%);
}

.mobile-hero .topbar a {
  color: #fff;
  border-color: rgba(255, 255, 255, .46);
  background: rgba(0, 0, 0, .18);
  box-shadow: none;
}

.mobile-hero .quick-actions .primary,
.mobile-hero .quick-actions .secondary {
  color: #fff;
  background: linear-gradient(180deg, #2b2b28, #050505);
  border-color: #050505;
}

@media (min-width: 721px) {
  .mobile-hero {
    min-height: 430px;
    background-position: center 46%;
  }
}

/* User-selected Pexels mansion header image */
.mobile-hero {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .42)),
    url("assets/pexels-mansion-header.jpg");
  background-size: cover;
  background-position: center 48%;
}

@media (max-width: 720px) {
  .mobile-hero {
    min-height: 360px;
    background-position: center 42%;
  }
}

@media (min-width: 721px) {
  .mobile-hero {
    min-height: 440px;
    background-position: center 46%;
  }
}

.button-icon {
  gap: 10px;
}

.button-icon svg {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-icon span {
  display: inline-block;
  line-height: 1;
}

.quick-actions .button-icon,
.actions .button-icon,
.admin-item button.button-icon,
.lightbox .button-icon,
#uploadForm button.button-icon,
#songForm button.button-icon,
.admin-login-page button.button-icon {
  justify-content: flex-start;
}

.button-icon {
  gap: 10px;
}

.button-icon svg {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-icon span {
  display: inline-block;
  line-height: 1;
}

.quick-actions .button-icon,
.actions .button-icon,
.admin-item button.button-icon,
.lightbox .button-icon,
#uploadForm button.button-icon,
#songForm button.button-icon,
.admin-login-page button.button-icon {
  justify-content: flex-start;
}

/* Rotating hero background, chosen per page load */
.mobile-hero {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .42)),
    var(--hero-image, url("assets/pexels-mansion-header.jpg"));
  background-size: cover;
  background-position: var(--hero-position, center 48%);
  background-repeat: no-repeat;
}

@media (max-width: 720px) {
  .mobile-hero {
    min-height: 360px;
  }
}

@media (min-width: 721px) {
  .mobile-hero {
    min-height: 440px;
  }
}