/* Premium enhancements — animations & interactive UI */

/* Announcement bar: pause on hover */
.announcement-bar:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item i {
  display: inline-block;
  animation: iconPulse 2.5s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.85; }
}

/* Header glass + gold glow when scrolled */
.main-nav.scrolled {
  background: rgba(8, 10, 9, 0.92);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* Hero premium effects (home) */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.5);
  animation: particleFloat 12s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-120vh) translateX(20px); opacity: 0; }
}

.hero-shimmer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.04) 50%, transparent 60%);
  animation: heroShimmer 8s ease-in-out infinite;
}

@keyframes heroShimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

.hero-scroll {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.btn-gold,
.btn-emerald {
  position: relative;
  overflow: hidden;
}

.btn-gold::before,
.btn-emerald::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-gold:hover::before,
.btn-emerald:hover::before {
  transform: translateX(100%);
}

/* Sticky reserve strip */
.sticky-reserve-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 10px 16px;
  background: rgba(10, 12, 11, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201, 169, 98, 0.25);
  display: flex;
  justify-content: center;
  gap: 10px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.sticky-reserve-bar.is-visible {
  transform: translateY(0);
}

.sticky-reserve-bar .btn-gold,
.sticky-reserve-bar .btn-outline {
  padding: 10px 20px;
  font-size: 0.75rem;
}

@media (min-width: 992px) {
  .sticky-reserve-bar { display: none; }
}

/* Specials promotional cards */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding: 48px 0 80px;
}

.special-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: var(--bg-card);
  min-height: 280px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s;
}

.special-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 169, 98, 0.08);
}

.special-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transition: transform 0.6s ease, opacity 0.3s;
}

.special-card:hover .special-card-bg {
  transform: scale(1.08);
  opacity: 0.5;
}

.special-card-body {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.special-card-badge {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #a8863f);
  color: var(--bg-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(201, 169, 98, 0); }
}

.special-card-day {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.special-card-sub {
  font-size: 0.875rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.special-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  flex: 1;
}

.special-card li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 5px 0 5px 14px;
  position: relative;
}

.special-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--emerald-light);
}

.special-card-time {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border-glass);
  font-size: 0.8125rem;
  color: var(--gold);
  font-weight: 600;
}

.special-card--wide {
  grid-column: 1 / -1;
  max-width: 100%;
}

@media (min-width: 768px) {
  .special-card--wide { grid-column: span 2; }
}

/* Menu item cards with image */
.menu-item-card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.35s ease, border-color 0.3s, box-shadow 0.35s;
}

.menu-item-card:hover {
  transform: translateX(6px);
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.menu-item-card-img {
  width: 100px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.menu-item-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-item-card:hover .menu-item-card-img img {
  transform: scale(1.1);
}

.menu-category-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  min-height: 140px;
  display: flex;
  align-items: flex-end;
}

.menu-category-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-category-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 12, 10, 0.9), transparent 60%);
}

.menu-category-banner h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 24px;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  text-transform: uppercase;
}

/* Glass service cards */
.service-card {
  backdrop-filter: blur(8px);
  transition: transform 0.4s ease, border-color 0.3s, box-shadow 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.service-icon {
  transition: transform 0.4s ease, box-shadow 0.4s;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px var(--gold-glow);
}

/* FAB extras */
.fab-stack--enhanced {
  bottom: 90px;
}

@media (max-width: 991px) {
  body.has-sticky-bar { padding-bottom: 64px; }
  body.has-sticky-bar .fab-stack { bottom: 140px; }
  body.has-sticky-bar #scroll-top { bottom: 72px; }
}

/* AOS overrides for dark theme */
[data-aos] {
  pointer-events: auto;
}

/* —— Accessibility & QA —— */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--gold);
  color: #0a0a0b;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

#main-content:focus {
  outline: none;
}

/* —— Lindsmind brand identity —— */
.nav-logo.nav-logo--brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.05;
  text-align: center;
  gap: 2px;
  padding: 4px 0;
  font-size: inherit;
  font-weight: inherit;
  max-width: min(220px, 42vw);
}

