@charset "UTF-8";
/* latin-ext 
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/figtree-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;
}

@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/figtree-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;
}
 */
:root {
  --color-bg: #f5ead8;
  --color-surface: #ebddc5;
  --color-text: #201e1d;
  --color-accent: #c67139;
  --color-accent-2: #7a8a5e;
  --color-divider: color-mix(in srgb, #201e1d 16%, transparent);
  /* Tonal ramps — generated in OKLCH on one shared lightness scale, so the
   same step of any role matches the others in visual value. */
  --color-neutral-100: #f9f4ed;
  --color-neutral-200: #eee7db;
  --color-neutral-300: #dcd3c4;
  --color-neutral-400: #c0b6a5;
  --color-neutral-500: #a19786;
  --color-neutral-600: #82796a;
  --color-neutral-700: #645c50;
  --color-neutral-800: #474238;
  --color-neutral-900: #2e2b25;
  --color-accent-100: #fff2eb;
  --color-accent-200: #ffe1d0;
  --color-accent-300: #ffc6a5;
  --color-accent-400: #f6a06b;
  --color-accent-500: #d67f48;
  --color-accent-600: #b2622d;
  --color-accent-700: #8c491a;
  --color-accent-800: #643312;
  --color-accent-900: #402310;
  --color-accent-2-100: #f0fae1;
  --color-accent-2-200: #e1eecc;
  --color-accent-2-300: #ccdbb2;
  --color-accent-2-400: #aebf92;
  --color-accent-2-500: #8fa073;
  --color-accent-2-600: #728157;
  --color-accent-2-700: #56633f;
  --color-accent-2-800: #3d472b;
  --color-accent-2-900: #272e1b;
  --font-heading: "Baloo", system-ui, sans-serif;
  --font-heading-weight: 400;
  --font-body: "Figtree", system-ui, sans-serif;
  --dark-text: #141414;
  --space-1: 4.4px;
  --space-2: 8.8px;
  --space-3: 13.2px;
  --space-4: 17.6px;
  --space-6: 26.4px;
  --space-8: 35.2px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 12px;
  /* Elevation — derived from the ground: soft ink-tinted shadows on a
   light theme, a hairline edge + ambient darkness on a dark one. */
  --shadow-sm: 0 1px 2px color-mix(in srgb, #2e2b25 14%, transparent);
  --shadow-md: 0 3px 10px color-mix(in srgb, #2e2b25 16%, transparent);
  --shadow-lg: 0 12px 32px color-mix(in srgb, #2e2b25 22%, transparent);
}

.fade-edge {
  -webkit-mask-image: radial-gradient(ellipse at center, black 55%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, black 55%, transparent 100%);
}

.tilt-left {
  transform: rotate(-14deg);
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
}

.washedxx {
  filter: saturate(0.6) contrast(0.85) brightness(1.1) opacity(0.94);
}

.washed {
  filter: saturate(0.8) contrast(0.9) brightness(1.05) opacity(0.94);
}

/* ══════════════════════════════════════════════════════════════════════════
   Components — built with the tokens above. Plain CSS
   on plain HTML: no JavaScript, no build step. Each class is documented in
   readme.md and demonstrated in foundations/ and components/.
   ══════════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 var(--space-2);
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 13px;
}

h6 {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

p {
  margin: 0 0 var(--space-3);
}

a {
  color: var(--color-accent);
  text-underline-offset: 3px;
}

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

figure {
  margin: 0;
}

figcaption {
  font-size: 11px;
  margin-top: var(--space-1);
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
}

.text-muted {
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

::selection {
  background: color-mix(in srgb, var(--color-accent) 30%, transparent);
}

/* — rules — */
.hr {
  height: 1px;
  border: 0;
  margin: var(--space-4) 0;
  background: var(--color-divider);
}

h2.hybrid {
  display: flex;
  align-items: center;
}
h2.hybrid span {
  font-size: 18px;
  padding-left: 4px;
}

/* — buttons — */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-text); /* matches the .input's 14px —
the pair sits side by side in sign-up rows */
  background: transparent;
  border: 1px solid transparent;
  padding: var(--space-2) calc(var(--space-3) * 1.2);
  border-radius: var(--radius-md);
}

.btn svg {
  display: block;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
}

.btn-primary:hover {
  background: var(--color-accent-600);
}

.btn-primary:active {
  background: var(--color-accent-700);
}

.btn-secondary {
  border-color: #494949;
}

.btn-secondary:hover {
  background: color-mix(in srgb, var(--color-text) 7%, transparent);
}

.btn-secondary:active {
  background: color-mix(in srgb, var(--color-text) 14%, transparent);
}

.btn-ghost {
  color: var(--color-accent);
  padding-inline: var(--space-1);
}

.btn-ghost:hover {
  background: color-mix(in srgb, var(--color-accent) 10%, transparent);
}

.btn-ghost:active {
  background: color-mix(in srgb, var(--color-accent) 18%, transparent);
}

.btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
}

.btn-block {
  width: 100%;
  margin-top: var(--space-2);
}

/* — forms — */
.field > label {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}

.input {
  width: 100%;
  min-height: 36px;
  padding: 6px 10px;
  font: inherit;
  font-size: 14px;
  color: var(--color-text);
  caret-color: var(--color-accent);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
}

.input:hover {
  border-color: color-mix(in srgb, var(--color-text) 45%, transparent);
}

.input:focus-visible {
  border-color: var(--color-accent);
  outline-offset: 0;
}

textarea.input {
  min-height: 90px;
  resize: vertical;
}

.radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
}

.radio input, .seg-opt input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.radio .dot {
  width: 16px;
  height: 16px;
  flex: none;
  border-radius: 50%;
  border: 1.5px solid var(--color-divider);
}

.radio:hover .dot {
  border-color: var(--color-accent);
}

.radio input:checked + .dot {
  border-color: var(--color-accent);
  background: var(--color-accent);
  box-shadow: inset 0 0 0 4px var(--color-bg);
}

.radio input:focus-visible + .dot {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.seg {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
}

.seg-opt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  font-size: 13px;
  cursor: pointer;
}

.seg-opt + .seg-opt {
  border-left: 1px solid var(--color-divider);
}

.seg-opt:has(input:checked) {
  background: var(--color-accent);
  color: var(--color-bg);
}

.seg-opt:not(:has(input:checked)):hover {
  background: color-mix(in srgb, var(--color-text) 7%, transparent);
}

.seg-opt:has(input:focus-visible) {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

/* — cards — */
.card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.card-kicker {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.card-title {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 17px;
  line-height: 1.2;
}

.card-body {
  margin: 0;
  font-size: 15px;
  opacity: 0.8;
  flex: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: color-mix(in srgb, var(--color-text) 50%, transparent);
}

.elev-sm {
  box-shadow: var(--shadow-sm);
}

.elev-md {
  box-shadow: var(--shadow-md);
}

.elev-lg {
  box-shadow: var(--shadow-lg);
}

/* — tags — */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.02em;
  padding: 3px 10px;
  border-radius: calc(var(--radius-md) * 0.75);
}

.tag-accent {
  background: var(--color-accent-100);
  color: var(--color-accent-800);
}

.tag-accent-2 {
  background: var(--color-accent-2-100);
  color: var(--color-accent-2-800);
}

.tag-neutral {
  background: var(--color-neutral-100);
  color: var(--color-neutral-800);
}

.tag-outline {
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

/* — navigation — */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-bottom: none;
}

.nav-brand {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 18px;
  margin-right: auto;
}

.nav a {
  color: var(--dark-text);
  text-decoration: none;
  font-size: 14px;
}

.nav a:hover, .nav a[aria-current=page] {
  color: var(--color-accent);
}

/* — tables — */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 60%, transparent);
  padding: var(--space-2);
  border-bottom: 1px solid var(--color-divider);
}