.nav-logo-mark {
  font-family: 'Cinzel', var(--font-display);
  font-size: clamp(0.75rem, 1.8vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.nav-logo-sub {
  font-family: var(--font-display);
  font-size: clamp(0.65rem, 1.4vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-logo--brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.footer-logo-mark {
  font-family: 'Cinzel', var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.footer-logo-sub {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mobile-menu-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 24px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
}

.hero-brand-line {
  font-family: 'Cinzel', var(--font-display);
  font-size: clamp(0.55rem, 1.5vw, 0.7rem);
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
  opacity: 0.9;
}

.hero-title--brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
}

.hero-title-mark {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 9vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 45%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 24px rgba(201, 169, 98, 0.25));
}

.hero-title-tag {
  font-family: 'Cinzel', var(--font-display);
  font-size: clamp(0.85rem, 2.5vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--emerald-light);
}

.hero-brand-ring {
  position: absolute;
  inset: 12% 8%;
  z-index: 2;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 98, 0.12);
  box-shadow:
    0 0 0 1px rgba(46, 204, 113, 0.06) inset,
    0 0 120px rgba(26, 122, 76, 0.15);
  pointer-events: none;
  animation: brandRingPulse 6s ease-in-out infinite;
}

@keyframes brandRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.02); opacity: 0.85; }
}

.page-home .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(8, 12, 10, 0.4) 0%,
    rgba(8, 12, 10, 0.72) 50%,
    var(--bg-primary) 100%
  );
}

.page-home .quick-actions {
  position: relative;
  margin-top: -40px;
  z-index: 5;
}

.page-home .action-card {
  border: 1px solid var(--border-gold);
  background: linear-gradient(145deg, rgba(26, 30, 28, 0.95), rgba(14, 16, 15, 0.98));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.page-home .action-card:hover {
  border-color: var(--gold);
  box-shadow: 0 24px 56px rgba(201, 169, 98, 0.12);
}

@media (max-width: 1199px) {
  .nav-logo-mark { letter-spacing: 0.16em; }
  .nav-logo-sub { letter-spacing: 0.12em; }
}

@media (max-width: 767px) {
  .hero-brand-line {
    letter-spacing: 0.2em;
    font-size: 0.5rem;
  }
  .hero-title-tag { letter-spacing: 0.2em; }
  .home-gallery-track {
    padding: 0 16px;
  }
  .page-home .quick-actions {
    margin-top: 0;
    padding-top: 24px;
  }
  .hero-video-controls {
    bottom: 88px;
    right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-brand-ring,
  .hero-particle,
  .hero-shimmer,
  .marquee-track {
    animation: none !important;
  }
  .home-showcase-carousel.is-playing .home-showcase-seg.active .home-showcase-seg-fill {
    animation: none !important;
    width: 100% !important;
  }
}

.home-showcase-carousel {
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(201, 169, 98, 0.08) inset;
}

.home-showcase-carousel::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 80px rgba(26, 122, 76, 0.08);
}

.home-gallery-section::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transform: translateX(-50%);
  opacity: 0.5;
}

/* —— Home showcase (split-panel slider — distinct from SpotHopper) —— */
.home-showcase {
  padding: 72px 0 56px;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(26, 122, 76, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(201, 169, 98, 0.08), transparent 50%),
    var(--bg-primary);
}

.home-showcase-head {
  text-align: center;
  margin-bottom: 40px;
}

.home-showcase-head .section-desc {
  max-width: 520px;
  margin: 12px auto 0;
}

.home-showcase-carousel {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  background: var(--bg-secondary);
}

.home-showcase-carousel .carousel-inner,
.home-showcase-carousel .carousel-item {
  min-height: clamp(420px, 48vw, 520px);
}

.home-showcase-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: inherit;
  align-items: stretch;
}

.home-showcase-visual {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.home-showcase-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}

.carousel-item.active .home-showcase-img {
  transform: scale(1);
}

.home-showcase-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 122, 76, 0.35) 0%, transparent 45%, rgba(201, 169, 98, 0.2) 100%);
  pointer-events: none;
}

.home-showcase-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
  background: linear-gradient(160deg, rgba(26, 30, 28, 0.98) 0%, rgba(14, 16, 15, 0.98) 100%);
  border-left: 1px solid var(--border-gold);
  position: relative;
}

.home-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--emerald-light), var(--gold));
}

.home-showcase-step {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(201, 169, 98, 0.15);
  position: absolute;
  top: 16px;
  right: 20px;
}

.home-showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.home-showcase-heading {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: 14px;
  color: var(--text-primary);
}

.home-showcase-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 36ch;
}

.home-showcase-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
}

.home-showcase-segments {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 180px;
}