.table td {
  padding: var(--space-2);
  border-bottom: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
}

.table tbody tr:hover {
  background: color-mix(in srgb, var(--color-text) 4%, transparent);
}

/* — dialog — */
.dialog-backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: var(--space-4);
  background: color-mix(in srgb, var(--color-neutral-900) 50%, transparent);
}

.dialog {
  width: min(440px, 100%);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-lg);
}

.dialog-title {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 20px;
}

.dialog-body {
  font-size: 14px;
  opacity: 0.85;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

/* — rounded frame: everything softens, small controls go pill — */
.card, .dialog {
  border-radius: calc(var(--radius-lg) * 1.15);
}

.btn, .tag, .seg, .input {
  border-radius: 999px;
}

.input {
  padding-inline: 14px;
}

/* ══════════════════════════════════════════════════════════════════════════
   Page-specific layout — Bob Melrose Band
   Structural/spacing rules lifted out of inline styles so markup and
   presentation stay separate. Design-system components (.btn, .card, .tag,
   .nav, etc.) live above; these are one-off layout pieces for this page.
   ══════════════════════════════════════════════════════════════════════ */
/* — spacing utilities — */
.mb-3 {
  margin-bottom: var(--space-3);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

/* — shared layout — */
.page {
  background: var(--color-bg);
  color: var(--color-text);
  width: 100%;
  font-family: var(--font-body);
}

.section {
  max-width: 1360px;
  margin: 0 auto;
  padding: 70px 6vw;
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-neutral-700);
  margin: 0 0 var(--space-6);
  max-width: 520px;
}

.kicker {
  color: var(--color-accent-700);
}

.kicker--strong {
  color: var(--color-accent);
}

.eyebrow {
  color: var(--color-neutral-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  margin-bottom: var(--space-3);
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

/* — button size/variant modifiers (pair with .btn / .btn-primary / .btn-secondary) — */
.btn-lg {
  font-size: 15px;
  padding: 14px 28px;
}

.btn-md {
  padding: 14px 26px;
}

.btn-hero-outline {
  border: 1px solid rgba(245, 234, 216, 0.6);
  color: #f5ead8;
}

.sixteen9 {
  aspect-ratio: 16/9;
}

.sixteen10 {
  aspect-ratio: 16/109;
}

.sixteen11 {
  aspect-ratio: 16/11;
}

/* — hero —
   Mobile-first: the media block sizes itself to an aspect-ratio (taller,
   16/10–16/11, on narrow screens so the photo doesn't get cropped down to a
   sliver) and the text sits in normal flow underneath it. From 900px up,
   the ratio settles at 16/9 and the text lifts out of flow to overlay the
   bottom of the image, which is the original "poster" look. */
.hero {
  position: relative;
  width: 100%;
}

.hero-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/11;
}

@media (min-width: 640px) {
  .hero-media {
    aspect-ratio: 16/10;
  }
}
@media (min-width: 900px) {
  .hero-media {
    aspect-ratio: 16/9;
  }
}
/* — gallery: several images cross-fade in place — */
.hero-gallery {
  position: absolute;
  inset: 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease;
}

.hero-photo.is-active {
  opacity: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--color-neutral-900) 0%, transparent) 0%, color-mix(in srgb, var(--color-neutral-900) 0%, transparent) 50%, color-mix(in srgb, black 100%, transparent) 100%);
}

.hero-dots {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  right: 6vw;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(245, 234, 216, 0.4);
  transition: background 0.3s ease;
}

.hero-dot.is-active {
  background: #f5ead8;
}

.nav--hero {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: var(--space-6) 6vw;
  color: #f5ead8;
}

.nav--hero .nav-brand {
  color: var(--dark-text);
  visibility: hidden;
}

.nav--hero a {
  color: var(--dark-text);
  font-weight: 600;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 28px 6vw 44px;
}

@media (min-width: 900px) {
  .hero-content {
    position: absolute;
    inset: auto 0 0 0;
    padding: 0 6vw 72px;
  }
}
.hero-badge {
  background: #f5ead8;
  margin-bottom: var(--space-4);
}

.hero-title {
  font-weight: 800;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.08;
  color: #f5ead8;
  max-width: 820px;
  margin: 0 0 var(--space-4);
}

.hero-subtitle {
  font-size: 18px;
  color: #f0ebe0;
  max-width: 480px;
  margin: 0 0 var(--space-6);
}

/* — gigs — */
.gig-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.gig-list--recent {
  margin-bottom: var(--space-8);
}

.gig-card {
  flex-direction: row;
  align-items: center;
  gap: 26px;
  padding: 22px 26px;
}

.gig-card--past {
  opacity: 0.65;
}

.gig-date {
  width: 64px;
  flex-shrink: 0;
  text-align: center;
}

.gig-date-day {
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1;
  color: var(--color-accent-700);
}

.gig-date-day--muted {
  color: var(--color-neutral-700);
}

.gig-date-month {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-neutral-700);
}

.gig-info {
  flex: 1;
  min-width: 0;
}

.btn-gig-details {
  flex-shrink: 0;
  background: var(--color-accent-2);
  color: var(--color-accent-2-100);
}

/* — about — */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: top;
}

.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-text {
  font-size: 17px;
  color: var(--color-neutral-800);
  margin-bottom: var(--space-6);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

/* — video — */
.video-toggle {
  display: flex;
  gap: 10px;
  margin: 0 0 28px;
  flex-wrap: wrap;
}

.video-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .video-frame {
    max-width: 860px;
    margin: 0;
  }
}
.video-slot-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  color: var(--color-neutral-700);
  font-size: 14px;
  text-align: center;
  padding: 20px;
}

/* — setlist — */
.setlist-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-neutral-800);
  max-width: 900px;
}
.setlist-text i {
  color: color-mix(in srgb, var(--color-text) 50%, transparent);
}
.setlist-text span:last-of-type {
  display: none;
}

/* — press — */
.press-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.press-grid .card {
  background: none;
  padding: 0;
  border-radius: 0;
}

.press-quote {
  font-size: 26px;
  line-height: 1.5;
  font-style: italic;
  margin: 0;
}

/* — contact — */
.footer-container {
  background: var(--color-surface);
}

.section-contact {
  position: relative;
  margin: 36px auto 0;
  color: var(--color-text);
}

.section-contact::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background: var(--color-surface);
  z-index: -1;
}

.contact-content {
  max-width: 640px;
}

.contact-subtitle {
  color: var(--color-neutral-700);
  margin: 0 0 var(--space-8);
}

.footer-note {
  font-size: 13px;
  color: var(--color-neutral-700);
  margin-top: 48px;
}

/* ══════════════════════════════════════════════════════════════════════════
   Page-specific theme override — Bob Melrose Band uses a dark palette on
   top of the light "Organic" design system above. Edit these variables to
   retheme the whole site; edit the tokens above to change the underlying
   system.
   ══════════════════════════════════════════════════════════════════════ */
body {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Baloo 2", var(--font-heading);
}

:root {
  --color-bg: #0e0e0e;
  --color-text: #cacaca;
  --color-surface: #1c1c1c;
  --color-divider: #2e2e2e;
  --color-neutral-100: #1c1c1c;
  --color-neutral-200: #262626;
  --color-neutral-300: #333333;
  --color-neutral-700: #a3a3a3;
  --color-neutral-800: #cacaca;
  --color-neutral-900: #f2f2f2;
}

.btn-primary {
  color: #fbf8f3;
}

@media (max-width: 760px) {
  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: top;
  }
}
@media (max-width: 5000px) {
  #player, .video-frame {
    border-radius: 0;
  }
  .video-slot-inner {
    padding: 0;
  }
}
/* ══════════════════════════════════════════════════════════════════════════
   Video player — big overlay play button + custom controls.
   Pairs with gigprojector_render_video() output and play.js (bm_vd()).
   Written against this project's existing tokens (--color-*, --radius-*,
   --font-heading) rather than introducing new custom properties.
   ══════════════════════════════════════════════════════════════════════ */