.home-showcase-seg {
  flex: 1;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.home-showcase-seg-track {
  display: block;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.home-showcase-seg-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--emerald-light), var(--gold));
  border-radius: 4px;
}

.home-showcase-carousel.is-playing .home-showcase-seg.active .home-showcase-seg-fill {
  animation: showcaseSegFill 7s linear forwards;
}

.home-showcase-carousel.is-paused .home-showcase-seg-fill {
  animation-play-state: paused !important;
}

@keyframes showcaseSegFill {
  to { width: 100%; }
}

.home-showcase-actions {
  display: flex;
  gap: 8px;
}

.home-showcase-ctrl {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  background: var(--bg-glass);
  color: var(--text-primary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}

.home-showcase-ctrl:hover,
.home-showcase-ctrl:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  outline: none;
}

.home-showcase-ctrl--toggle .home-ctrl-icon-play { display: none; }
.home-showcase-ctrl--toggle:not(.is-playing) .bi-pause-fill { display: none; }
.home-showcase-ctrl--toggle:not(.is-playing) .home-ctrl-icon-play { display: inline-block; }

@media (max-width: 991px) {
  .home-showcase-panel {
    grid-template-columns: 1fr;
  }
  .home-showcase-visual { min-height: 220px; }
  .home-showcase-card {
    border-left: none;
    border-top: 1px solid var(--border-gold);
  }
  .home-showcase-card::before {
    width: 100%;
    height: 4px;
  }
}

/* —— Home gallery filmstrip —— */
.home-gallery-section {
  padding: 56px 0 80px;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.home-gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 80px,
    rgba(255, 255, 255, 0.015) 80px,
    rgba(255, 255, 255, 0.015) 81px
  );
  pointer-events: none;
}

.home-gallery-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.home-gallery-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.home-gallery-stage {
  position: relative;
}

.home-gallery-viewport {
  overflow: hidden;
  padding: 8px 0 24px;
  margin: 0 -8px;
}

.home-gallery-track {
  display: flex;
  gap: 16px;
  padding: 0 max(20px, calc((100vw - 1320px) / 2 + 20px));
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.home-gallery-slide {
  flex: 0 0 clamp(200px, 22vw, 280px);
  min-width: 0;
  transition: flex-basis 0.4s ease, opacity 0.4s ease;
  opacity: 0.72;
}

.home-gallery-slide--tall {
  flex-basis: clamp(220px, 24vw, 300px);
}

.home-gallery-slide.is-focused {
  opacity: 1;
}

.home-gallery-card {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: perspective(800px) rotateY(0deg);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.3s;
}

.home-gallery-slide--tall .home-gallery-card {
  aspect-ratio: 3/4;
}

.home-gallery-slide:not(.home-gallery-slide--tall) .home-gallery-card {
  aspect-ratio: 1;
}

.home-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.home-gallery-slide.is-focused .home-gallery-card {
  border-color: var(--border-gold);
  box-shadow: 0 24px 56px rgba(201, 169, 98, 0.15);
  transform: perspective(800px) rotateY(-2deg) translateY(-6px);
}

.home-gallery-slide.is-focused .home-gallery-card img {
  transform: scale(1.05);
}

.home-gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 14px 14px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.home-gallery-card:hover .home-gallery-caption,
.home-gallery-slide.is-focused .home-gallery-caption {
  transform: translateY(0);
}

.home-gallery-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  backdrop-filter: blur(16px);
  max-width: 420px;
  margin: 0 auto;
}

.home-gallery-progress {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.home-gallery-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  border-radius: 4px;
  transition: width 0.45s ease;
}

.home-gallery-ctrl {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--text-primary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.home-gallery-ctrl:hover,
.home-gallery-ctrl:focus-visible {
  color: var(--gold);
  background: rgba(201, 169, 98, 0.12);
  outline: none;
}

.home-gallery-ctrl--toggle .home-ctrl-icon-play { display: none; }
.home-gallery-ctrl--toggle:not(.is-playing) .bi-pause-fill { display: none; }
.home-gallery-ctrl--toggle:not(.is-playing) .home-ctrl-icon-play { display: inline-block; }

@media (max-width: 991px) {
  .home-gallery-slide,
  .home-gallery-slide--tall {
    flex: 0 0 clamp(180px, 42vw, 240px);
  }
}

@media (max-width: 575px) {
  .home-gallery-track {
    padding: 0 20px;
  }
  .home-gallery-slide,
  .home-gallery-slide--tall {
    flex: 0 0 78vw;
  }
}