/* ── Player shell ── */
#player {
  width: 100%;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider);
  overflow: hidden;
}

/* ── Video wrapper ── */
#vid-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  cursor: pointer;
}

/* ── Video element ── */
#vid {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

/* ── Big overlay play button ── */
#big-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  padding: 0;
}

#big-play.hidden {
  opacity: 0;
  pointer-events: none;
}

#big-play-inner {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: color-mix(in srgb, black 55%, transparent);
  border: 3px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s, background 0.18s, border-color 0.18s;
}

#big-play:hover #big-play-inner {
  transform: scale(1.1);
  background: color-mix(in srgb, black 75%, transparent);
}

#big-play:active #big-play-inner {
  transform: scale(0.97);
}

#big-play svg {
  width: 36px;
  height: 36px;
  fill: var(--color-accent);
  margin-left: 5px; /* optical centre for triangle */
}

/* flash animation when pausing mid-play */
@keyframes play-flash {
  0% {
    opacity: 1;
    transform: scale(1.15);
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}
#big-play.flash #big-play-inner {
  animation: play-flash 0.35s ease-out forwards;
}

/* ── Controls bar ── */
#controls {
  padding: 10px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Progress */
#prog-wrap {
  position: relative;
  height: 3px;
  cursor: pointer;
  padding: 8px 0;
  margin: -8px 0;
}

#prog-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  transform: translateY(-50%);
  background: var(--color-divider);
  border-radius: 2px;
  transition: height 0.12s;
}

#prog-wrap:hover #prog-track {
  height: 5px;
}

#prog-fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: 2px;
  width: 0%;
  pointer-events: none;
}

#prog-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.12s;
  pointer-events: none;
}

#prog-wrap:hover #prog-thumb {
  transform: translate(-50%, -50%) scale(1);
}

/* ── Button row ── */
#btn-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Player-local .btn look — distinct from the site-wide .btn used for links
   elsewhere on the page (Call Us / Email / etc.), scoped under #controls so
   the two never collide. */
#controls .btn {
  background: none;
  border: none;
  color: var(--color-accent);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  line-height: 1;
}

#controls .btn:hover {
  background: color-mix(in srgb, var(--color-text) 10%, transparent);
}

#controls .btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#controls .btn svg.filled {
  fill: currentColor;
  stroke: none;
}

#time {
  font-size: 11px;
  color: var(--color-neutral-700);
  letter-spacing: 0.05em;
  margin-left: 4px;
  white-space: nowrap;
  user-select: none;
}

#gap {
  flex: 1;
}

/* Volume */
#vol-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}

#vol-range {
  -webkit-appearance: none;
  appearance: none;
  width: 70px;
  height: 3px;
  background: var(--color-divider);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

#vol-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-accent);
  cursor: pointer;
}

/* Speed (only appears if you re-enable the button in the PHP markup) */
#speed {
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--color-neutral-700);
  letter-spacing: 0.04em;
  background: none;
  border: 0.5px solid var(--color-divider);
  border-radius: 4px;
  padding: 3px 7px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}

#speed:hover {
  color: var(--color-accent);
  border-color: var(--color-neutral-500);
}

/* ── Page-specific override ──
   .video-frame (in site.css) is fixed to aspect-ratio:16/9 with
   overflow:hidden — sized for a single image/video block. #player now
   contains the video AND a controls bar beneath it, which is taller than
   that fixed ratio allows, so without this override the controls row gets
   clipped off. #vid-wrap already enforces its own 16/9 ratio for the video
   portion, so .video-frame no longer needs to. */
.video-frame {
  aspect-ratio: auto;
  overflow: visible;
}

/*# sourceMappingURL=site.css.map */
